2008-01-03 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2008-01-03  Jonathan Pobst  <monkey@jpobst.com>
2
3         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
4         Patch from Luke Page that fixes issues with font colors and styles
5         not showing up in a readonly RichTextBox.  Fixes bug #324354.
6
7 2008-01-03  Jonathan Pobst  <monkey@jpobst.com>
8
9         * Line.cs, RichTextBox.cs, TextControl.cs: Another awesome patch
10         from Luke Page.  This one fixes bug #349926.
11
12 2007-12-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13
14         * CurrencyManager.cs: Actually fire the 2.0 ListChanged event when
15         an item in the IBindingList source changes with
16         ListChangedType.ItemAdded. Ignore for now firing the event for other
17         changes, since we want to have tests for those cases as well.
18
19 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
20
21         * TextBoxBase.cs: Don't store a 1x1 Bitmap for every TextBox
22         created.
23
24 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
25
26         * TextBoxTextRenderer.cs: Implement a cache for measuring each
27         character.  This is effective because the typical usage of a
28         TextBox is with a limited amount of fonts and characters, and
29         the current implementation of TextBox measures everything one
30         character at a time.  Another second or two speedup for bug #347238.
31
32 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
33
34         * Control.cs: Rewrite the Font getter to only query the parent's
35         Font property once instead of twice.  Since this operation is
36         recursive, the queries were growing exponentially as the control
37         tree got deeper.  Another second or two speedup for bug #347238.
38
39 2007-12-28  Jonathan Pobst  <monkey@jpobst.com>
40
41         * Control.cs: Avoid setting a parent (and more importantly, updating
42         the zorder of all its children) if the parent is already correct in
43         WmShowWindow.  Decreases the startup time of the test case on bug
44         #347238 from 35 seconds to 11 seconds.
45
46 2007-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
47
48         * X11Dnd.cs: When the dnd operation has started and we are 
49         in the dnd loop, don't dispatch either WM_LBUTTONUP nor WM_RBUTTONUP.
50         This is done to match .Net, which doesn't send those messages after
51         dnd operation was completed/cancelled.
52         Fixes #349922.
53
54 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
55
56         * ToolStrip.cs: Previous change should be != null, not == null.
57         Thanks Gert!
58
59 2007-12-27  Jonathan Pobst  <monkey@jpobst.com>
60
61         * ToolStrip.cs: Guard against an NRE after ItemClicked is called, the
62         user may have moved the mouse off the current item during the event.
63
64 2007-12-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
65
66         * ListView.cs: In ItemControl.ItemsMouseMove, try to avoid
67         calling GetItemAt for every MouseMove event by also taking into
68         account whether any mouse button is pressed (probably dragging); 
69         if so, we can call GetItemAt, and if not, try to not call it 
70         (GetItemAt can be quite expensive when used with a large number of items).
71
72 2007-12-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
73
74         * ListView.cs: Implement -finally- support for dnd, by calling
75         OnItemDrag as needed. Also, remove the dnd TODO, and add myself to the
76         authors list ;-).
77         * ListViewInsertionMark.cs: Implement NearestIndex method, by doing a
78         simple calculation of distances for all the items in the owner
79         listview.
80
81 2007-12-21  Geoff Norton  <gnorton@novell.com>
82
83         * XplatUICarbon.cs:  Ensure that we create WindowMapping handles
84         for windows that are originally created as invisible.  Fixes missing
85         main window in paint-mono.
86
87 2007-12-21  Geoff Norton  <gnorton@novell.com>
88
89         * XplatUICarbon.cs:  Register our D&D handler.  Register our custom
90         subclass handler for com.novell.mwfview subclassing HIView.  Implement
91         Pasteboard and Dnd methods.
92
93 2007-12-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
94
95         * ListBox.cs: When we got focus, give focus to first item if there
96         wasn't any pervious focused item. Also update navigation to depend on
97         SelectedIndex rather than FocusedItem, just as .Net does.
98         Fixes #349174.
99
100 2007-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
101
102         * ListBox.cs: Both FindString and FindStringExact methods must do an
103         case insensitive search, should allow the last valid index to be
104         passed in the overload taking an initial index, and should also
105         continue searching from the top back to the specified index when it
106         reaches the bottom.
107
108 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
109
110         * TextControl.cs: Apply patch from Luke Page that fixes a scrolling
111         redraw issue, and allows RichTextBox to draw colored text even while
112         disabled or readonly.
113
114 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
115
116         * RichTextBox.cs, TextBoxBase.cs: Apply patch from Luke Page that
117         disallows cut/paste in a readonly textbox, adds support for Shift-Insert,
118         and doesn't grey text in a disabled RichTextBox.
119
120 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
121
122         * RichTextBox.cs: Apply patch from Luke Page that adds better support
123         for many RTF commands: quad alignment, separate formatting for blocks
124         inside groups, and ParDef support.  Makes the test case from bug #324589
125         look much better.
126
127 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
128
129         * LineTag.cs: Fix an error in the new Draw method that caused
130         a crash when rendering the document on bug #324589.
131
132 2007-12-19  Jonathan Pobst  <monkey@jpobst.com>
133
134         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs,
135         TextControl.cs: Apply patch from Luke Page that adds support
136         for URL links in RichTextBox.
137         [Fixes enhancement #342516]
138
139 2007-12-18  Everaldo Canuto  <ecanuto@novell.com>
140
141         * MenuItem.cs: When cloning menuitem clone also name and tag properties for
142         2.0 profile. Thanks Ernesto Carrea and Luke Page. Fixes bug #340289.
143
144 2007-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
145
146         * ListBox.cs: When a key gets pressed, try to find a string
147         if the key is a character or a digit.
148         Fixes #343971.
149
150 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
151
152         * TableLayoutPanel.cs: Remove some unused variables.
153
154 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
155
156         * DateTimePicker.cs: Commit patch from Luke Page that ensures
157         we don't end up at an invalid date when we click the up/down
158         spinner to change the month or year.  Fixes bug #348682.
159
160 2007-12-17  Jonathan Pobst  <monkey@jpobst.com>
161
162         * Application.cs: Calling Exit in 2.0 should chain to the
163         Exit (CancelEventArgs) version so it can be cancelled.
164         * Form.cs: Create a flag to allow raising the Closing
165         events to be skipped.  We raise them once in Application.Exit
166         and don't want to raise them again when the Form is actually
167         closed.  [Fixes bug #349073]
168
169 2007-12-16  Jonathan Pobst  <monkey@jpobst.com>
170
171         * ToolStripDropDown.cs: Guard against an NRE when there
172         hasn't been a mainform set in the application context.
173         [Fixes bug #349108]
174
175 2007-12-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
176
177         * ListBox.cs: When SetBoundsCore gets called, besides
178         calling UpdateScrollBars, update the value of
179         last_visible_index, since we could need to show more items
180         than before, and we need to let the paint routines know that.
181         Fixes #344445.
182
183 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
184
185         * ListView.cs: Add DesignerSerializationVisibility attribute to
186         InsertionMark property.
187         * ListViewItem.cs: Add same attribute to Position property.
188
189 2007-12-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
190
191         * ListViewItem.cs: .ctor (SerializationInfo, StreamingContext)
192         is 2.0 only.
193
194 2007-12-14  Jonathan Pobst  <monkey@jpobst.com>
195
196         * ThemeWin32Classic.cs: Don't draw the background on a
197         flat button if there is a background image.
198         [Fixes bug #348649]
199
200 2007-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
201
202         * ListBox.cs: If we remove the item currently selected,
203         remove it not only from SelectedItems, but also
204         resetting selected_index. Moreover, set focused_item to Items.Count - 1 if 
205         the items count decreased and focused_item has bigger value than that.
206
207 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
208
209         * Control.cs: Perform our layout after we resize ourselves
210         if we had to adjust our AutoSize.  Missed commit for bug
211         #346246.
212
213 2007-12-13  Jonathan Pobst  <monkey@jpobst.com>
214
215         * TableLayoutPanel.cs: Override GetPreferredSizeCore so
216         we can provide an implementation of AutoSize.
217         [Fixes bug #346246]
218
219 2007-12-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
220
221         * ListBox.cs: Add the internal overload Sort (bool paint),
222         to indicate whether we actually need a paint or we will
223         call Refresh ourselves. This way we don't request a paint
224         _before_ having an updated and valid layout.
225         Fixes #347233.
226
227 2007-12-12  Andreia Gaita <avidigal@novell.com>
228
229         * XPlatUIX11.cs: Send paint messages when updating a systray icon
230         * NotifyIcon.cs: Invalidate the window before doing a systray change so it is
231         properly invalidated. 
232         Fixes #324237
233
234 2007-12-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
235
236         * ListViewItem.cs: When using a .ctor taking a ListViewGroup,
237         don't simply assign it to our internal group field, but instead 
238         use our Group property, which should do all the neccessary work
239         required to support groups. Fixes an issue reported to me (mail) by a 
240         guy using this new feature.
241
242 2007-12-11  Jonathan Pobst  <monkey@jpobst.com>
243
244         * Control.cs: Use Scale instead of ScaleControl to ensure the
245         whole hierarchy gets scaled.
246         [Fixes bug #347282]
247
248 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
249
250         * DateTimePicker.cs: Don't set the internal MonthCalendar's
251         Parent property.  Doing this causes the control to be hosted by
252         the Form instead of being a popup window.
253         [Fixes bug #347665]
254
255 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
256
257         * ToolStripItemCollection.cs: If we try to insert a ToolStripItem
258         at an index higher than Count, just use Add instead of Insert.
259         [Fixes bug #347669]
260
261 2007-12-10  Jonathan Pobst  <monkey@jpobst.com>
262
263         * ThemeWin32Classic.cs: Don't draw a PictureBox's background in
264         DrawPictureBox, this is handled by Control.PaintBackground.
265         [Fixes bug #347276]
266
267 2007-12-10  Everaldo Canuto  <ecanuto@novell.com>
268
269         * MenuAPI.cs: When process menu keys return true by default only if menu is
270         active. Fixes bug #342892.
271
272 2007-12-09  Andreia Gaita <avidigal@novell.com>
273
274         * Control.cs: check if windows are actually mapped before
275         trying to zorder. Fixes #342509, #346955
276
277 2007-12-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
278
279         * ListView.cs:
280         * ListViewInsertionMark.cs:
281         * ThemeWin32Classic.cs: Implement the drawing side of the
282         new 2.0 ListView.InsertionMark property.
283
284 2007-12-07  Jonathan Pobst  <monkey@jpobst.com>
285
286         * CurrencyManager.cs: Silence some debug spew.
287
288 2007-12-07  Geoff Norton  <gnorton@novell.com>
289         
290         * Hwnd.cs: Refactor GetClippingRectangles to suppose returning the
291         masks for our children as well as siblings to avoid having to query
292         Quartz for this information.
293         * XplatUICarbon.cs: Implement a delegate based system to pass
294         information to System.Drawing.  Implement Async methods.  Remove
295         the hack for the resize thumb and imlpement a transparent Grow Box.
296         Rework the messaging system to proplery create window's and messages,
297         fixes TabControl.
298
299 2007-12-06  Andreia Gaita <avidigal@novell.com>
300
301         * X11Keyboard.cs: Use Xutf8LookupString to support international 
302         characters under alternate codepages. Patch from #340878
303
304 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
305
306         * ListView.cs: When doing layout computations, set position in the
307         ListView instances (we cache the position just as .Net does).
308         * ListViewItem.cs: New internal setter method for Position. Also set
309         position field as also available in 1.1, since we are going to use it
310         now in the common case.
311
312 2007-12-06  Andreia Gaita <avidigal@novell.com>
313
314         * Control.cs: When removing controls, get the actual container
315         to notify about active control changes. Fixes 341314.
316
317 2007-12-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
318
319         * ListViewItem.cs: Forgot to add Font to our serialization stuff.
320
321 2007-12-05  Andreia Gaita <avidigal@novell.com>
322
323         * Control.cs: When updating the zorder, ignore windows that are not
324         mapped. Fixes #342509
325
326 2007-12-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
327
328         * ListViewItem.cs: Actually implement serialization on this class.
329
330 2007-12-05  Gert Driesen  <drieseng@users.sourceforge.net>
331
332         * LinkLabel.cs: Fixed paramname of ArgumentNullException in ctor of
333         LinkCollection. Spaces to tabs, and removed extra tabs.
334
335 2007-12-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
336
337         * XplatUIX11.cs: Make toolwindows' decorations show up without causing any
338           tests to fail (hopefully).
339
340 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
341
342         * ToolStripDropDownMenu.cs: Fill in AffectedBounds when drawing
343         the image margin so custom renderers can correctly place it.
344
345 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
346
347         * StatusStrip.cs: Fill in AffectedBounds when drawing the grip
348         so custom renderers can correctly place it.
349
350 2007-12-03  Jonathan Pobst  <monkey@jpobst.com>
351
352         * Application.cs: Let WM_CHAR messages flow through to controls
353         hosted in Strips.  [Fixes bug #343972]
354
355 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
356
357         * ToolStripManager.cs: Guard against an NRE I ran into.
358
359 2007-12-02  Jonathan Pobst  <monkey@jpobst.com>
360
361         * LinkLabel.cs: Apply patch from George to fix bug 344012.  If
362         a Link is manually added to the Links collection, we need to set
363         its owner, so it can invalidate properly.
364         [Fixes bug #344012]
365
366 2007-11-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
367
368         * ListView.cs: When changing ListViewItem.Position (which calls
369         ListView.ChangeItemLocation), invalidate not only the area
370         corresponding to the main item, but also to the area occupied
371         by the items being moved.
372
373 2007-11-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
374
375         * ListView.cs: When changing the position of a given item,
376         don't use item bounds, but item areas (which includes the item spacing
377         between them). Also, use first/last position if the requested
378         position is outside bounds (as .Net does). Invalidate the previous and
379         new bounds. Finally, in ItemControl.ItemsMouseDown use the actual item
380         in a specific position, instead of directly accessing Items collection
381         (this is done to get the right item - remember an Item can have a
382         different position in the grid than in the Items collection).
383
384 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
385
386         * MessageBox.cs: Calculate text area instead of just top left, this rect 
387         area will be used in DrawString. Fixes bug #343364.
388
389 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
390
391         * MessageBox.cs: Calculate max amount for text area width, it must be 60% of
392         screen width. Partially fixes bug #343364.
393
394 2007-11-23  Everaldo Canuto  <ecanuto@novell.com>
395
396         * NotifyIcon.cs: Remove duplicated code before call realculate and put this
397         code inside recalculate, it makes code more simple.
398
399 2007-11-22  Everaldo Canuto  <ecanuto@novell.com>
400
401         * NotifyIcon.cs: When recalculate icon verify if icon is active to decide
402         between update or add icon. Fixes bug #324344.
403
404 2007-11-21  Andreia Gaita <avidigal@novell.com>
405
406         * XPlatUIX11.cs: Do not treat tool windows as if they have no 
407         window manager, since that stretches the drawing area to include
408         the window decorations, and they get hidden. Reverts r84444 and fixes
409         #335849 and #342790 (mdi and pdn3 regression)
410
411 2007-11-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
412
413         * ListView.cs: When setting focused item, try to give focus to the
414         previous one _only_ if the previous one remains valid. 
415         Fixes #342504.
416
417 2007-11-20  Jonathan Pobst  <monkey@jpobst.com>
418
419         * Application.cs: Revert r89650, as it broke a common case to fix
420         an obscure case.  Fixes bug #342606.
421
422 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
423
424         * ThemeWin32Classic.cs: Fix extra space on end of tooltip.
425
426 2007-11-20  Everaldo Canuto  <ecanuto@novell.com>
427
428         * ThemeWin32Classic.cs: Fix tooltip text align removing horizontal 
429         alignment. [Fixes #324228]
430
431 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
432
433         * ToolStrip.cs: Handle flow layout in GetPreferredSize to fix PDN3.
434         [Fixes bug #342123]
435
436 2007-11-19  Everaldo Canuto  <ecanuto@novell.com>
437
438         * Form.cs: Check for empty Text before assign to cp.Caption in CreateParams
439         it prevent problems when empty captions. [Fixes #342141]
440
441 2007-11-19  Jonathan Pobst  <monkey@jpobst.com>
442
443         * Label.cs: Use Size instead of None.  Fixes bug #342077.
444
445 2007-11-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
446
447         * ListViewItem.cs: Implement 2.0 FindNearestItem method.
448
449 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
450
451         * MenuStrip.cs: Guard against a NRE when a MdiWindowItem is set
452         but there isn't a MdiContainer.
453         [Fixes bug #342358]
454
455 2007-11-17  Jonathan Pobst  <monkey@jpobst.com>
456
457         * TextControl.cs: Don't recalculate document if the recalc_start and
458         recalc_end hasn't changed.
459         [Fixes bug #342505]
460
461 2007-11-17  Gert Driesen  <drieseng@users.sourceforge.net>
462
463         * DataGridViewTextBoxCell.cs: Removed CWL.
464
465 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
466
467         * ListView.cs: Implement 2.0 SearchForVirtualItem event support.
468
469 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
470
471         * TextControl.cs: Missed some code for bug 341534 to trigger a
472         recalculation when the font changes.
473
474 2007-11-16  Andreia Gaita <avidigal@novell.com>
475
476         * Control.cs: When updating the zorder, check if the child to update is
477         the same control that is set to always be on top (i.e., scrollbars), and 
478         just put it on top directly. Fixes BadMatch error on pdn3
479
480 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
481
482         * ListView.cs: Throw the needed exceptions for FindNearestItem.
483
484 2007-11-16  Jonathan Pobst  <monkey@jpobst.com>
485
486         * Control.cs: Don't perform a new layout when a label changes its text,
487         cause label handles its own autosizing.
488         [Fixes bug #342077]
489
490 2007-11-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
491
492         * ListView.cs: Implement 2.0 FindNearestItem methods.
493
494 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
495
496         * ToolStripPanel.cs: Make Join at least add the control to the panel,
497         even if the rest of what Join does isn't supported.  Add some more
498         support for vertical toolbars.
499         * ToolStripPanelRow.cs: Add some more support for vertical toolbars.
500         [Fixes the application breaking parts of bug #341998]
501
502 2007-11-15  Jonathan Pobst <monkey@jpobst.com>
503
504         * ToolStripItem.cs: When determining if we have a check/image margin,
505         we need to look at ShowCheckMargin as well as ShowImageMargin.
506
507 2007-11-15  Geoff Norton  <gnorton@novell.com>
508
509         * XplatUIOSX.cs: Rename to...
510         * XplatUICarbon.cs: and refactor all event handling out to the new event handling
511         system in System.Windows.Forms.CarbonInternal.  Lots of code cleanup as well.
512
513 2007-11-15  Jonathan Pobst  <monkey@jpobst.com>
514
515         * KeysConverter.cs: The default values should be an array of Keys, not
516         strings.  Also, the array has more values for 2.0.
517         [Fixes bug #341851]
518
519 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
520
521         * Application.cs: Change ExecutablePath to use 
522         Process.GetCurrentProcess ().MainModule.FileName instead of Assembly.GetEntryAssembly.
523         [Fixes bug #323552]
524
525 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
526
527         * LineTag.cs: Don't attempt to draw '\r', treat it like it doesn't exist.
528         When measureing CR or LF, use /u000D instead of /u0013. (Hex, not decimal.)
529         * TextControl.cs: Fix a case in GetLineEnding where a \n before a \r would
530         be ignored.  Create a new GetLineEnding that can specify which types of
531         line endings to look for.  On Insert, only create new lines for \n and \r\n.
532         [Fixes bug #324274]
533
534 2007-11-14  Jonathan Pobst  <monkey@jpobst.com>
535
536         * TextBoxBase.cs: As we loop through each line changing the font, tell
537         the document that the line needs to be recalculated.  Fixes bug #341534.
538
539 2007-11-13  Jonathan Pobst  <monkey@jpobst.com>
540         [Another round of refactoring]
541         * Line.cs: Add DeleteCharacters.
542         * LineTag.cs: Add Delete.
543         * TextBoxBase.cs: Update to use new methods.
544         * TextControl.cs: Refactor the Delete* methods.
545
546 2007-11-13  Everaldo Canuto  <ecanuto@novell.com>
547
548         * Win32DnD.cs: Implement Win32 Drop files, thank you Srikanth Madikeri for
549         the patch. [Fixes #324856]
550
551 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
552
553         * ListView.cs:
554         * ListViewItem.cs: Add an initial implementation of
555         2.0 ListViewItem.Position getter.
556
557 2007-11-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
558
559         * ListView.cs: Add a reordered_items_indices array, to allow us
560         to have a different sorting than that of Items (the sorting in Items
561         could not match the actual sorting in screen). This is needed to
562         implement a pair of 2.0 features.
563         * ListViewItem.cs: Add a DisplayIndex property to keep track of the
564         actual position in the ListView grid, since it could have a position
565         different than its Index (position in ListViewItemCollection). 
566
567 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
568
569         * Label.cs: Add StringFormatFlags.LineLimit.  This tells DrawString to
570         not draw partial lines.
571         * LinkLabel.cs: Change FormatFlags setter from = to |= so that the
572         LineLimit flag from the base is preserved.
573         Fixes the windows part of bug #338965.
574
575 2007-11-09  Jonathan Pobst  <monkey@jpobst.com>
576
577         * TextBoxBase.cs: Move handling of the enter key from KEYDOWN to CHAR
578         so that it can be canceled in KeyPress.
579         Fixes bug #340078.
580
581 2007-11-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
582
583         * ListView.cs: In ItemControl, reset mouse-handling related
584         fields even if we dont' have items (we still should reset them when
585         we had items but then called Items.Clear). Partially based in a patch
586         by George Giolfan.
587         Fixes #338399.
588
589 2007-11-08  Gert Driesen  <drieseng@users.sourceforge.net>
590
591         * Application.cs: In ProductVersion first try AssemblyFileVersion
592         before falling back to assembly version. Fixes bug #339787.
593
594 2007-11-08  Andreia Gaita <avidigal@novell.com>
595
596         * HtmlElement.cs: Implement InnerText setter.
597         * WebBrowserBase.cs: Implement Navigated event support.
598         Add flag to track when the browser "document" is ready to be retrieved.
599         * WebBrowser.cs: Implement CanGoBack, CanGoForward, Title, Url.
600         Make sure browser document is ready before retrieving it.
601         Clean up cached objects (document) when moving to a new page through
602         any of the navigation methods.
603         Use the new Mono.WebBrowser.INavigation interface to control navigation.
604         Implement OnNavigated event.
605
606 2007-11-07  Jonathan Pobst  <monkey@jpobst.com>
607
608         * ThemeWin32Classic.cs: Don't draw the background in DrawLabel or
609         DrawLinkLabel, this is handled by OnPaintBackground.
610         Fixes bug #339565, part II.
611
612 2007-11-07  Andreia Gaita <avidigal@novell.com>
613
614         * Control.cs: Revert r88915. Selecting text on a textbox depends on
615         getting a Select call on click, so this call needs to be here for now.
616         Unfixes #325809
617
618 2007-11-07  Geoff Norton  <gnorton@novell.com>
619
620         * OSXStructs.cs: Add the kEventClassApplication constants.
621         * XplatUIOSX.cs: Send a WM_LBUTTONDOWN to the Grab window when the 
622         application is deactivated otherwise Menu overlays linger on top of
623         other application windows.
624
625 2007-11-07  Geoff Norton  <gnorton@novell.com>
626
627         * XplatUIOSX.cs: Dont throw an exception on OverrideCursor as we
628         dont support cursors yet anyways.  This allows Reflector to run.
629
630 2007-11-07  Geoff Norton  <gnorton@novell.com>
631
632         * XplatUIOSX.cs: Implement DragSize.
633
634 2007-11-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
635
636         * ListView.cs: When we receive a WM_LBUTTONDOWN message in
637         ItemControl, request the focus, as .Net does. This is needed after 
638         Control does not request focus anymore when it receives a
639         WM_LBUTTONDOWN.
640
641 2007-11-06  Jonathan Pobst  <monkey@Jpobst.com>
642
643         * Label.cs: Make DrawImage internal so it can be called from Theme code.
644         Remove the DrawImage call from OnPaint.
645         * LinkLabel.cs: Remove the DrawImage call from OnPaint.
646         * ThemeWin32Classic.cs: Call DrawImage after we paint the background,
647         but before we draw the text for DrawLabel and DrawLinkLabel.
648         Fixes bug #339565.
649
650 2007-11-05  Andreia Gaita <avidigal@novell.com>
651
652         * Control.cs: Remove select call on click. Fixes #325809
653
654 2007-11-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
655
656         * ListViewItem.cs: Add 2.0 Position property getter.
657
658 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
659
660         * ListView.cs: Add 2.0 BackgroundImageTiled property.
661         Also, to make it work properly, change item's BackColor and
662         BackgroundImageLayout as needed.
663         * ThemeWin32Classic.cs: Don't fill any background rectangle 
664         in ListView.ItemControl when drawing items; just let the Control
665         base implementation fill it.
666
667 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
668
669         * ListViewGroup.cs: Adda TypeConverter attribute for this class,
670         as well as adding a custom 'dummy' Converter, as .net does.
671
672 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
673
674         * PropertyGridView.cs: When clicking drop-down button,
675         select an index in the listbox only if our standard values collection 
676         has one or more items.
677
678 2007-11-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
679
680         * ListViewItem.cs: Add a DefaultValue attribute to 2.0 IndentCount
681         property.
682
683 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
684
685         * PropertyGrid.cs: In PropertySort, update the toolbar buttons even if
686         the value is not changed. This ensure a pushed button remains in that
687         state when clicked again. When switching the value of PropertySort
688         between Categorized and CategorizedAlphabetical, do not update the
689         grid items and do not fire a PropertyChangedEvent. When clicking the
690         sorting buttons, do not modify the PropertySort value when switching
691         between Categorized and CategorizedAlphabetical but only update the
692         button state.
693
694 2007-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
695
696         * Label.cs: Make AutoEllipsis internal on 1.0 profile. Code
697         formatting.
698         * PropertyGrid.cs: Also put Categorized button in pushed state when
699         PropertySort is CategorizedAlphabetical. Set AutoEllipsis to true
700         for help description label.
701
702 2007-11-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
703
704         * ListView.cs: When calculating the biggest item for a given column,
705         take into account 2.0 LIstViewItem.IndentCount, since it directly affects
706         the item's width.
707
708 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
709
710         * PropertyGrid.cs: Fixed default value for PropertySort. Allow invalid
711         value for PropertySort on 1.0 profile. PropertySortChanged event
712         should only be fired on 2.0 profile. Fixed NullReferenceException
713         in UpdateSortLayout when PropertyGrid contains no items.
714
715 2007-11-02  Jonathan Pobst  <monkey@jpobst.com>
716
717         * MessageBox.cs: Patch from George to implement MessageBoxDefaultButton.
718         [Fixes bug #338554]
719
720 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
721
722         * ListViewItem.cs: Implement 2.0 IndentCount property.
723
724 2007-11-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
725
726         * X11Dnd.cs: When sending status in a dnd operation, compare current
727         effect with the 'allowed' field instead of 'drag_data.Allowed', since
728         the later is only created when a Winforms application is both the
729         source and the target, but not when we are the target only.
730         Fixes part of #324251.
731
732 2007-11-01  Geoff Norton  <gnorton@novell.com>
733
734         * XplatUI*.cs: Add GetPreviousWindow utility method to return windows in
735         order of Z-Order.
736         * Hwnd.cs: Add initial implementation of GetClippingRectangles to clip sibling 
737         children out of the drawing view on mac.
738         * XplatUIOSX.cs: Code cleanup.  Handle more window grab cases.  Fix SetParent
739         to handle the orphan and invisible case (1/2 fixes TabStrip drawing in FormsTest)
740         
741 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
742
743         * ToolStrip.cs: Don't process MouseUp for a ToolStripControlHost, clicking
744         on the non-hosted-control part of it shouldn't do anything.
745         Fixes part of bug #327498.
746
747 2007-11-01  Andreia Gaita <avidigal@novell.com>
748
749         * WebBrowserBase.cs: revert previous change, resize can be called anytime
750
751 2007-11-01  Jonathan Pobst  <monkey@jpobst.com>
752
753         * Application.cs: When a toolstrip has the keyboard input loop, let messages
754         it does not use flow through to controls that are hosted in menus.
755         Same with mouse clicks.
756         * Form.cs: Don't close all menus on click if the click is on a
757         control hosted in a menu.
758         Fixes part of bug #327498, and part of bug #325969.
759
760 2007-10-31  Andreia Gaita <avidigal@novell.com>
761
762         * WebBrowserBase.cs: Only call resize on gluezilla when it is active
763
764 2007-10-31  Jonathan Pobst  <monkey@jpobst.com>
765
766         * TextBoxBase.cs: Use int.MaxValue for MaxLength instead of magic number.
767         Addresses an issue raised in bug #336218.
768
769 2007-10-30  Jonathan Pobst  <monkey@jpobst.com>
770
771         * Form.cs: Patch from George that moves the conversion of ClientSize->Size
772         for PreferredSize from OnLayout to PreferredSize.  Fixes bug #325242.
773
774 2007-10-30  Andreia Gaita <avidigal@novell.com>
775
776         * ContainerControl.cs: Check if the active control is a
777         child of a removed control and update active_control accordingly.
778         Fixes #329718
779
780 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
781
782         * DateTimePicker.cs: Throw ArgEx if the Value is set outside the MinDate
783         or the MaxDate.  Fixed bug #337693.
784
785 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
786
787         * XplatUIWin32.cs: Always call SetWindowPos with SWP_FRAMECHANGED flag
788         after calling SetWindowLong for a form, to force an immediate NC refresh.
789         Fixes first part of bug #325150.
790
791 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
792
793         * ComboBox.cs: Don't try to resize the listbox when we are DropDownStyle
794         simple.  Fixes the last part of bug #322668.
795
796 2007-10-29  Jonathan Pobst  <monkey@jpobst.com>
797
798         * MessageBox.cs: If the owner is TopMost, then the MessageBox form
799         needs to be TopMost as well, or else the MessageBox is under the form.
800         Patch by George fixes bug #325300.
801
802 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
803
804         * X11Dnd.cs: When starting a new drag operation, reset the static
805         'dropped' field to false (previously the implementation didn't reset
806         it and got confused after the first drag).
807         Fixes #325071.
808
809 2007-10-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
810
811         * PropertyGrid.cs: When PropertySort changes, re-organize the grid
812         items instead of re-creating them all. For this purpose we now cache
813         both CategoryGridEntry items and the GridEntries for the main object's
814         properties.
815         * GridItem.cs: Make SetParent method abstract.
816         * GridEntry.cs: Override the SetParent method (already there, but now
817         we override it).
818         Fixes #324866.
819
820 2007-10-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
821
822         * PropertyGridView.cs: Set the plus/minus bounds of a grid item
823         depending on its depth (as .Net does). Update the needed values in
824         MouseDown handler. Also draw the plus/minus rect after the label,
825         so we don't draw on top of it.
826
827 2007-10-24  Everaldo Canuto  <ecanuto@novell.com>
828
829         * MenuAPI.cs: Return true as default in ProcessKeys to prevent keys to be
830         processed by forms or controls when menu is active. [Fixes #333548]
831
832 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
833
834         * ToolStripItem.cs: Don't focus a ToolStripControlHost on Select of the
835         parent doesn't have focus.  This was causing ToolStripTextBoxes to take
836         focus on mouse over.
837
838 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
839
840         * TextControl.cs: Code cleaning, simplifying.
841
842 2007-10-24  Geoff Norton  <gnorton@novell.com>
843
844         * XplatUIOSX.cs: Route mouse events to the grab hwnd on mouse down as well.
845         * XplatUIStructs.cs: Fix the ToString method of POINT and MSG.
846
847 2007-10-24  Jonathan Pobst  <monkey@jpobst.com>
848
849         * TextBoxBase.cs: If the user sets maxlength to 0, it should mean
850         the cap is maxvalue, not actually 0.  [Fixes bug #336218]
851
852 2007-10-24  Andreia Gaita <avidigal@novell.com>
853
854         * SendKeys.cs: apply jpobst's patch to bug #332409
855
856 2007-10-23  Andreia Gaita <avidigal@novell.com>
857
858         * TextBoxTextRenderer.cs: Lower bounds max size to Int16.MaxValue, the 
859         Windows 2000 gdi DrawText call doesn't draw if it's higher than that
860         for some reason
861
862 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
863
864         * PropertyGridView.cs: If a property has an UIEditor available,
865         make the drop-down/editor button available only if the property
866         is _not_ read only.
867
868 2007-10-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
869
870         * PropertyGridView.cs: Don't make the grid item textbox 
871         editable when a drop-down control is available, but 
872         CanConvertFrom (typeof (string)) is false or GetStandardValuesExclusive () is
873         true. The same bur the color of the grid item value's label.
874
875 2007-10-22  Geoff Norton  <gnorton@novell.com>
876
877         * OSXStructs.cs: Add the needed constants for keyboard modifiers.
878         * OSXKeyboard.cs: Initial support for keyboard and limited modifiers.
879         * XplatUIOSX.cs: New reversible frame support.  Wire in the new keyboard
880         driver.  Padd the bottom of all real windows so the resize thumb doesn't
881         obscure scroll/status bars.
882
883 2007-10-22  Jonathan Pobst  <monkey@jpobst.com>
884
885         * WindowsFormsSection.cs: Implement.
886
887 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
888
889         * MdiClient.cs: Maximize new active mdi child when a maximized child is 
890         closed see #325434 patch.
891
892 2007-10-22  Everaldo Canuto  <ecanuto@novell.com>
893
894         * MdiClient.cs: Fix remaining issues from layout vertical and horizontal,
895         see #325434 patch.
896
897 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
898
899         * PropertyGridView.cs: When showing the textbox for a grid item,
900         have two local variables to store the read-only and non-editable
901         status of a grid item (we were previously using just one variable
902         to do this, when actually they are slightly different).
903         Fixes part of #325023.
904
905 2007-10-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
906
907         * PropertyGridView.cs: When showing a drop-down list, try to get the
908         values using TypeConverter.ConvertTo (to convert to a string). Fixes
909         part of #325023.
910
911 2007-10-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
912
913         * PropertyGrid.cs: When updating a property and populating sub grid
914         items, remove the previous ones, and invalidate the specific area.
915         * PropertyGridView.cs: A new InvalidateBelowGridItem to invalidate the
916         area behind a grid item.
917         * GridItemCollection.cs: Add an internal Clear method, to allow us to
918         clean the items if needed (specially for controls implementing 
919         ICustomTypeDescriptor and returning a variable number of properties).
920         Fixes #324865.
921
922 2007-10-19  Jonathan Pobst  <monkey@jpobst.com>
923
924         * TextControl.cs: Clean up and document the Insert function.
925
926 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
927
928         * TextControl.cs: Make sure we know our start point for updating the view
929         in ReplaceSelection.  Fixes an issue where pasting multiline text wouldn't
930         update the view.
931
932 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
933
934         * ListView: Couple of corcompare fixes.
935
936 2007-10-17  Geoff Norton  <gnorton@novell.com>
937
938         * XplatUIOSX.cs: Implement support for window icons in the dock.  Set
939         the title caption of real window.
940
941 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
942
943         * ErrorProvider.cs: Add the error provider's internal window to a 
944         containercontrol when the parent changes.  [Fixes bug #329714]
945
946 2007-10-17  Geoff Norton  <gnorton@novell.com>
947
948         * XplatUIOSX.cs: Implement ScrollWindow.  Properly create TOOLWINDOWs.
949         When we make a new window; restore the old active window - fixes dialogs.
950
951 2007-10-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
952
953         * PropertyGridView.cs: Look for RefreshPropertiesAttribute
954         when modifying a property, and if found then invalidate as
955         requested.
956         Fixes part of #324865.
957
958 2007-10-17  Geoff Norton  <gnorton@novell.com>
959
960         * XplatUIOSX.cs: Re-enable the native driver on the Mac.  This is still
961         highly experimental.  Fixed coordinate translation.  Fixed window locations.
962         Initial support for clipping. Implemented NC areas and menus.  Support for
963         launching from command line from Will Johansson (wjohansson@atacomm.com).
964         * OSXStructs.cs: Add ProcessSerialNumer (Patch from Will Johansson
965         wjohansson@atacomm.com)
966         * Hwnd.cs: Add some internal structures for tracking Mac cursors.
967         Hwnds now track the existence of all of their children for Mac clipping.
968     * XplatUI.cs: Re-enabled the native driver on the Mac.
969
970 2007-10-17  Jonathan Pobst  <monkey@jpobst.com>
971
972         * Line.cs: Move the InsertString function to here.
973         * TextControl.cs: Cleanup some duplicate code, move some InsertString
974         functionality to Line.
975
976 2007-10-17  Geoff Norton  <gnorton@novell.com>
977
978         * ComboBox.cs: Destroy the popup after hiding it.  Fixes #322582
979
980 2007-10-16  Gert Driesen  <drieseng@users.sourceforge.net>
981
982         * ButtonBase.cs: Fixed IsDefault to use assigned value instead of
983         always setting value to true.
984         * Form.cs: When changing AcceptButton, notify new and original button.
985
986 2007-10-16  Jonathan Pobst  <monkey@jpobst.com>
987
988         * Form.cs: Guard against an NRE when the user sets the AcceptButton to
989         a custom control that implements IButtonControl instead of an actual
990         button.  [Fixes bug #334244]
991
992 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
993
994         * Form.cs: Change SelectActiveControl to internal, we need to call it in
995         MdiWindowManager.
996         
997         * MdiWindowManager.cs: In RaiseActivated call SelectActiveControl to select
998         active control when activate a new mdi window.
999         
1000         [Fixes bug #330495]
1001
1002 2007-10-15  Everaldo Canuto  <ecanuto@novell.com>
1003
1004         * ComboBox.cs: Dont implicit add listbox_ctrl on OnHandleCreated because it
1005         is already added.
1006         [Fixes bug #333617]
1007
1008 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
1009
1010         * TextControl.cs: When SuspendRecalc is first called, reset the recalc_start
1011         to MaxValue and recalc_end to MinValue.  Currently, recalc_start is always 1,
1012         so we always recalculate the whole document instead of just the new part.
1013         [Fixes bug #325082]
1014
1015 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
1016
1017         * LineTag.cs: Fix a case where the GetCharIndex would not return 0
1018         when the mouse was to the left of the first character in the line.
1019
1020 2007-10-15  Jonathan Pobst  <monkey@jpobst.com>
1021
1022         * TextBox.cs, TextBoxBase.cs: When setting the document's password
1023         character, use the property instead of the variable so that the
1024         UseSystemPasswordChar property is taken into account.
1025         [Fixes bug #333748]
1026
1027 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1028
1029         * FolderBrowserDialog.cs: When a node is right clicked and the "New
1030         folder" contex menu appears, actually add the new folder to it, even
1031         if the node is not currently selected. Still use SelectedNode in case 
1032         there wasn't found a node under the pointer.
1033         Fixes #325452.
1034
1035 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1036
1037         * ListViewItem.cs: When retrieving the focused state, the index check
1038         should be done only when ListView is in virtualmode, as it is an
1039         expensive check for normal mode.
1040
1041 2007-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1042
1043         * ListViewItem.cs: Make the focus state information be stored
1044         in the ListView, not in the items. This is done to match the MS
1045         behaviour for items that are not yet part of a ListView control;
1046         besides that, since just one item can be focused at the same time,
1047         we save a little space in our items.
1048         Fixes part of #331643.
1049
1050 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1051
1052         * ComboBox.cs: When focus is lost, deselect the text. When setting
1053         text of control, select all text. Do not hide selection when control
1054         does not have focus. Fixes bug #333663.
1055
1056 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1057
1058         * TextBoxBase.cs: On 2.0 profile, throw ArgumentOutOFRangeException
1059         instead of ArgumentException when SelectionLength is set to negative
1060         value. Added same check to SelectionStart. Code formatting.
1061
1062 2007-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1063
1064         * TextBoxBase.cs: Invalidate selection before changing SelectionLength
1065         or SelectionStart. Code formatting.
1066
1067 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1068
1069         * TreeView.cs: drag_begin_x and drag_begin_y are now set to -1,
1070         indicating that there was not a previous drag-and-drop operation going
1071         on.
1072         Fixes part of #325071.
1073
1074 2007-10-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1075
1076         * X11Dnd.cs: When DragEventArgs.Effect is set to a value not part of
1077         AllowedEffect, don't let the drop operation happen. 
1078         Fixes #32580.
1079
1080 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1081
1082         * TextRenderer.cs: Use GDI on Windows in both the 1.1 and 2.0 profiles.
1083
1084 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1085
1086         * Line.cs, LineTag.cs: Guard against an exception when Document.Clear
1087         is called.
1088
1089 2007-10-12  Jonathan Pobst  <monkey@jpobst.com>
1090
1091         * Line.cs: Add a method that finds the tag that contains an x-coord.
1092         * LineTag.cs: Add a method that finds the character at an x-coord using
1093         a binary search, the old way was a linear search.
1094         * TextControl.cs: Change FindCursor to use the above new methods.
1095
1096 2007-10-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1097
1098         * DragEventArgs.cs: Allow Effect to have a non allowed value (a
1099         value different than AllowedEffect). This should be possible to
1100         indicate that dragging is not possible in some control/area.
1101
1102 2007-10-11  Jonathan Pobst  <monkey@jpobst.com>
1103
1104         * LineTag.cs: Encapsulate all variables with properties.  Calculate ascent/
1105         descent internally when font changes instead of outside code being responsible
1106         for setting it.
1107         * Line.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Use Tag properties
1108         instead of accessing internal variables.
1109
1110 2007-10-09  Everaldo Canuto  <ecanuto@novell.com>
1111
1112         * MdiClient.cs: Always call ArrangeIconicWindows before any arrangement and
1113         remove special treatment for ArrangeIcons since it is already arranged.
1114
1115 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1116
1117         * TextBoxTextRenderer.cs: Draw takes a Color now instead of a Brush, as
1118         the Win32 backend uses Color.
1119         * Line.cs, LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs:
1120         Refactor to store a Color instead of a Brush for Color.
1121
1122 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1123
1124         * Line.cs, LineTag.cs: Override GetHashCode to make a compiler warning go
1125         away.  I didn't realize I needed this when I refactored these earlier.
1126
1127 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1128
1129         * LineTag.cs, RichTextBox.cs, TextBoxBase.cs, TextControl.cs: Refactor to
1130         store a Color structure and use the ResPool for back color instead of
1131         holding onto brushes.
1132
1133 2007-10-09  Jonathan Pobst  <monkey@jpobst.com>
1134
1135         * TextControl.cs: Fix how we calculate the end of the tag we are drawing.
1136         [Fixes bug #325592]
1137
1138 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1139
1140         * MonthCalendar.cs: When ShowWeekNumbers is changed, force the calendar
1141         to recalculate its size.  Fixes a part of bug #331052.
1142
1143 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1144
1145         * NotifyIcon.cs: Set the correct mouse button when handling right mouse
1146         button.  Fixes a part of bug #331052.
1147
1148 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1149
1150         * Form.cs: Trim NewLine before setting XPlatUI.SetText, and when setting
1151         the CreateParams.
1152         * ThemeWin32Classic.cs: Trim NewLine before drawing MDI children window
1153         decorations.
1154         [Fixes bug #330986]
1155
1156 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1157
1158         * TextBoxTextRenderer.cs: Don't make this a static class, as static
1159         doesn't exist in 1.1.  (Thanks jb!)
1160
1161 2007-10-08  Jonathan Pobst  <monkey@jpobst.com>
1162
1163         * TextBoxTextRenderer.cs: Abstract text measuring and drawing to this
1164         class to allow us to use different backends on different platforms.
1165         Linux uses the current [Draw|Measure]String backend.  Windows uses
1166         the TextRenderer.[Draw|Measure]Text backend, which uses GDI instead
1167         of GDI+.  This leads to better looking text and more accurate measurements
1168         on Windows, fixing many of the reported issues.
1169         * Line.cs, LineTag.cs: Update to use TextBoxTextRenderer.
1170
1171 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1172
1173         * FolderBrowserDialog.cs: When running on Windows,
1174         try to detect paths such "C:" and add Path.DirectorySeparatorChar,
1175         since we must match both "C:" and "C:\" forms. A little hackish, but
1176         works.
1177         Fixes #325247.
1178
1179 2007-10-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1180
1181         * ListView.cs: When calling EndEdit (after editing an item),
1182         create a new instance of LabelEditEventArgs to keep clean the fields
1183         in case we get a new call to BeginEdit; also do Application.DoEvents
1184         to have focus in synch. This is a fix similar to TreeView's #325244.
1185
1186 2007-10-07  Andreia Gaita <avidigal@novell.com>
1187
1188         * HtmlDocument.cs, HtmlElement.cs, WebBrowser.cs: Added dom support
1189         * WebBrowserBase.cs: Added dialog support, calling the
1190           WebBrowserDialogs classes for each specific dialog type.
1191
1192 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1193
1194         * ListView.cs: When the last item is focused and is removed,
1195         move the focus to the previous item (in Items order). This is what MS
1196         does.
1197         Fixes #330415.
1198
1199 2007-10-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1200
1201         * ListView.cs: In ListViewItemCollection, make Remove call RemoveAt,
1202         instead of the opposite (RemoveAt call Remove). This is a better
1203         approach since we don't need to to a pair of traversals when using
1204         RemoveAt.
1205
1206 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1207
1208         * TreeView.cs: When Keys.Left is pressed, before trying to Collapse
1209         check that the node actually has nodes, and if not, move to the
1210         parent node instead. 
1211         Fixes #325265.
1212
1213 2006-10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1214
1215         * TreeView.cs: Move the previous change to the general case (to
1216         call Application.DoEvents in cases where the method was called by
1217         different places).
1218
1219 2007_10-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1220
1221         * TreeView.cs: When calling EndEdit and we need to hide the textbox,
1222         call Application.DoEvents. This is neccessary when we get a call to
1223         BeginEdit from an AfterLabelEdit handler, because the focus always
1224         goes to the TreeView, even if we try to give it to our
1225         LabelEditTextBox. The call do Application.DoEvents seems to
1226         synchronize the focus, basically.
1227         Fixes #325244.
1228
1229 2007-10-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1230
1231         * TreeView.cs: When AfterLabelEdit event is fired, TreeNode.IsEditing
1232         should be false. This also removes some nasty recursive paths. Fixes
1233         part of #325244.
1234
1235 2007-10-04  Everaldo Canuto  <ecanuto@novell.com>
1236
1237         * MdiClient.cs: When cascade (layout) mdi window that is maximized, set the
1238         state to normal. Also resize window when cascading. Fixes #325433. 
1239
1240 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1241
1242         * RichTextBox.cs: When SelectionColor is set to Color.Empty, use
1243         DefaultForeColor, as drawing empty colored lines isn't very useful.
1244         [Fixes the not drawn lines part of bug #324358]
1245
1246 2007-10-04  Jonathan Pobst  <monkey@jpobst.com>
1247
1248         * TextControl.cs: Move Line and LineTag classes into separate files to
1249         make things easier to find.
1250         * Line.cs, LineTag.cs: Bring coding standards up to Mono's guidelines.
1251         * RichTextBox.cs: Capitalize LineTag.Length property access.
1252         - This is purely an organizational/formatting change, no logic changed. -
1253
1254 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1255
1256         * ThemeWin32Classic.cs: Do not show focus rectangle in radio buttons when
1257         text is empty.
1258
1259 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1260
1261         * ThemeWin32Classic.cs: Do not show focus rectangle in checkboxes when
1262         text is empty.
1263
1264 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1265
1266         * ComboBox.cs: On contructor use backgound_color instead of BackColor to
1267         prevent calling of OnBackColorChanged. Fixes #325321.
1268
1269 2007-10-03  Everaldo Canuto  <ecanuto@novell.com>
1270
1271         * TextBox.cs: When check enabled uses Enabled property instead of is_enabled
1272         because control can be disabled because owner is disabled.
1273
1274 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1275
1276         * ComboBox.cs: For the 1.1 profile, the default SelectedText is
1277         string.Empty, test failed from previous change.
1278
1279 2007-10-02  Jonathan Pobst  <monkey@jpobst.com>
1280
1281         * TextBoxBase.cs: For the 1.1 profile, the default SelectedText
1282         is null, not String.Empty.  See bug #323038.
1283
1284 2007-10-01  Jonathan Pobst  <monkey@jpobst.com>
1285
1286         * TextControl.cs: Change the margins to match MS a little better.
1287         Still not perfect for X11 due to some DrawString differences, but
1288         is still an improvement over the old stuff.
1289         Partially fixes #324467.
1290
1291 2007-09-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1292
1293         * FolderBrowserDialog.cs: When using MyComputer as 
1294         RootFolder, let absolute paths be considered as valid ones. Also, use
1295         Path.DirectorySeparatorChar instead of Path.AltDirectorySeparatorChar,
1296         for Windows compatibility.
1297         Partially fixes #325247.
1298
1299 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1300
1301         * FolderBrowserDialog.cs: Fix the recursive FindPathInNodes method.
1302         Also remove the stack.Count > 0 check in FBTreeView.SetSelectedNode
1303         method, since it causes the dialog to not select folders directly
1304         under the root path (when setting SelectedPath property).
1305
1306 2007-09-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1307
1308         * TreeNode.cs: When calling Expand/Collapse and need to call 
1309         ExpandBelow/CollapseBelow respectively, take into account
1310         partially visible nodes (previously Expanding/Collapsing
1311         a partially visible node in the bottom was not updating its +- sign).
1312
1313 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1314
1315         * TreeView.cs: When calling Expand on a TreeNode, and we need to
1316         expand nodes below (ExpandBelow), scroll the entire Viewport
1317         area if the node is above it and not visible (instead of scrolling
1318         the area from node's Bottom, which applies only when the node is
1319         visible).
1320         Fixes #325266.
1321
1322 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1323
1324         * TreeView.cs: When calling ExpandAll, set SelectedNode to the top
1325         node in the bottom area (as .Net does). This is done to preserve the
1326         scroll position when ExpandAll is called before handle is created for
1327         the 1.1 profile (bottom area, as opposed to top area in 2.0).
1328         Fixes #324103.
1329
1330 2007-09-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1331
1332         * TreeView.cs: When calling ExpandAll, don't move the scroll to the 
1333         bottom area if we are in fact not using the vertical scroll bar.
1334         Fixes #324824.
1335
1336 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1337
1338         * Control.cs: Comment out a double buffering optimization that doesn't
1339         take into account invalidates created in OnPaint, causing the control
1340         to never be redrawn.  It would take quite a bit of work to work around
1341         this, but I left it commented with an explanation for later possible
1342         optimization.
1343         [Fixes bug #328681]
1344
1345 2007-09-27  Jonathan Pobst  <monkey@jpobst.com>
1346
1347         * Control.cs: Ask parent to perform a layout if control is AutoSize and
1348         the text changes.
1349         * RadioButton.cs: Implement GetPreferredSizeCore.
1350         [Fixes bug #328672]
1351
1352 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1353
1354         * RichTextBox.cs, TextBoxBase.cs, WindowsFormsSynchronizationContext.cs:
1355         corcompare stuffs.
1356
1357 2007-09-26  Jonathan Pobst  <monkey@jpobst.com>
1358
1359         * Application.cs: Move the sync context stuff to Run instead of RunLoop
1360         so that it doesn't get uninstalled on modal forms.
1361         * Control.cs: Install a sync context when a control is created.
1362         * WindowsFormsSyncronizationContext.cs: Create a private static control
1363         to invoke on.  This is easier than trying to find a created control we
1364         can use.
1365         [Fixes bug #327608]
1366
1367 2007-09-25  Jonathan Pobst  <monkey@jpobst.com>
1368
1369         * Application.cs: Install a WindowsFormsSynchronizationContext in the
1370         run loop, and uninstall it when done.
1371         * WindowsFormsSynchronizationContext.cs: Implement.
1372         [Fixes the common case in bug #327608]
1373
1374 2007-09-23  Gert Driesen  <drieseng@users.sourceforge.net>
1375
1376         * DataGridViewCellCollection.cs: Added argument checks for indexers.
1377         Use case-insensitive lookup of column name in indexer. Code
1378         formatting.
1379
1380 2007-09-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1381
1382         * TreeNode.cs: When collapsing or expanding a node, check whether its
1383         change will affect the visible area (we were previously doing a
1384         IsVisible check, but that check is not enough since children nodes
1385         could be still visible). Fixes part of #325266.
1386
1387 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1388
1389         * TreeView.cs: Always select the first node when the TreeView gets
1390         focus if there is no currently selected node.
1391         [Fixes bug #324279]
1392
1393 2007-09-21  Jonathan Pobst  <monkey@jpobst.com>
1394
1395         * TreeView.cs: Do not raise BeforeSelect or AfterSelect when the
1396         node being selected is null.
1397         [Patch from Yves Bastide fixes bug #326858]
1398
1399 2007-09-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1400
1401         * TreeNode.cs: Add an internal ArePreviousNodesExpanded, to know
1402         whether all the parent nodes are expanded.
1403         * TreeNodeCollection.cs: When adding a new node an calling SetupNode,
1404         call RecalculateVisibleOrder if all previous nodes are expanded.
1405         Before that we were doing a IsVisible check, but sometimes the node
1406         is not in the visible area, but _should_already be ready, because of
1407         all previous nodes are expanded. Fixes #325259.
1408
1409 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1410
1411         * ToolStripSplitButton.cs: Call the ButtonClick event if the button
1412         portion of the item is clicked.
1413
1414 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1415
1416         * TextControl.cs: Do not tell the system to move the cursor if the
1417         textbox isn't focused.  Fixes part of bug #322668.
1418
1419 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1420
1421         * ComboBox.cs: When there are no items, do not show the dropdown if
1422         the down arrow is clicked.  Fixes part of bug #322668.
1423
1424 2007-09-20  Jonathan Pobst  <monkey@jpobst.com>
1425
1426         * ToolStripComboBox.cs: Manually set the size of this control in the
1427         constructor, as it doesn't seem to be the same as DefaultSize.
1428         Fixes a failing monobuild test.
1429
1430 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1431
1432         * DateTimePicker.cs: If the user sets MinDate to DateTime.MinValue,
1433         change it to DateTimePicker.MinDateTime.  [Fixes bug #326609]
1434
1435 2007-09-19  Jonathan Pobst  <monkey@jpobst.com>
1436
1437         * Theme.cs: FileDialogs should be using DesktopDirectory instead of
1438         Desktop.  This lets it work for people who have moved their desktops
1439         from the default location on windows.  For people who have not, both
1440         values are the same, so it shouldn't hurt anything.  [Fixes bug #325270]
1441
1442 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1443
1444         * ToolStripControlHostTest.cs: DefaultSize is based off hosted control,
1445         but when the base constructor sets this, the control is null.  Set it
1446         again in the constructor.  Fixes a failing monobuild test.
1447
1448 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1449
1450         * ToolStripDropDownItem.cs: Make sure Click and DropDownOpened events
1451         get called.
1452         * ToolStripSplitButton.cs: Make sure MouseDown and MouseUp events get
1453         called.
1454
1455 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1456
1457         * ToolStrip.cs: Don't show tooltips for ToolStripTextBoxes, they
1458         will handle it themselves.
1459         * ToolStripItem.cs: When deciding what the text of a tooltip should
1460         be, use the Text property instead of the text field.
1461         * ToolStripTextBox.cs: Handle tooltips.
1462         [Fixes bugs #325417 and #325973]
1463
1464 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1465
1466         * ToolStripDropDownButton.cs: Only drop down overflow menu with a
1467         left click.  Fixes the easy part of bug #325969.
1468
1469 2007-09-18  Jonathan Pobst  <monkey@jpobst.com>
1470
1471         * ToolStrip.cs: Set AutoSizeMode back to GrowAndShrink to refix
1472         bug #325406, but set a minimum for StatusStrip to 22 to keep
1473         bug #325390 fixed.  I think this minimum would have been figured
1474         up automatically if the grip was actually a ToolStripItem, but it
1475         currently is not.
1476
1477 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1478
1479         * ListView.cs: max_label_wrapping is now 30 pixels instead of 38,
1480         as this is apparently the actual value used by .Net. Also apply
1481         ItemPadding in Details view only, and decrease the general width padding,
1482         to have only the needed. This should fix #324340 in Windows too.
1483
1484 2007-09-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1485
1486         * ListViewItem.cs: Don't Invalidate item if parent is inside
1487         a BeginUpdate/EndUpdate block. This prevents to have differences
1488         between the ListView and items state, as well as avoid some exceptions
1489         there.
1490         * ListView.cs: Make 'updating' field internal.
1491
1492 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1493
1494         * ToolStripControlHost.cs: Realign control when ControlAlign changes.
1495         * ToolStripItem.cs: Use ImageScalingSize when calculating preferred
1496         size if appropriate.
1497         Fixes reopened bug #325414.
1498
1499 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1500
1501         * ToolStrip.cs: Set AutoSizeMode back to GrowOnly.
1502         * ToolStripItem.cs: Invalidate before and after our new autosize when
1503         text changes.
1504         Fixes reopened bug #325390.
1505
1506 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1507
1508         * ToolStripMenuItem.cs: Make sure we invalidate when clicked so
1509         mnemonics can be drawn or undrawn correctly.  Fixes reopened bug 
1510         #325044.
1511
1512 2007-09-17  Jonathan Pobst  <monkey@jpobst.com>
1513
1514         * Control.cs: Do WM_CONTEXTMENU before OnMouseUp.  [Fixes bug #325535]
1515
1516 2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1517
1518         * ColumnHeader.cs: When drawing column text, use EllipsisCharacter
1519         instead of EllipsisWord (by equistango at gmail.com). Fixes part of
1520         #82734.
1521
1522 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1523
1524         * ToolStrip.cs: Make ToolStrip selectable when TabStop = true.  Find an
1525         item to select when the ToolStrip is selected.
1526         * ToolStripControlHost: Realign the control when the bounds or visibility
1527         change.
1528         * ToolStripItem.cs: When selected, if it's a control host, focus the control.
1529         * ToolStripOverflow.cs: When laying out the drop down, respect the item's
1530         preferred height.
1531         * ToolStripTextBox.cs: OnPaintInternal should call base.OnPaintInternal, not
1532         base.OnPaint.  Was causing text not to be drawn.
1533
1534 2007-09-14  Jonathan Pobst  <monkey@jpobst.com>
1535
1536         * SplitterPanel.cs: Ignore attempts to set AutoSizeMode.
1537
1538 2007-09-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1539
1540         * TreeView.cs: When creating the label edit text box,
1541         set is initially to Visible = false. This is done to
1542         prevent a confusion in the layout which makes it to lose
1543         focus when shown the first time. Fixes part of #82592.
1544
1545 2007-09-13 Andreia Gaita <avidigal@novell.com>
1546
1547         * WebBrowserBase.cs: add FocusOption enumeration for finer focus control
1548
1549 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * ToolStrip.cs: Take Margin into account when calculating preferred
1552         size.  Also, allow preferred size to get smaller than the explicit
1553         size.
1554         * ToolStripTextBox.cs: Don't change the GetPreferredSize implementation.
1555         First step towards fixing bug #82747.
1556
1557 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1558
1559         * TreeView.cs: Applied patch from latency@gmx.de to not paint the
1560         full row select background over the plus/minus glyph.  Also, turn
1561         off the focus rectangle for full row select since MS doesn't seem
1562         to ever paint it.  [Fixes bug #81839]
1563
1564 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1565
1566         * ToolStrip.cs: Don't FocusInternal if there is no selected item.
1567         This was causing keyboard opened dropdowns to lose focus.
1568         [Fixes bug #82803]
1569
1570 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1571
1572         * Control.cs: If Rectangle.Empty is passed to Invalidate, use
1573         ClientRectangle instead.  [Fixes bug #82838]
1574
1575 2007-09-13  Jonathan Pobst  <monkey@jpobst.com>
1576
1577         * SplitContainer.cs: We can't reset Visible on every layout because
1578         someone may have set Visible = false explicitly on a SplitterPanel.
1579         Make sure when we switch orientation the SplitterDistance does not
1580         change.  Fixes two failing tests.
1581
1582 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1583
1584         * TreeView.cs: Use MeasureTextInternal instead of MeasureText in
1585         TextRenderer, since the latter is only available in 2.0.
1586
1587 2007-09-13  Ivan N. Zlatev <contact@i-nz.net>
1588
1589         * Cursor.cs: Fix Cursor.Current to apply Cursor.Default.
1590         * SplitContainer.cs: Implement FixedPanel layouting.
1591
1592 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1593
1594         * WebBrowserBase.cs: setup shutdown routine
1595
1596 2007-09-12  Andreia Gaita  <avidigal@novell.com>
1597
1598         * Application.cs: Let keyboard events that are targetted 
1599                 to non-mwf windows hosted inside mwf (as in, webbrowser),
1600                 propagate properly. Fixes keyboard handling on the webbrowser.
1601
1602 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1603
1604         * ListView.cs: When handling MouseUp event and we are 
1605         highligting a node with the mouse right button, don't trigger
1606         Before/AfterSelecting event, since we are not actually selecting
1607         the node.
1608
1609 2007-09-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1610
1611         * TreeView.cs: When editing a node, modify the edit text box
1612         depending on the text length (as you are typing), like MS does.
1613
1614 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1615
1616         * ToolStrip.cs: Fixup preferred size calculations for vertical toolbars. 
1617         Override GetPreferredSizeCore to perform calculations.  Remove custom
1618         autosize logic.  [Fixes bug #82739]
1619
1620 2007-09-12  Jonathan Pobst  <monkey@jpobst.com>
1621
1622         * TextBoxBase.cs: Modified should default to false.
1623
1624 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1625
1626         * Control.cs: Update the anchoring distances even when layout is supspended.
1627         Patch provided by George fixes bug #82805.
1628
1629 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1630
1631         * Control.cs: Provide a setter for ExplicitHeight.
1632         * TextBoxBase.cs: Now that we have the implementation for explicit heights,
1633         remove the hacks in here for requested_height.
1634         [Fixes bug #82749]
1635
1636 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1637
1638         * ScrollBar.cs: Fix an issue reported on the lists where setting a scrollbar's
1639         Maximum to lower that its current Value caused an ArgumentException by setting
1640         the Value to the new Maximum.
1641
1642 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1643
1644         * ThemeWin32Classic.cs: Math is hard!  Fix some math so that the TrackBar
1645         handle moves to the closest tick when it is being dragged.
1646         [Fixes bug #82751]
1647
1648 2007-09-11  Jonathan Pobst  <monkey@jpobst.com>
1649
1650         * ToolStripManager.cs: When we have added MDI buttons onto a MenuStrip, we
1651         can't let them count as real items when calculating where to merge in the
1652         user's items.  [Fixed bug #82786]
1653
1654 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1655
1656         * ToolStripMenuItem.cs: Add a parent type check so we don't crash on people
1657         who want to add a menu item directly onto a toolstrip.
1658         [Fixes bug #82775, part II]
1659
1660 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1661
1662         * StatusStrip.cs: Synchronize SetDisplayedItems with the ToolStrip version.
1663         * ToolStrip.cs: If a ToolStripItem set to not visible is added to a ToolStrip,
1664         don't set it to available.
1665         * ToolStripItem.cs: When Visible is changed, tell the owner to perform a layout.
1666         [Fixes bug #82727, part II]
1667
1668 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1669
1670         * StatusStrip.cs: Change item placement to None if not visible.
1671         * ToolStripItem.cs: Invalidate when InternalVisible changes.
1672         These should have been committed to fix 82723, but I missed them.
1673
1674 2007-09-10  Jonathan Pobst  <monkey@jpobst.com>
1675
1676         * ToolStrip.cs: Make sure ItemClicked is raised before the ToolStripItem's
1677         Click, and that it is only called once.
1678         * ToolStripMenuItem.cs: Call OnClick even when there are dropdown items.
1679         * ToolStripDropDownItem.cs: Override HandleItemClick so dropdowns stay
1680         dropped down.
1681         [Fixes bug #82775]
1682
1683 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1684
1685         * ColumnHeaderSample.cs: Use 5 pixels as extra height instead of 8
1686         to match .Net.
1687         * ThemeWin32Classic.cs: For the columns text, use 5 pixels as left padding
1688         instead of 8, just like above. Partially fixes #82734.
1689
1690 2007-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1691
1692         Patch by Ernesto Carrea <equistango at gmail.com>. Partially 
1693         fixes #82734.
1694
1695         * ListView.cs: Remove extra space between rows in Details view (match
1696         .Net). 
1697         * ThemeWin32Classic.cs: Header text should use ListView.Font, not
1698         the DefaultFont.
1699
1700 2007-09-08  Gert Driesen  <drieseng@users.sourceforge.net>
1701
1702         * Application.cs: Modified ProductVersion to return value of
1703         AssemblyInformationVersion if available, and fallback to assembly
1704         version. Fixes bug #82746. Code formatting.
1705         * BindingSource.cs: Remove NIE from Dispose, and mark it MonoTODO
1706         instead.
1707
1708 2007-09-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1709
1710         * Control.cs: When updating ZOrder for a child control,
1711         take into account the implicit ones (we need it in our controls
1712         using them). Fixes #82642.
1713
1714 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1715
1716         * ToolStripItem.cs: Add support for animated images.
1717         [Fixes bug #82726]
1718
1719 2007-09-07  Jonathan Pobst  <monkey@jpobst.com>
1720
1721         * ToolStrip.cs: Make sure we aren't drawing anything that isn't 
1722         visible.  [Fixes bug #82727]
1723
1724 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1725
1726         * ToolStripItem.cs: If AutoSize changes the size of our item, invalidate
1727         so we repaint using the new size.  [Fixes bug #82723]
1728
1729 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1730
1731         * TreeView.cs: If ShowLines is true, we should ignore the FullRowSelect
1732         option.  [Fixes bug #81779]
1733
1734 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1735
1736         * TreeView.cs: Override HandleClick because the StandardClick style is
1737         set to false.  According to MSDN (and testing), the click events should
1738         only be raised when the click occurs on a TreeNode.  [Fixes bug #81739]
1739
1740 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1741
1742         * ToolStripTextBox.cs: Invalidate our textbox when it loses focus, so
1743         the border will disappear.  Fixes reopened #82653.
1744
1745 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1746
1747         * Control.cs: If the control is autosize, and its preferred size changes
1748         when it lays out its children, tell its parent so it can be re-layed out.
1749         Fixing some of the fallout from r85433.
1750
1751 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1752
1753         * ThemeWin32Classic.cs: Fix a NRE caused by r85427 because RadioButton
1754         and CheckBox share some code.
1755
1756 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1757
1758         * TrackBar.cs: Only call OnScroll if we actually changed the Value of
1759         the TrackBar, not every mouse move.  [Fixed bug #82718]
1760
1761 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1762
1763         * ThemeWin32Classic.cs: Allow a CheckBox to be rendered like a Button
1764         under 2.0 rendering.  [Fixes bug #82657]
1765
1766 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1767
1768         * TreeView.cs: If we found a TreeNode to display a context menu, but
1769         it doesn't have one to show, let the TreeView display its menu
1770         instead.  [Fixes bug #82680]
1771
1772 2007-09-06  Jonathan Pobst  <monkey@jpobst.com>
1773
1774         * ToolStripTextBox.cs: TextBox no longer call OnPaint, we need to use
1775         OnPaintInternal instead.  Give the internal TextBox a Border property
1776         so it can draw itself more correctly.  [Fixes bug #82653]
1777
1778 2007-09-06  Zoltan Varga  <vargaz@gmail.com>
1779
1780         * HtmlHistory.cs HtmlWindow.cs HtmlWindowCollection.cs ListBindingHelper.cs WindowsFormsSection.cs WindowsFormsSynchronizationContext.cs: Stubs for missing 2.0 classes.
1781
1782 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1783
1784         * ComboBox.cs: Adjust combobox button state to reflect current state when
1785         back to enabled = true. Fixes first issue of #82654.
1786
1787 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1788
1789         * Control.cs: Fix last patch regression, prevent forms to update zorder when
1790         setting visible property.
1791
1792 2007-09-05  Everaldo Canuto  <everaldo@simios.org>
1793
1794         * Control.cs: Update zorder after control creation in SetVisibleCore, it 
1795         fix zorder for controls initially created as non visible. Fixes #82667.
1796
1797 2007-09-04  Everaldo Canuto  <everaldo@simios.org>
1798
1799         * ThemeWin32Classic.cs: Adjust checkbox light color to ControlLightLight to
1800         mimic win32 look. Fixes #82656.
1801
1802 2007-09-01  Zoltan Varga  <vargaz@gmail.com>
1803
1804         * FileDialogCustomPlace.cs FileDialogCustomPlacesCollection.cs: 
1805         Stubs for new net 3.5 classes.
1806
1807 2007-08-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1808
1809         * ListViewItem.cs: In ListViewItemCollection operations calculate
1810         Layout for owner as well as invalidate it. Fixes part of #82642.
1811
1812 2007-08-31  Jonathan Pobst  <monkey@jpobst.com>
1813
1814         * ToolStripItem.cs: Take Parent/Owner's Enabled state in to account
1815         when returning Enabled.  [Fixes bug #82651]
1816
1817 2007-08-30  Everaldo Canuto  <everaldo@simios.org>
1818
1819         * ToolBar.cs: Fix button size for non flat toolbars. Fixes #82368.
1820
1821 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1822
1823         * ListView.cs: Put item padding info in a single place
1824         (Theme.ListViewItemPaddingWidth) to have working AutoResize on
1825         columns again.
1826         * ThemeWin32Classic.cs:
1827         * Theme.cs: Likewise.
1828
1829 2007-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1830
1831         * ListView.cs: When a ListViewSubItem instance is invalidated,
1832         invoke Invalidate on parent ListViewItem, not parent ListView.
1833         Fixes #81570.
1834
1835 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1836
1837         * ListView.cs, ListViewItem.cs: corcompare stuffs.
1838
1839 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1840
1841         * BindingMemberInfo.cs: Implement == and != operators.
1842
1843 2007-08-30  Jonathan Pobst  <monkey@jpobst.com>
1844
1845         * HtmlElementEventArgs.cs: Implement properties.
1846
1847 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1848
1849         * HtmlElementErrorEventArgs.cs, HtmlElementErrorEventHandler.cs: Added.
1850
1851 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1852
1853         * TabControl.cs: I was looking into the MonoTODO on TabPageCollection.
1854         Add (string,string,string) to implement the imagekey.  It turns out, we
1855         use the requested imagekey whereas .Net does not.  So I broke ours to match
1856         theirs.  :(
1857
1858 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1859
1860         * Form.cs, UserControl.cs: Override ValidateChildren, AutoValidate.
1861
1862 2007-08-29  Jonathan Pobst  <monkey@jpobst.com>
1863
1864         * ContainerControl.cs: Implement ValidateChildren and new Validate overload.
1865
1866 2007-08-29  Gert Driesen  <drieseng@users.sourceforge.net>
1867
1868         * FolderBrowserDialog.cs: Set Tag of newly created node, and keep it
1869         up-to-date. Fixes bug #82618.
1870
1871 2007-08-29  Everaldo Canuto  <everaldo@simios.org>
1872
1873         * TextBoxBase.cs: Call CalculateDocument after changes Lines property to
1874         reflect document changes. Fixes #82367.
1875
1876 2007-08-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1877
1878         * ListView.cs: Add/fix some override differences between 1.1 and 2.0,
1879         as well as add new ones. This should make work the BackgroundImage
1880         property for ListView again.
1881
1882 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1883
1884         * DataGrid.cs, DataGridViewButtonColumn.cs, DataGridViewCheckBoxColumn.cs,
1885         DataGridViewComboBoxColumn.cs, DataGridViewImageColumn.cs, DataGridViewLinkColumn.cs,
1886         DataGridViewTextBoxColumn.cs, ToolTip.cs: corcompare stuffs.
1887
1888 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1889
1890         * Control.cs, XPlatUI.cs, XPlatUIDriver.cs, XPlatUIWin32.cs: Implement
1891         IsKeyLocked.
1892
1893 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1894
1895         * Cursor.cs: Add HotSpot, hook into XPlatUI.GetCursorInfo.
1896         * XPlatUIWin32.cs: Implement hotspot lookup in GetCursorInfo.
1897
1898 2007-08-28  Jonathan Pobst  <monkey@jpobst.com>
1899
1900         * RadioButton.cs: Use 2.0 rendering.  Use base implementation of TextAlign.
1901         * Theme.cs, ThemeWin32Classic.cs: Implement 2.0 rendering for RadioButton.
1902
1903 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1904
1905         * CursorConverter.cs: Implement conversion to InstanceDescriptor.
1906
1907 2007-08-27  Ivan N. Zlatev  <contact@i-nz.net>
1908
1909         * GridEntry.cs: Implement GetService.
1910
1911 2007-08-27  Jonathan Pobst  <monkey@jpobst.com>
1912
1913         * LabelEditTextBox.cs, TreeView.cs: After hiding the textbox used
1914         for label editting, make sure we focus back on the TreeView.
1915         [Fixes bug #82590]
1916
1917 2007-08-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1918
1919         * ListView.cs: Add some 2.0 overrides.
1920
1921 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1922
1923         * Form.cs: Uses opacity var instead of Opacity property in CreateHandle
1924         because getter dont returns right value before handle creation. Thanks 
1925         to George. Fixes #82569.  
1926
1927 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1928
1929         * Theme.cs: Revert last patch, it causes error under win32. 
1930
1931 2007-08-27  Everaldo Canuto  <ecanuto@novell.com>
1932
1933         * Theme.cs: Uses Environment.SpecialFolder.DesktopDirectory instead of 
1934         Environment.SpecialFolder.Desktop in Places method, Desktop returns the 
1935         logical Desktop rather than the physical file system location. Fixes #82603. 
1936
1937 2007-08-26  Everaldo Canuto  <ecanuto@novell.com>
1938
1939         * MessageBox.cs: Add clipboard copy (ctrl+c) to messagebox. Thanks Andy Hume
1940         for the patch. Fixes #82568.
1941
1942 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1943
1944         * ListView.cs: Add a pair of missing 2.0 ListViewItemCollection.Insert
1945         methods.
1946
1947 2007-08-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1948
1949         * ListViewInsertionMark.cs: New stubbed class.
1950
1951 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1952
1953         * FolderBrowserDialog.cs: When adding folder, immediately create the
1954         directory with temporary name and rename the directory when editing
1955         finishes. This matches MS. Ensure the node for the new folder is 
1956         selected and LabelEdit is disabled, when editing is either finished
1957         or cancelled.
1958
1959 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1960
1961         * TreeView.cs: When editing label of node, ensure node is visible.
1962
1963 2007-08-25  Ivan N. Zlatev  <contact@i-nz.net>
1964
1965         * PropertyGridView.cs: Set the value only if it has changed.
1966
1967 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1968
1969         * ListView.cs: Some more code refactoring to add support sorting
1970         with groups (now for Details view). Remove unused code also.
1971
1972 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1973
1974         * NodeLabelEditEventArgs.cs: EndEdit immediately when CancelEdit is called.
1975         Not a big fan of reacting immediately to a field in an EventArg, but that's
1976         the way it's done.  (This is part of the previous commit that got left out.)
1977
1978 2007-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
1979
1980         * FolderBrowserDialog.cs: Removed need for separate description field.
1981         Replaced "" with string.Empty. Fixed tabindex. Ensure OK button
1982         has focus when dialog box is displayed again, regardless of what
1983         button was pressed the previous time. Set RootFolder and SelectedPath
1984         each time dialog box is displayed. This ensures the treeview is
1985         refreshed, and fixes bug #82579. Do no hide selected node in TreeView
1986         when it does not have focus. Added support for more special folders.
1987
1988 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
1989
1990         * TreeView.cs: Create a CancelEdit method.  Clone the edit_args in EndEdit
1991         before calling AfterLabelEdit.  If the user calls BeginEdit in that event,
1992         it resets the edit_args.
1993         * TreeNode.cs: Call CancelEdit if the user passes cancel = true to EndEdit.
1994         [Fixes bug #82577]
1995
1996 2007-08-24  Gert Driesen  <drieseng@users.sourceforge.net>
1997
1998         * FolderBrowserDialog.cs: Modifies form caption and text of new folder
1999         button to match MS. Provide more meaningful exception message for
2000         invalid RootFolder value. Use zero-length string when SelectedPath
2001         is set to null. Allow non-rooted paths in SelectedPath, but ignore
2002         them in FolderBrowserTreeView. Allow folders to be created in
2003         RootFolder. Fixes bug #82576.
2004
2005 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2006
2007         * ListView.cs: Correctly compute the layout_ht (height) when using groups,
2008         since we need to take into account the group headers and the margin
2009         between them.
2010         * ListViewGroup.cs: Add a rows field to store the number of rows per
2011         group.
2012
2013 2007-08-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2014
2015         * DateTimePicker.cs: The MS' MTB has a really stupid year formatting.
2016           Anyways, let's just follow the lead.
2017
2018 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
2019
2020         * CheckBox.cs: Set the AutoSizeMode to GrowAndShrink.
2021         * Form.cs, GroupBox.cs: Don't skip Right or Bottom anchored 
2022         controls in GetPreferredSizeCore.
2023         * ThemeWin32Classic.cs: Tweak text drawing of CheckBoxes.
2024         [Fixes bug #82488]
2025
2026 2007-08-24  Jonathan Pobst  <monkey@jpobst.com>
2027
2028         * PrintDialog.cs: Need to instantiate the form variable here too.
2029
2030 2007-08-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2031
2032         * ListView.cs: Do some reorganization to support sorting in groups,
2033         by doing the layout sequentially in ListView.Items. Also add support
2034         for the Default Group, which should be available for items with no
2035         group assigned.
2036         * ListViewGroup.cs: Add support for DefaultGroup. Include new members
2037         for storing layout info also.
2038         * ListViewGroupCollection.cs: Add a DefaultGroup as part of the
2039         collection, as well as providing internal members to do a traversal
2040         including the default group (needed when doing layout/drawing).
2041         * ThemeWin32Classic.cs: When drawing group headers use internal
2042         ListViewGroupCollection members to take into account the default
2043         group.
2044
2045 2007-08-23  George Giolfan  <georgegiolfan@yahoo.com>
2046
2047         * FlowLayoutPanel.cs: Add GetPreferredSizeCore.  [Fixes bug #82537]
2048
2049 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2050
2051         * TreeView.cs: IsInputKey: don't ask for any keys if the handle hasn't
2052         been created.  If handle is created, we want arror keys.  If we are editing
2053         a node, we want things like enter, esc, home, end, page up, page down.
2054         Allows Esc to work for FolderBrowserDialog.
2055
2056 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2057
2058         * ColorDialog.cs, FontDialog.cs: Set the form's CancelButton so that
2059         they close when ESC is pressed.  Thanks Andy!
2060
2061 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2062
2063         * CommonDialog.cs: Do not instantiate form, leave that for derived classes.
2064         This way we can tell if this is a CommonDialog provided with mono, or one
2065         that is being implemented outside by a developer.  If it is an external one,
2066         the developer is responsible for showing their own form.  We were showing
2067         our blank form after the developer showed his.
2068         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs, FontDialog.cs,
2069         PageSetupDialog.cs: Instantiate form variable in our constructor.
2070         [Fixes bug #82531]
2071
2072 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2073
2074         * ListBox.cs, ListView.cs, TreeView.cs: Override IsInputCharInternal
2075         and always return true.  [Fixes bug #81616]
2076
2077 2007-08-23  Jonathan Pobst  <monkey@jpobst.com>
2078
2079         * TextBoxBase.cs: Allow 2.0 AutoSize to change the height of the
2080         TextBox.  [Fixes bug #82549]
2081
2082 2007-08-23  Gert Driesen  <drieseng@users.sourceforge.net>
2083
2084         * FileDialog.cs: When Save/Open is clicked and no filename is selected
2085         or entered then do not close the dialog. Fixes bug #82539. Removed
2086         CWLs.
2087
2088 2007-08-22  Everaldo Canuto  <ecanuto@novell.com>
2089
2090         * FileDialog.cs: Create UpdateRecentFiles and move the recent files refresh
2091         code to this method. It is calling every time filter changes. This method
2092         will help to fix the bug #80887.
2093
2094 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2095
2096         * CheckBox.cs: Implement AutoSize calculation.
2097
2098 2007-08-22  Jonathan Pobst  <monkey@jpobst.com>
2099
2100         * CheckBox.cs: Use new 2.0 rendering for 2.0.
2101         * Theme.cs: Method declarations for 2.0 rendering path.
2102         * ThemeWin32Classic.cs: 2.0 rendering implementation for CheckBox.
2103
2104 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2105
2106         * ListViewGroupCollection.cs: Fix a typo of the previous patch.
2107
2108 2007-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2109
2110         * ListViewGroupCollection.cs: Implement AddRange the right way, to
2111         only call Redraw on the parent one time.
2112
2113 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2114
2115         * DataGridViewRowHeaderCell.cs, DataGridViewColumnHeaderCell.cs: Implemented
2116           GetClipboardContent.
2117         * DataGridViewCell.cs: Implemented GetClipboardContent,
2118           GetEditedFormattedValue, GetFormattedValue.
2119         * DataGridView.cs: Implemented GetClipboardContent, TopLeftHeaderCell.
2120
2121 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2122
2123         * TableLayoutStyleCollection.cs: corcompare fix.
2124
2125 2007-08-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2126
2127         * DataObject.cs: Implemented retrieval of convertible / not convertible
2128           objects.
2129
2130 2007-08-21  Jonathan Pobst  <monkey@jpobst.com>
2131
2132         * ToolStripItem.cs: When changing the item's text, invalidate before we resize
2133         ourselves.  This ensures the entire old bounds are repainted, in case our new
2134         size is smaller.  [Fixes bug #82518]
2135
2136 2007-08-20  Everaldo Canuto  <ecanuto@novell.com>
2137
2138         * XplatUIX11.cs: Apply patch from #81588, it makes use of PointerMotionHintMask
2139         flag to make fast handle of mouse events, without this the mouse move is
2140         handled in some manner, whether it is a mouse move or not. Fixes #81588.
2141
2142 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2143
2144         * ListView.cs: When doing layout calculations don't use a ref
2145         param to keep the current item; instead use its Index value (this 
2146         is specially important when doing the layout with Groups
2147         and Items being sparse). Also don't take into account items added to
2148         the Group but not yet added to the main ListView.Items collection.
2149
2150 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2151
2152         * ListViewGroupCollection.cs: Forgot to mimic an issue
2153         in the indexer (don't assign the ListView owner for new values).
2154
2155 2007-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2156
2157         * ListViewGroupCollection.cs: Make the string indexer use
2158         the int based indexer to re-use code, instead of duplicate the code.
2159         Also Redraw as needed and take into account null values.
2160
2161 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2162
2163         * StatusStrip.cs: Make sure the item's parent gets set in SetDisplayedItems.
2164         [Fixes bug #82481]
2165
2166 2007-08-20  Jonathan Pobst  <monkey@jpobst.com>
2167
2168         * ToolStrip.cs: Add some logic to un-focus controls in ToolStripControlHosts
2169         when other buttons are clicked or navigated to.
2170
2171 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2172
2173         * XplatUIX11.cs: Treat toolwindows as if they had no window manager, since
2174           it's XplatUIX11 that attaches them.
2175
2176 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2177
2178         * DataGridView.cs: If a column has been added, recreate the editing row.
2179           Fixes #82226.
2180
2181 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2182
2183         * TextControl.cs: Use Math.Max instead of Math.Min when deciding the length
2184           of the tag to draw. Makes disappearing text show up again.
2185
2186 2007-08-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2187
2188         * StatusBar.cs: Take into account any icons when a panel has AutoSize =
2189           Contents. Fixes #82487.
2190
2191 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2192
2193         * Added HtmlElement.cs, HtmlElementCollection.cs, 
2194           HtmlElementEventArgs.cs, HtmlElementEventHandler.cs
2195           
2196 2007-08-19  Andreia Gaita  <avidigal@novell.com>
2197
2198         * BindingSource.cs: Implement this, dispose and getenumerator.
2199         * DataGridViewRowCollection.cs: Move the InvalidOperationException
2200         out of AddInternal, throw it only on public Add calls. The 
2201         UsingWebBrowser sample was blowing up with this when setting the
2202         DataSource after adding DataBindings, so it's likely that .net
2203         only throws this exception when Add is called directly. 
2204         
2205         * ToolStripControlHost.cs: Return the hosted control's text
2206         property, and not the ToolStripItem one (it would always return
2207         the initial value).
2208         
2209         * HtmlDocument.cs: Implement GetElementById and All
2210         * WebBrowser.cs: Remove exception on set_DocumentStream.        
2211
2212 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2213
2214         * Form.cs: Fix the max and min value for opacity (0~1).
2215
2216 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2217
2218         [Fixes #80118]
2219         * DataGridTableStyle.cs: Default header font is now null, on getter it 
2220         returns datagrid font when is null. On setter permits null.
2221
2222         * DataGrid.cs:
2223         - When ResetHeaderFont set header font to null.
2224         - On EndInit set grid_style.DataGrid.
2225
2226 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2227
2228         * TabControl.cs: Fix regression in default padding x.
2229
2230 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2231
2232         * TabControl.cs: Fix tab page text area removing padding. Fixes #82471.
2233
2234 2007-08-19  Everaldo Canuto  <ecanuto@novell.com>
2235
2236         * TabControl.cs: Fix first tab drawing, when selected it must have x = 0
2237         not 2. Fixes #82229.
2238
2239 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2240
2241         * TabControl.cs: Fix tab size when image height is less than text height.
2242         Partially fixes #81837.
2243
2244 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2245
2246         * Form.cs: Add WS_EX_CONTROLPARENT to forms to make it selectable using 
2247         "alt + tab". It works only for Win32, for X11 theres no way to remove window
2248         from taskbar and keep it on "alt_tab". Fixes #81722.
2249
2250 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2251
2252         * XplatUIX11.cs: Apply patch from Jurek Bartuszek to fix DrawReversibleFrame
2253         and DrawReversibleLine, also apply same behavior to FillReversibleRectangle. 
2254         Fixes #80877 and #79418.
2255
2256 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2257
2258         * MenuAPI.cs: Fix popup menu position when the size is larger than distance 
2259         between position and one of the screen borders. Fixes #82349.
2260
2261 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2262
2263         * MessageBox.cs: When there is no form that invoked the MessageBox, shows
2264         the MessageBox in the taskbar. Fixes #82457.
2265
2266 2007-08-18  Everaldo Canuto  <ecanuto@novell.com>
2267
2268         * MessageBox.cs: Fix form size when icon is set and text height is bigger
2269         than icon. Fixes #82468.
2270
2271 2007-08-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2272
2273         * ThemeWin32Classic.cs: A FixedToolWindow has border size 3.
2274         * InternalWindowManager.cs: Change HandleCalcSize to return a boolean value
2275           if handled or not. Implement WM_NCCALCSIZE for WParam == 0 as well.
2276           Refactored HandleNCCalcSize somewhat to avoid code duplication.
2277         * Form.cs: Add is_clientsize_set, set in set_ClientSize, used by
2278           FormBorderStyle to decide if we're calculating a new size from the
2279           client size or not. CreateParams: Don't fake tool windows, only the X11
2280           backend manages toolwindows manually.
2281
2282 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2283
2284         * Form.cs: Only reset is_visible if !IsDisposed to prevent an
2285         ObjectDisposedException.
2286
2287 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2288
2289         * Form.cs: Reset is_visible back to true after OnLoad.  Setting this
2290         in OnLoad should not have any effect.  [Fixes bug #82470]
2291
2292 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2293
2294         * ToolTip.cs: Add a hack to ToolTipWindow so it will still size and
2295         paint for controls that create their own ToolTipWindow instead of
2296         going through ToolTip.
2297
2298 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2299
2300         * ToolTip.cs: Make Hide internal instead of public to match MS API.
2301
2302 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2303
2304         * ListViewGroupCollection.cs: Use generic List instead of an
2305         ArrayList, since this collection is 2.0 only.
2306
2307 2007-08-17  Jeffrey Stedfast  <fejj@novell.com>
2308
2309         * ToolTip.cs (Hide): Made public to make the build work (should
2310         this not be public?).
2311
2312 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2313
2314         * ToolBar.cs, ToolStrip.cs, TreeView.cs: Use a ToolTip instead of a
2315         ToolTipWindow.
2316         * ToolTip.cs: Add an internal Visible property to facilitate transition.
2317
2318 2007-08-17  Jonathan Pobst  <monkey@jpobst.com>
2319
2320         * DrawToolTipEventArgs.cs, DrawToolTipEventHandler.cs, PopupEventArgs.cs,
2321         PopupEventHandler.cs: Make these internal for 1.1.
2322         * ThemeClearlooks.cs, ThemeWin32Classic.cs: Use TextRenderer, and modify to not
2323         use ToolTipWindow internals.
2324         * ToolTip.cs: Add 2.0 modal Show methods.  Had to move a lot of stuff around to
2325         support this.  A lot of stuff in the ToolTipWindow got moved to the ToolTip.
2326
2327 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2328
2329         * X11Dnd.cs: Add a null check.
2330
2331 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2332
2333         * X11Dnd.cs: MwfWindow: Try to load the control directly from the handle if
2334           nothing else succeeds. Fixes #82453.
2335
2336 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2337
2338         * XplatUIWin32.cs: PaintEventStart: validate the entire source client
2339           rectangle if we're painting to another window than the one the paint
2340           message was generated on. Simplify the code somewhat, which makes
2341           PaintEventEnd also simpler.
2342
2343 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2344
2345         * Control.cs: When changing parent of a form, let the form decide whether
2346           XplatUI.SetParent should be called or not.
2347         * Form.cs: ChangingParent: only call XplatUI.SetParent if we're not
2348           recreating the handle. If the new parent's handle isn't created, don't
2349           recreate our handle, just destroy it. CreateParams: Check if the
2350           parent's handle is created before fetching it.
2351
2352 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2353
2354         * Control.cs, Form.cs, InternalWindowManager.cs, MainMenu.cs, MdiClient.cs:
2355           Update calls to PaintEventStart/End to take a Message argument.
2356         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Update PaintEventStart/End to
2357           take a Message argument.
2358         * XplatUIWin32.cs, XplatUIX11.cs: Update PaintEventStart/End to take a
2359           Message argument, and handle the case where we don't paint to the window
2360           for which the paint message was generated.
2361
2362 2007-08-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2363
2364         * XplatUIWin32.cs: Don't call Win32GetLastError directly, use
2365           Marshal.GetLastWin32Error. Plug nasty memory leak in
2366           PaintEventStart/End, we were creating a DC we weren't releasing.
2367
2368 2007-08-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2369
2370         * ListView.cs: Add Groups support in Details view. Also have a small
2371         method to do the layout of the group header. Don't use a separate
2372         method to do the groups calculation in Icons view, since our methods
2373         are now a little simpler.
2374         * ListViewGroup.cs: Use the more accurate `HeaderBounds' name than
2375         `Bounds'.
2376         * ThemeWin32Classic.cs: Likewise.
2377
2378 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2379
2380         * Application.cs: Add FilterMessage method and rework our message loop
2381         logic to use it.
2382
2383 2007-08-16  Jonathan Pobst  <monkey@jpobst.com>
2384
2385         * Application.cs: Add some methods and stub a few methods that are
2386         pretty much never used.
2387
2388 2007-08-15  Jonathan Pobst  <monkey@jpobst.com>
2389
2390         * TreeNode.cs: Add some serialization methods.
2391
2392 2007-08-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2393
2394         * ListView.cs: In ListViewItemCollection have a 
2395         'is_main_collection' field to not modify ListViewItem.ListView
2396         when using it as ListViewGroup.Items (and not ListView.Items)
2397         and also don't modify selection state (.Net behaviour). 
2398         Instead, set group for items contained in a ListViewGroup.Items collection.
2399         * ListViewItem.cs: Simplify some code in Group setter.
2400         * ListViewGroup.cs: use the new .ctor to pass the current instance
2401         to the ItemsCollection.
2402         * ListViewGroup.cs: Set the ListView property for ListViewGroup
2403         instances when adding/removing. Also make Remove use RemoveAt, which
2404         should perform better.
2405
2406 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2407
2408         * Message.cs, TabControl.cs, TextBox.cs, TextBoxBase.cs: Hide some 2.0 API
2409         that crept into the 1.1 profile.
2410
2411 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2412
2413         * ToolBarButton.cs: Implement ImageKey.
2414
2415 2007-08-14  Jonathan Pobst  <monkey@jpobst.com>
2416
2417         * ToolBar.cs: Implement ScaleControl/ScaleCore.
2418
2419 2007-08-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2420
2421         * PictureBox.cs: OnAnimateImage/UpdateAnimateImage: Check if handle is still
2422           created, it might have gotten destroyed since we last checked. Fixes
2423           #82405.
2424
2425 2007-08-11  Jonathan Pobst  <monkey@jpobst.com>
2426
2427         * ToolTip.cs: Remove mouse in control check from mouseleave handler so
2428         tooltip will hide when mouse is moved off the control.
2429         [Fixes bug #82407]
2430
2431 2007-08-11 Andreia Gaita <avidigal@novell.com>
2432
2433         * WebBrowserBase.cs, WebBrowser.cs: add implementation
2434         using Mono.Mozilla for loading and navigating webcontrol
2435         with xulrunner.
2436         The initial implementation was done on 
2437         /trunk/mozembed/tests/browser , and copied here.
2438
2439 2007-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
2440
2441         * ThemeWin32Classic.cs: On 2.0 profile, use ForeColor and BackColor of
2442         ToolTipWindow for drawing the tooltip. Fixes bug #82408.
2443
2444 2007-08-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2445
2446         * DataGridView.cs: Add support for an editing row. Fixes #82226.
2447           RowTemplateFull: throw an exception if a column doesn't have a template.
2448         * DataGridViewRowCollection.cs: AddInternal: if there are any editing rows,
2449           add the row just before it.
2450         * DataGridViewTextBoxCell.cs: Don't paint cells which are in edit mode as
2451           selected.
2452         * DataGridViewSelectedRowCollection.cs: Don't return the editing row. Add a
2453           DataGridView field to be able to reach the grid's editing row.
2454
2455 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2456
2457         * ToolTip.cs: If the control's handle hasn't been created when it has a
2458         tooltip set on it, don't check to see if we need to show the tooltip.  This
2459         check was causing the control's handle to be created.
2460         [Fixes bug #82399]
2461
2462 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2463
2464         * TextBoxBase.cs: Fix SelectionLength when no text selected to match MS:
2465                                         1.1             2.0
2466         Handle Not Created      -1              0
2467         Handle Created          0               0
2468         [Fixes bug #82371]
2469
2470 2007-08-10  Jonathan Pobst  <monkey@jpobst.com>
2471
2472         * ToolTip.cs: Hide the tooltip if the control is clicked to match MS behavior.
2473         [Fixes bug #82348]
2474
2475 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2476
2477         * DrawToolTipEventArgs.cs: Don't dispose a brush we got from the respool.
2478         * ToolTip.cs: Implement some properties and owner draw.
2479
2480 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2481
2482         * DataGridView.cs: OnPaint: don't set scrollbar visibility to false then
2483           show them again, since setting visibility causes a paint, causing an
2484           endless loop (instead use a temporary and set it all when it's known if
2485           they should be shown or not). Fixes #79265.
2486
2487 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2488
2489         * DataGridView.cs: Only do a full column/row selection if a header was
2490           clicked and we're in Column/RowHeader selection mode. If shift and ctrl
2491           isn't pressed, deselect everything before selecting something.
2492
2493 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2494
2495         * DataGridView.cs: Fix SelectedRows and SelectedColumns to match MS
2496           behaviour according to bug #81075 - they are returned in the order they
2497           are selected. Fix HitTest to check if the point is within any of the
2498           headers. Allow for row/column selection when in ColumnHeader or
2499           RowHeader selection mode. Add SetSelected[Column|Row]CoreInternal for
2500           the row and column to call when their selected state changes, and
2501           updated selected_[rows|columns] whenever SetSelected* is called.
2502         * DataGridViewBand.cs: Initialize isRow correctly. Call
2503           SetSelected[Row|Column]CoreInternal when the selected state changes, and
2504           add a SelectedInternal to avoid StackOverflows.
2505         * DataGridViewColumn.cs, DataGridViewRow.cs: If DGV is ReadOnly, we're also
2506           ReadOnly no matter what.
2507         * DataGridViewSelectedColumnCollection.cs,
2508           DataGridViewSelectedRowCollection.cs: Add an InternalAddRange that adds
2509           the items in reverse order (just as MS does...)
2510
2511 2007-08-09  Jonathan Pobst  <monkey@jpobst.com>
2512
2513         * Application.cs: Only release menustrips if Alt (MenuKey) is pressed by
2514         itself, not part of a mnemonic.  [Fixes bug #82378]
2515
2516 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2517
2518         * DataGridView.cs: BeginEdit: don't allow editing of readonly cells.
2519         * DataGridViewCell.cs: Implement ReadOnly better: the cell is ReadOnly if
2520           the DGV, the column, the row, or the cell itself is readonly.
2521
2522 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2523
2524         * ThemeNice.cs: Use XplatUI.RunningOnUnix instead of checking
2525         OSVersion.Platform.
2526         * FileDialog.cs: Same.
2527         * TextRendered.cs: Same.
2528         * FolderBrowserDialog.cs: Same.
2529         * TextBoxBase.cs: Same.
2530         * Application.cs: Same.
2531         * Cursors.cs: Same.
2532         * ThemeClearLooks.cs: Same.
2533
2534 2007-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
2535
2536         * XplatUI.cs: Added RunningOnUnix property to be used by controls
2537         instead of duplicating these checks everywhere.
2538         * FileDialog.cs: Use case-insensitive comparison for populating the
2539         DirComboBox when not running on unix. Fixes bug #82385.
2540         * OpenFileDialog.cs: to match MS, change label of DirComboBox to 
2541         "Look in".
2542
2543 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2544
2545         * DataGridView.cs: SelectedRows: we need to check if selectionMode is
2546           FullRowSelect (not FullColumnSelect). Fixes #81075. Implemented
2547           BeginEdit, EndEdit, SetSelected<Cell|Row|Column>Core. Implemented row,
2548           cell and column selection with ctrl and shift pressed. Call the correct
2549           BeginEdit/EndEdit whenever we start/end editing. Move painting code to
2550           the corresponding virtual method (PaintBackground to paint background,
2551           etc).
2552         * DataGridViewCell.cs: Implement Selected correctly, we're selected if
2553           either the column, row or the cell itself is selected.
2554         * DataGridViewRowCollection.cs: Use DGV.OnRowsAddedInternal instead of
2555           OnRowsAdded.
2556         * DataGridViewRow.cs: Moved some of the painting code from DataGridView
2557           here. When the row is selected, don't select all cells. Each cell now
2558           queries the row to see if the row is selected.
2559
2560 2007-08-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2561
2562         * DataGridViewColumn.cs: Throw if the SortMode conflicts with DataGridView's
2563           SelectionMode.
2564
2565 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2566
2567         * ListView.cs: In ListViewItemsCollection check that owner is
2568         not null before trying to access it (this happens quite often
2569         using Groups). Also don't duplicate calls by calling CollectionChanged
2570         method.
2571
2572 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2573
2574         * ToolStrip.cs: Record if we were activated by mouse or keyboard.  Redraw
2575         when we are dismissed to clear keyboard mnemonics.
2576         * MenuStrip.cs, ToolStripDropDown.cs, ToolStripItem.cs, 
2577         ToolStripMenuItem.cs: Record if we were activated by mouse or keyboard.
2578         * ToolStripItemTextRenderEventArgs.cs: Draw mnemonic underlines if menu
2579         was activated by keyboard or the OS tells us to always draw them.
2580         * ToolStripManager.cs: Setup storage for activated by mouse or keyboard.
2581         [Fixes bugs #82376, #82377]
2582
2583 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2584
2585         * Control.cs: If no one accepts a mnemonic, let the MenuStrip have a 
2586         shot at having it because Alt was pressed.
2587         * MenuStrip.cs: When handling Alt, don't select a SystemMenuItem, select
2588         the first real menu item.
2589         * ToolStrip.cs: Don't crash when looking for a ToolStripItem to handle
2590         a mnemonic if Text is null.
2591         [Fixes bug #82374]
2592
2593 2007-08-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2594
2595         * ListView.cs: In ListViewItemCollection.AddItem, don't do a linear
2596         search do check whether the item is already contained in the
2597         collection or not; instead check if the owner of the item is the same
2598         as ours. Also, remove a redundant check in the same method. 
2599
2600 2007-08-08  Jonathan Pobst  <monkey@jpobst.com>
2601
2602         * Control.cs: Allow the clip region to be set back to null.
2603         * XplatUIWin32.cs: If we are sent a null clip region, use IntPtr.Zero.
2604         [Fixes button still showing up in bug #82370 when Show Through is turned off]
2605
2606 2007-08-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2607
2608         * GridEntry.cs: Add a null check.
2609         * PropertyGrid.cs: When checking for existing grid entries, ignore category
2610           entries. Fixes #82297.
2611
2612 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2613
2614         * OwnerDrawPropertyBag.cs: Make the serialization constructor protected
2615         for 2.0.
2616
2617 2007-08-07  Jonathan Pobst  <monkey@jpobst.com>
2618
2619         * ListBox.cs: Implement ScaleControl.
2620
2621 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2622
2623         * Form.cs: Add a few ActiveMenu null checks. ActiveMenu might be null if we
2624           have a menu strip.
2625         * MdiWindowManager.cs: Don't create a maximized menu if the child or it's
2626           parent has a menu strip. Fixes #81689.
2627
2628 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2629
2630         * ToolTip.cs: We don't get mouse events on all platforms in the exact same
2631           moments, so apply some fuzzy logic to determine if the mouse is still
2632           inside a control or not. Fixes #82288 (for the third time).
2633
2634 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2635
2636         * Control.cs: CreateControl: create implicit children as well. Fixes #82344.
2637           Don't create the child if it has been disposed already (may happen if
2638           the user closes the form the Load event).
2639
2640 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2641
2642         * ToolTip.cs: If ReshowDelay is 0, show the tooltip immediately. Fixes
2643           #82288.
2644
2645 2007-08-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2646
2647         * Control.cs: Add a null check in OnParentBindingContextChanged. The parent
2648           might call us after we've been destroyed, in which case our own private
2649           parent field is null. Fixes #82326.
2650
2651 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2652
2653         * ToolStripDropDown.cs: Fix a failing test on X11 by adding a null
2654         check for setting the dropdown's owner.
2655
2656 2007-08-06  Jonathan Pobst  <monkey@jpobst.com>
2657
2658         * MdiClient.cs: Fix some failing tests on X11 by adding a null check
2659         before removing system menu items.
2660
2661 2007-08-02  Jonathan Pobst  <monkey@jpobst.com>
2662
2663         * MdiClient.cs, MdiWindowManager.cs: Support 2.0 Mdi MenuStrip
2664         folding.
2665         * MdiControlStrip.cs: Added.  These are the menu items used in mdi
2666         folding.
2667         * ToolStrip.cs: Add a null check to mnemonics.
2668         * ToolStripDropDownMenu.cs: When using a SystemMenuItem, there is
2669         no ConnectedArea.
2670         [Fixes most of bug #81689]
2671
2672 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2673
2674         * PropertyGrid.cs: Add a null-check. Fixes #82289/SVGPad.
2675
2676 2007-08-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2677
2678         Use InitialDelay if ReshowDelay is zero. Fixes #82288.
2679
2680 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2681
2682         * DataGridViewCell.cs: EditType: returns
2683           DataGridViewTextBoxEditingControl always.
2684
2685 2007-08-01  Jonathan Pobst  <monkey@jpobst.com>
2686
2687         * TextRenderer.cs: Remove the LineLimit string format flag from the
2688         DrawString fallback method so that things like buttons that aren't
2689         tall enough to draw a full line will still draw part of the text.
2690         [Fixes part of bug #82272]
2691
2692 2007-08-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2693
2694         * DataGridView.cs: Implemented AutoResizeColumn(s).
2695         * DataGridViewCellStyle.cs: Added SetAlignment, fills in a StringFormat
2696           according to the Alignment.
2697         * DataGridViewColumnHeaderCell.cs, DataGridViewTextBoxCell.cs:
2698           Implement alignment and padding when painting.
2699         * DataGridViewRow.cs: SetValues: Don't create a cell if it already
2700           exists.
2701         * DataGridViewCell.cs: Implement BorderWidths in the most primitive
2702           way.
2703         * DataGridViewColumnCollection.cs: Raise OnColumnAdded on the DGV when
2704           a column is added.
2705
2706 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2707
2708         * TextBoxBase.cs: Use Control.ExplicitBounds instead of explicit_bounds,
2709         which is internal.
2710
2711 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2712
2713         * ToolStrip.cs: Stub out drag and drop methods, fix some corcompare stuff,
2714         hide GetPreferredSize from public API.
2715         * ToolStripDropDown.cs: Override AllowItemReorder, fix AccessibleObject.
2716         * ToolStripItem.cs: Stub out drag and drop methods and events.
2717         * ToolStripManager.cs: Stub out Save/LoadSettings.
2718         * ToolStripOverflow.cs: Use renamed ToolStrip.GetPreferredSize.
2719         * ToolStripPanel.cs: Fix corcompare error.
2720         * ToolStripPanelRow.cs: Use renamed ToolStrip.GetPreferredSize.
2721         * ToolStripSplitButton.cs: Fix AccessibleObject stuff.
2722         * ToolStripSplitStackLayout.cs: Use renamed ToolStrip.GetPreferredSize.
2723
2724 2007-07-31  Jonathan Pobst  <monkey@jpobst.com>
2725
2726         * TextBoxBase.cs: In our new GetPreferredSizeCore, return the explicit
2727         bounds height instead of PreferredHeight.  Puts things back the way 
2728         they were for height while still fixing the width.  Fixes broken unit
2729         tests.
2730
2731 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2732
2733         * Binding.cs: Implement 2.0 constructors and add a null check.
2734
2735 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2736
2737         * DataGridViewRowCollection.cs: Allow a null DGV in the constructor,
2738           and fix row index (off by one).
2739
2740 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2741
2742         * PropertyGridView.cs: Remove debug output.
2743
2744 2007-07-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2745
2746         * Control.cs: We need to reset the is_created flags when the handle is
2747           destroyed. Fixes #82187.
2748         * XplatUIWin32.cs: In GetWindowRect don't offset screen coordinates to
2749           client coordinates if the window doesn't have a parent.
2750           Win32GetParent returns the parent or the owner, and for top-level
2751           windows with no parent (but with an owner) we were calculating the
2752           location from the location of the owner.
2753         * Form.cs: Remove incorrect fix for #82187. Don't raise OnLoad if the
2754           form has been disposed.
2755         * MdiClient.cs: Add a null-check.
2756
2757 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2758
2759         * TextBoxBase.cs: TextBoxBase reports itself at AutoSize, but doesn't
2760         actually do auto-sizing.  Override the internal GetPreferredSizeCore 
2761         so we can provide an implementation that returns the current width
2762         and preferred height.  Allows anchor = right to work with TextBox 2.0.
2763         [Fixes bug #82233]
2764
2765 2007-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2766
2767         * ListView.cs: Add support for navigating items in Groups mode, by
2768         creating a big matrix containing all rows and cols of all groups. When
2769         are in other mode than Details, pressing Up should have a similar
2770         behaviour as that one of Down (moving to the next available column if
2771         current one doesn't have an item in the requested row). Also, don't
2772         proceed to use groups if ShowGroups is false.
2773         * ListViewGroup.cs: Add an internal int field to store the starting
2774         row of the group (used by the big matrix used for navigating the
2775         ListView).
2776         * ThemeWin32Classic.cs: Don't draw headers if ListView.ShowGroups is
2777         false.
2778
2779 2007-07-30  Jonathan Pobst  <monkey@jpobst.com>
2780
2781         * ToolStripDropDown.cs: When we do Show, start with the 
2782         DefaultDropDownDirection, but if our popup menu is going to off-screen,
2783         modify the direction to keep it on screen.  [Fixes bug #82210]
2784
2785 2007-07-29  Gert Driesen  <drieseng@users.sourceforge.net>
2786
2787         * FileDialog.cs: Accept any FilterIndex value, and store it
2788         unmodified. When FilterIndex is less than 1, or greater than number
2789         of filters, then default to first filter. Only add filter extension to
2790         file if user did not specifiy an extension. When type of dialog is
2791         OpenFileDialog and DefaultExt is set, then only use filter extension
2792         if: CheckFileExists is true and no file wih the default extension
2793         exists, or CheckFileExists is false, and user specified file does not
2794         exist. When CheckFileExists is true, then add first extension of 
2795         selected filter that matches existing file. Perform checks for
2796         existing file, overwrite and create after extension has been added to
2797         file name. When CheckFileExists is true and type is SaveFileDialog,
2798         then only consider first filter extension if DefaultExt is set.
2799         When CheckFileExists is true, then ignore DefaultExt if file with that
2800         extension does not exist. Also perform check for existing file when
2801         type is SaveFileDialog. Changed some field to constants.
2802
2803 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2804
2805         * ListView.cs: Take into account the region used by header
2806         control when doing the vertical scroll (this way we invalidate
2807         the precise area, and don't get any dirty one).
2808
2809 2007-07-27  Everaldo Canuto  <ecanuto@novell.com>
2810
2811         * FileDialog.cs: Check for valid filterIndex on button open/save. 
2812         Fixes #82184.
2813
2814 2007-07-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2815
2816         * ListView.cs: Update some layout calculations in details view
2817         and clean the code in a pair of assignations.
2818
2819 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2820
2821         * ComboBox.cs, ContainerControl.cs, DataGrid.cs, FontDialog.cs, Label.cs,
2822         LinkLabel.cs, ListBox.cs, ListView.cs, ListViewItem.cs, MessageBox.cs,
2823         MonthCalender.cs, StatusBar.cs, ThemeClearlooks.cs, ThemeWin32Class.cs,
2824         ToolBar.cs, TreeView.cs: First pass at using thread-safe string measuring.
2825
2826 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2827
2828         * TextRenderer.cs: Use [ThreadStatic] instead of locks to improve
2829         performance of thread-safe Graphic methods.  (Thanks rolf!)
2830
2831 2007-07-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2832
2833         * ListView.cs: When doing the layout calculations, don't calculate
2834         scroll bars before handle is created. This is unnecessary and also
2835         calculating them before handle creation item causes a number of random
2836         bugs (which begin to appear after Chris' big patch for handle creation
2837         fixes). 
2838
2839 2007-07-26  Jonathan Pobst  <monkey@jpobst.com>
2840
2841         * TextRenderer.cs: Create thread-safe versions of Graphics.MeasureString
2842         for things that don't have a Graphics object.  Currently, things just use
2843         the static Hwnd.bmp_g which is not thread safe.
2844
2845 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2846
2847         * Form.cs: ShowDialog: don't destroy handles if the dialog is a common
2848           dialog. Fixes #82187.
2849
2850 2007-07-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2851
2852         * DataGridViewElement.cs: Initialize state.
2853         * DataGridView.cs: Forward a few Mouse events to cells. Add
2854           GetRowInternal and GetCellInternal that doesn't unshare rows.
2855           Implement GetCellDisplayRectangle. HitTest: if the row is shared,
2856           don't use the index, but look it up. Add
2857           DataGridViewControlCollection.RemoveInternal to remove controls
2858           that Remove won't remove (scrollbars, edit control).
2859         * DataGridViewColumn.cs: Initialize State correctly.
2860         * DataGridViewColumnHeaderCell.cs, DataGridViewComboBoxCell.cs,
2861           DataGridViewHeaderCell.cs, DataGridViewRowHeaderCell.cs: Started
2862           implementing this.
2863         * DataGridViewRowCollection.cs: Implemented shared rows.
2864         * DataGridViewRow.cs: Throw exceptions as MS do.
2865         * DataGridViewCell.cs: A few properties are implemented by a
2866           Get<Property> method, so move implementation there and remove the
2867           NIEX in the method. Add a bunch of OnXInternal that DataGridView
2868           calls when necessary.
2869         * DataGridViewComboBoxEditingControl.cs: Remove a few NIEX'es that just
2870           complicates matters.
2871         * DataGridViewCellCollection.cs: Add a GetCellInternal that doesn't
2872           unshare any rows.
2873
2874 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2875
2876         * UpDownBase.cs: We cannot override SetBoundsCore for 2.0, which was relayout-ing
2877         the children controls.  Instead, we will just set up the proper docking for the
2878         children controls so we don't have to worry about it.  [Fixes bug #82188]
2879
2880 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2881
2882         * TreeView.cs, NodeLabelEditEventArgs.cs, LabelEditTextBox.cs: Support edit
2883         canceling and correct Before/AfterLabelEdit properties as layed out in bug
2884         81847.  [Fixes bug #81847]
2885
2886 2007-07-25  Jonathan Pobst  <monkey@jpobst.com>
2887
2888         * Label.cs: If AutoSize = true and a width or height is set, ignore it and
2889         redo the autosize.  VS2005 defaults to setting the AutoSize, and then setting
2890         an explicit size based on the design-time size of the text.  Since our fonts
2891         may not match this explicit size, we tend to cut off the ends of people's labels.
2892
2893 2007-07-24  Jonathan Pobst  <monkey@jpobst.com>
2894
2895         * Menu.cs: Add some missing methods to MenuItemCollection.
2896
2897 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2898
2899         * DataGridView.cs: Added RowTemplateFull, creates a row from the templates in the columns.
2900         * DataGridViewBand.cs: DefaultHeaderCellType: initialize correctly. Resizable: if not set, check DGV.
2901         * DataGridViewColumn.cs: InheritedAutoSizeMode: if not set, check DGV. Resizable: delegate to base class. ToolTipText: Never return null. Initialize a few other properties correctly.
2902         * DataGridViewColumnCollection.cs: Add: Default column is a TextBoxColumn.
2903         * DataGridViewComboBoxCell.cs: Started implementing this, lots left still.
2904         * DataGridViewElement.cs: State defaults to Visible.
2905         * DataGridViewRowCollection.cs: Add: creates the new row based on a template.
2906         * DataGridViewTextBoxColumn.cs: SortMode: delegate to base class, but initialize to Automatic. ToString: implement correctly.
2907
2908 2007-07-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2909
2910         * Control.cs: Minor 1.1 corcompare fix.
2911
2912 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2913
2914         * LinkLabel.cs, PrintPreviewDialog.cs, TabPage.cs, TextBox.cs,
2915         TextBoxBase.cs, ToolBar.cs: 2.0 corcompare work.
2916
2917 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2918
2919         * DataGridViewLinkColumn.cs, DataGridViewRowCollection.cs,
2920           DataGridViewImageColumn.cs, DataGridViewSelectedCellCollection.cs,
2921           DataGridViewComboBoxCell.cs, DataGridViewLinkCell.cs,
2922           DataGridViewSelectedColumnCollection.cs,
2923           DataGridViewSelectedRowCollection.cs: Corcompare work.
2924
2925 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2926
2927         * PrintDialog.cs: Stub UseEXDialog.  I chose to stub this because
2928         it is autoset by VS2005 designer and the effect is barely noticeable.
2929
2930 2007-07-23  Jonathan Pobst  <monkey@jpobst.com>
2931
2932         * TreeView.cs: Implement HitTest.
2933
2934 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2935
2936         * DataGridViewTextBoxCell.cs: Use DGV.EditControlInternal instead of
2937           manually adding and removing the control from the Controls
2938           collecftion.
2939         * DataGridView.cs: Implement DataGridViewControlCollection. Add an
2940           EditingControlInternal property that tracks the editing control.
2941           Always keeping the scrollbars in the Controls collection, as MS
2942           testing confirms is the right behaviour.
2943
2944 2007-07-23  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2945
2946         * ScrollableControl.cs: Fix implementation of AutoScrollPosition
2947           according to MSDN and new test.
2948
2949 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2950
2951         * TreeNode.cs: Implement ToolTipText.
2952         * TreeView.cs: Implement tooltips, NodeMouse* events.
2953
2954 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2955
2956         * TreeView.cs: Implement OnNodeMouseClick and OnNodeMouseDoubleClick.
2957
2958 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2959
2960         * TreeNode.cs: Implement ContextMenu, ContextMenuStrip, and Level.
2961         * TreeView.cs: Use the node's contextmenu[strip] if applicable.
2962
2963 2007-07-20  Ivan N. Zlatev  <contact@i-nz.net>
2964
2965         * Control.cs, Form.cs, ContainerControl.cs,
2966         ScrollableControl.cs, ButtonBase.cs:  Added ShouldSerialize
2967         for misc properties.
2968
2969 2007-07-20  Jonathan Pobst  <monkey@jpobst.com>
2970
2971         * TreeNode.cs: Implement StateImageIndex and StateImageKey.
2972         * TreeView.cs: Implement StateImageList.
2973
2974 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2975
2976         * Form.cs: Don't check if the current form is the active form before
2977           activating it. Fixes #81904.
2978
2979 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2980
2981         * Form.cs: Don't check if the current form is the active form before
2982           activating it. Fixes #81904.
2983
2984 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2985
2986         * TreeView.cs: Apply patch from Tyron (tmm@aon.at). Fixes #81847.
2987
2988 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2989
2990         * Form.cs: Don't try to position the form after loading if the form was
2991           disposed. Fixes #81969.
2992
2993 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2994
2995         * PropertyGrid.cs, PropertyGridView.cs: Implemented 2.0 methods and
2996           properties. Had to change ToolBar into ToolStrip, which required a
2997           few #ifs.
2998
2999 2007-07-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3000
3001         * PropertyGrid.cs: PropertyToolBar: Redraw the entire toolbar when it's
3002           resized, fixes part of #79829 (vertical lines in toolbar).
3003           PropertyGrid: Refactored Populate* to something that's easier to
3004           follow at least for me, as well as splitting it up into several new
3005           methods, required to update only subitems when something has
3006           changed by a popup editor or listbox. Don't use events to check
3007           when any values are changed, since the events are unreliable (we're
3008           changing the objects the events are registered with, and if the
3009           event handling requires the objects to be immutable (objects stored
3010           in hashtables for instance), the events will never be raised).
3011         * PropertyGridView.cs: Call PropertyGrid.PropertyValueChangedInternal
3012           everytime we change a value, since events are unreliable.
3013           DropDownButtonClicked: For the same reason don't compare objects to
3014           check if it has changed or not, it would require all objects to
3015           derive Equals. Fix dialog location on windows, MS is doing weird
3016           things when creating parented forms.
3017         * GridEntry.cs: Add a SelectedObject setter.
3018
3019 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
3020
3021         * TreeNode.cs: Add some corcompare attributes.
3022         * TreeNodeCollection.cs: Implement 2.0 stuffs.
3023         * TreeView.cs: Implement some 2.0 stuffs.
3024
3025 2007-07-18  Andreia Gaita  <avidigal@novell.com>
3026
3027         * WebBrowser.cs, WebBrowserBase.cs: add some more MonoTODOs now
3028         for moma.
3029
3030 2007-07-19  Jonathan Pobst  <monkey@jpobst.com>
3031
3032         * ListBox.cs: Implement custom tab offsets.
3033
3034 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3035
3036         * ToolStripContentPanel.cs: Support System renderer.
3037         * ToolStripControlHost.cs: Set RightToLeft to default to No.
3038
3039 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3040
3041         * ScrollableControl.cs: Don't mess up the user's explicit bounds.
3042
3043 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3044
3045         * CheckBox.cs: Chain TextAlign to base implementation instead of
3046         maintaining another one.
3047
3048 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3049
3050         * ButtonBase.cs: Fix an incorrect string constant.
3051
3052 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3053
3054         * TextRenderer.cs: Use the static Graphics context in Hwnd instead
3055         of creating one for measuring strings.
3056
3057 2007-07-18  Jonathan Pobst  <monkey@jpobst.com>
3058
3059         * ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownMenu.cs: 
3060         Implement MaxItemSize.
3061
3062 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3063
3064         * Control.cs: Remove per-control 1x1 Bitmap and Graphics context used
3065         for DeviceContext.  Instead, use the static one available in Hwnd.
3066         Informal tests show this saves about 500k on formtest.exe.
3067
3068 2007-07-17  Jonathan Pobst  <monkey@jpobst.com>
3069
3070         * ContainerControl.cs: Implement 2.0 AutoScaling.
3071
3072 2007-07-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3073
3074         * ComboBox.cs: Work around bug #82120 (bug in mcs).
3075
3076 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3077
3078         * ThemeWin32Classic.cs: Allow a Flat button to be Focused and Entered.
3079         Darken the focus color.
3080
3081 2007-07-16  Jonathan Pobst  <monkey@jpobst.com>
3082
3083         * ListBox.cs: When measuring items, if it's a CheckedListBox, add room
3084         for the checkbox.
3085         * ThemeWin32Classic.cs: Make the checkbox bigger in a CheckedListBox and use
3086         X, Y instead of a rect for drawing text.
3087         - For ControlPaint.DrawCheckBox, center the check a little better when the
3088         checkbox is odd width.  When drawing a flat checkbox, use a white background
3089         when state != inactive.
3090         [Fixes bugs #82097, 82100]
3091
3092 2007-07-16  Gert Driesen  <drieseng@users.sourceforge.net>
3093
3094         * ListControl.cs: When changing CurrencyManager, disconnect event
3095         handlers from previous one. Fixes bug #81771. Code formatting.
3096
3097 2007-07-15  Andreia Gaita <avidigal@novell.com>
3098
3099         * PrintPreviewControl.cs: Remove extraneous Invalidate calls. Separate
3100         full preview invalidation from layout invalidation, and only invalidate
3101         the layout when setting zoom or other properties. Invalidation should
3102         always be done even when resetting properties with the same values as
3103         what is there. Fixes #81744 and #79830.
3104
3105 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3106
3107         * ListView.cs: Implement initial support for Groups. Split some of the
3108         LayoutIcons code to render a partial list of the items (needed by
3109         items contained in ListViewGroup instances). Let the
3110         ListViewItemsCollection.ListView property be modifiable (needed when
3111         using Groups, too).
3112         * ListViewGroup.cs: Use a Bounds property rather than a Location
3113         one. Also invalidate the bounds when they get changed.
3114         * ThemeWin32Classic.cs: When drawing items, also draw the group header
3115         if ListView.Groups.Count is bigger than 0. Add a DrawListViewGroupHeader
3116         method as well.
3117
3118 2007-07-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3119
3120         * ListView.cs: When space gets pressed and CheckBoxes is true, 
3121         don't invoke the Begin and EndUpdate methods. We are generating 
3122         a redraw of the entire control without need to do so.
3123
3124 2007-07-13  William Holmes <billholmes54@gmail.com> 
3125
3126         * Control.cs: Changing logic in FindFlatForward and 
3127           FindFlatBackward to handle multiple Controls with 
3128           the same TabIndex.  
3129           This fixes bug 81687.
3130
3131 2007-07-13  Jonathan Pobst  <monkey@jpobst.com>
3132
3133         * OSFeature.cs: Enable IsPresent.
3134
3135 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3136
3137         * Control.cs: Don't do anything in WmShowWindow if the control has been
3138           disposed. We can get WM_SHOWWINDOW after a control is disposed: a
3139           control is created, put on a form, the control is disposed (the
3140           form is never shown), and then we get a MapNotify, triggering a
3141           WM_SHOWWINDOW.
3142         * Form.cs: Exclude the current form when sending Deactivate to all
3143           MdiChildren.
3144         * NativeWindow.cs: Set WindowCreating to null as soon as possible,
3145           there was a race condition because assigning the handle raises
3146           events, we can get more messages, therefore trying to assign the
3147           handle again, which would fail if any of those event handlers
3148           closed/disposed the control.
3149
3150 2007-07-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3151
3152         * Form.cs: Make the fix for #80775 windows-only (fixes #81957).
3153
3154 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3155
3156         * SystemInformation.cs, Theme.cs, XplatUI.cs, XplatUIDriver.cs,
3157         XplatUIWin32.cs: Implement SystemInformation 2.0 properties.
3158
3159 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3160
3161         * DateTimePicker.cs: If there's no part format specifier, return an
3162           empty string.
3163
3164 2007-07-12  Jonathan Pobst  <monkey@jpobst.com>
3165
3166         * FlatButtonAppearance.cs: Throw NotSupportedException for a
3167         Transparent BorderColor.
3168
3169 2007-07-12  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3170
3171         * DataGridView.cs, TextControl.cs, ProgressBar.cs, PrintDialog.cs,
3172           MessageBox.cs, ButtonBase.cs, PageSetupDialog.cs, NumericUpDown.cs,
3173           X11Dnd.cs, Binding.cs, DataGrid.cs, AxHost.cs,
3174           LinkLabelLinkClickedEventArgs.cs, TextRenderer.cs, Label.cs,
3175           LinkLabel.cs, TreeNode.cs, BindingSource.cs, TabPage.cs,
3176           TextBoxBase.cs, BindingNavigator.cs, Application.cs,
3177           ToolStripPanel.cs, TabControl.cs, ThemeClearlooks.cs, TreeView.cs:
3178           Remove warnings.
3179         * X11Structs.cs: Remove warnings, add ToString implementations.
3180
3181 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3182
3183         * XplatUIX11.cs: Translate min/max size according to the actual min/max
3184           size, and not the current size. Fixes #81798.
3185
3186 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3187
3188         * XplatUIX11.cs: Fix #80822 again (DefWndProc can be reached before
3189           XplatUI.CreateWindow returns, in which case the hwnd isn't assigned
3190           to the control yet).
3191
3192 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3193
3194         * PropertyGridTextBox.cs: Add a method that sends any forwarded
3195           mousedowns to the contained textbox.
3196         * X11Structs.cs: More ToString implementation.
3197         * PropertyGridView.cs: Forward any mousedowns to the textbox, fixes
3198           #81791.
3199
3200 2007-07-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3201
3202         * PropertyGridView.cs: Add a null-check, fixes a few tests.
3203
3204 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3205
3206         * TableLayoutPanelCellPosition.cs: TypeConverter.
3207
3208 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3209
3210         [ Fixes #79761]
3211         
3212         * PropertyGridTextBox.cs: Propagate any color changes to all contained
3213           controls.
3214         * PropertyGridView.cs: A few color fixes.
3215
3216 2007-07-10  Jackson Harper  <jackson@ximian.com>
3217
3218         * TextControl.cs: Remove some old unused text formatting stuff.
3219
3220 2007-07-10  Jackson Harper  <jackson@ximian.com>
3221
3222         * TreeView.cs: Update full row select invalidation to match the
3223         newer DrawSelection... method.
3224         - Make sure to invalidate the entire width when selecting a new
3225         node, if we have full row selection enabled.
3226
3227 2007-07-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3228
3229         * PropertyGridView.cs: Fix for #81800, makes text show up on initial
3230           display of properties again.
3231
3232 2007-07-10  Jonathan Pobst  <monkey@jpobst.com>
3233
3234         * ListBox.cs: Add IntegerCollection and Add, Clear, Remove
3235         to existing collections.
3236
3237 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3238
3239         * AccessibleObject.cs, RadioButton.cs: Fix some base classes
3240         that changed between 1.1 and 2.0.
3241
3242 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3243
3244         * PowerStatus.cs: Added.  This is just a data class, it is filled
3245         in by SystemInformation.
3246
3247 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3248
3249         * Message.cs: Add op_Equality and op_Inequality.
3250
3251 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3252
3253         * MenuStrip.cs: Finish corcompare work.
3254
3255 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3256
3257         * LinkArea.cs: Add op_Equality and op_Inequality.
3258
3259 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3260
3261         * Application.cs: Add MessageLoopCallback delegate.
3262
3263 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3264
3265         * ListBox.cs: First set of 2.0 stuffs.
3266
3267 2007-07-09  Jonathan Pobst  <monkey@jpobst.com>
3268
3269         * Control.cs: Make an internal Height property we can override
3270         without messing up the public API.
3271         * ListBox.cs: Override HeightInternal to always return the size
3272         the user set.  [Fixes bug #80466]
3273
3274 2007-07-08  Jonathan Pobst  <monkey@jpobst.com>
3275
3276         * TableLayoutPanel.cs: Add a null check so we don't NRE trying to
3277         paint cell borders if we haven't calculated where they go yet.
3278         [Fixes bugs #82040 and #82041]
3279
3280 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3281
3282         * ListView.cs: In Details view, set the location of item_control
3283         in the (0,0) position (and the header_control is thus on the
3284         item_control). This way the Bounds of the Items are relative to the
3285         ListView control (before this, they had a Bounds value without the
3286         header_control offset, which wasn't matching .Net). Fixes #82004.
3287
3288 2007-07-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3289
3290         * ListControl.cs: When DataSource is set to null, pass an empty
3291         array of object to SetItemsCore. This is done to clean the items
3292         in the ListContol children. Fixes #81788.
3293
3294 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3295
3296         * ListControl.cs: Add 2.0 stuffs.
3297
3298 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3299
3300         * Label.cs: Finish up 2.0 stuffs.  Replace calls to Refresh with Invalidate,
3301         Refresh is overkill for just about every repaint request.
3302
3303 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3304
3305         * ToolStripItem.cs: TextDirection getter handles looking up Inherit for us,
3306         so remove my custom Get method and fix the property getter.
3307
3308 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3309
3310         * Label.cs: DefaultMargin for 2.0.
3311
3312 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3313
3314         * ComboBox.cs: Override IsInputCharInternal and return true.  Fixes 
3315         reported issue where other controls with mnemonics would steal strokes
3316         from a selected ComboBox.
3317
3318 2007-07-06  Jonathan Pobst  <monkey@jpobst.com>
3319
3320         * ScrollOrientation.cs: Make internal for 1.1.
3321         * ScrollEventArgs.cs: Add 2.0 stuffs.
3322
3323 2007-07-05  Jonathan Pobst  <monkey@jpobst.com>
3324
3325         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3326         ToolStripItem.cs, ToolStripItem.cs, ToolStripItemTextRenderEventArgs.cs,
3327         ToolStripRenderer.cs, ToolStripSeparator.cs: Implement TextDirection.
3328
3329 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3330
3331         * ListViewItem.cs: Implement the small 2.0 GetSubItemAt method.
3332
3333 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3334
3335         * ListView.cs: Implement the so-incredibly broken 2.0 
3336         VirtualItemsSelectionRangeChanged event.
3337
3338 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3339
3340         * ListView.cs: When enter is pressed and selection is non empty,
3341         an OnItemActivate event must be fired.
3342
3343 2007-07-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3344
3345         * ListView.cs: Store the FocusedItem information as an
3346         int instead of a ListViewItem (needed by VirtualMode).
3347         Update the calls to SetFocusedItem to pass an index instead of
3348         an item.
3349         * ListViewItem.cs: Likewise. Also, in VirtualMode retrieve
3350         the Focused state from the owner ListView. 
3351
3352 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3353
3354         * ListView.cs: Set ListView.focused_item from ListViewItem.Focused
3355         property. Also, invalidate previous focused item in the mentioned
3356         property (match .Net).
3357
3358 2007-07-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3359
3360         * ListView.cs: Implement 2.0 FocusedItem property setter.
3361
3362 2007-07-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3363
3364         * ListView.cs: Implement 2.0 TopItem property setter.
3365
3366 2007-07-03  Jonathan Pobst  <monkey@jpobst.com>
3367
3368         * StatusStrip.cs: The default renderer is System.
3369         * ToolStrip.cs, ToolStripManager: Now that we have System renderer, use it 
3370         if the user specifies it.
3371         * ToolStripDropDown.cs: Don't reset our Renderer on changing OwnerItem
3372         if we are ManagerRenderMode.
3373         * ToolStripMenuItem.cs: Calculate our text color better.
3374         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Move some stuff
3375         from Professional to the base class based off working with the System renderer.
3376         * ToolStripSystemRenderer.cs: Added.
3377
3378 2007-07-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3379
3380         * ListView.cs: I'm so lame - the real name is HitTest, not HitInfo.
3381
3382 2007-07-02  Jonathan Pobst  <monkey@jpobst.com>
3383
3384         * ToolTip.cs: Implement 2.0 Tag property.
3385
3386 2007-06-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3387
3388         * ListView.cs: Implement 2.0 HitTest methods.
3389
3390 2007-06-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3391
3392         * ListViewItem.cs: Add a 2.0 bool Hot property, to tell whether the
3393         item is under the pointer or not (sugar). Also remove the TODO
3394         regarding to the cursor changes in OneClick activation.
3395         * ThemeWin32Classic.cs: When HotTracking is true and we are drawing
3396         the subitems use the parent's HotFont if UseItemStyleForSubItems is
3397         true; otherwise don't show the underline style.
3398
3399 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3400
3401         * ListView.cs: In ItemControl.ItemsMouseMove, refactor
3402         the code to retrieve the item at position only one time. Also
3403         change cursor when Activation is ItemActivation.OneClick as well
3404         as invalidate the item if HotTracking is true (to show/hide the
3405         underline style). Add an internal HotItemIndex property to retrieve
3406         the current hot item's index.
3407         * ListViewItem.cs: Add an internal HotFont property to cache the
3408         font used when HotTracking is true and the pointer moves within the
3409         item's borders.
3410         * ThemeWin32Classic.cs: When drawing the item's text, use Font or
3411         HotFont depending on the hot state of the item.
3412
3413 2007-06-22  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3414
3415         * ListView.cs: Implement 2.0 HotTracking property.
3416
3417 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3418
3419         * ToolStripControlHost.cs: If our hosted control never got created,
3420         don't try to dispose it.  [Fixes bug #81909]
3421
3422 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3423
3424         * TableLayoutPanel.cs: Implement ScaleCore, ScaleControl.
3425
3426 2007-06-21  Jonathan Pobst  <monkey@jpobst.com>
3427
3428         * TableLayoutPanel.cs: Implement CellBorderStyle.  [Fixes bug #81884]
3429
3430 2007-06-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3431
3432         * ThemeWin32Classic.cs: In OwnerDraw mode draw subitems only for 
3433         Details view.
3434         * DrawListViewColumnHeaderEventArgs.cs:
3435         * DrawListViewSubItemEventArgs.cs: Add padding to the bounds when drawing text
3436         using the DrawText () methods.
3437
3438 2007-06-19  Jonathan Pobst  <monkey@jpobst.com>
3439
3440         * ToolStripProfessionalRenderer.cs: Put back clearing a ToolStripDropDown's
3441         background which got erased in my changes yesterday.
3442
3443 2007-06-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3444
3445         * ListViewItem.cs: Actually set bounds for subitems in Details view
3446         (2.0 feature).
3447         * ThemeWin32Classic.cs: Refactor the drawing code for subitems, so we
3448         can invoke from the owner draw routines if we need it. Also, add
3449         support for Owner draw in Details view.
3450
3451 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3452
3453         * ToolStripDropDownMenu.cs, ToolStripItem.cs, ToolStripLabel.cs,
3454         ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs: Respect the
3455         ShowImageMargin setting, properly align text in a ToolStripLabel
3456         hosted on a ToolStripDropDown.
3457
3458 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3459
3460         * ToolStrip.cs, ToolStripContentPanel.cs, ToolStripDropDownMenu.cs,
3461         ToolStripProfessionalRenderer.cs: Refactor and clean up some rendering code.
3462
3463 2007-06-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3464
3465         * DrawListViewSubItemEventArgs.cs: Actually implement its methods.
3466
3467 2007-06-18  Jonathan Pobst  <monkey@jpobst.com>
3468
3469         * ToolStripLabel.cs: If the label is on a dropdown, adjust the text
3470         location to match ToolStripMenuItems.
3471
3472 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3473
3474         * DrawListViewColumnHeaderEventArgs.cs:
3475         * ThemeWin32Classic.cs: Implement 2.0 OwnerDraw support for
3476         column headers in ListView. 
3477
3478 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3479
3480         * UserControl.cs: Implement AutoSize.
3481
3482 2007-06-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3483
3484         * DrawListViewItemEventArgs.cs:
3485         * ListView.cs:
3486         * ThemeWin32Classic.cs: Implement basic support for 2.0 OwnerDraw in
3487         ListView.
3488
3489 2007-06-15  Jonathan Pobst  <monkey@jpobst.com>
3490
3491         * ToolStripDropDownItemAccessibleObject.cs: Added.
3492         * ToolStripDropDownItem.cs, ToolStripItem.cs, ToolStripMenuItem.cs,
3493         ToolStripOverflow.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3494         ToolStripProgressBar.cs, ToolStripSeparator.cs, ToolStripSplitButton.cs,
3495         ToolStripTextBox.cs: corcompare work.
3496
3497 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3498
3499         * OSFeature.cs, StatusStrip.cs, TabControl.cs, TableLayoutSettings.cs,
3500         TableLayoutStyle.cs, TableLayoutCollection.cs, ToolStripContentPanel.cs,
3501         ToolStripControlHost.cs, ToolStripDropDown.cs, ToolStripDropDownButton.cs:
3502                 corcompare.
3503
3504 2007-06-14  Jonathan Pobst  <monkey@jpobst.com>
3505
3506         * OSFeature.cs: Add IsPresent.
3507         * PrintPreviewControl.cs: Add RightToLeft.
3508         * SplitContainer.cs: Add AutoScrollOffset, ScaleControl.
3509         * SplitterPanel.cs: Add AutoSizeMode.
3510
3511 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3512
3513         * LayoutEventArgs.cs: Add 2.0 AffectedComponent.
3514         * MdiClient.cs: Add 2.0 ScaleControl.
3515         * NativeWindow.cs: Implement 2.0 interface IWin32Window.
3516         * NumericUpDownAccelerationCollection.cs: Add [ListBinding].
3517
3518 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3519
3520         * Form.cs: Implement some scaling methods, stub some RTL methods,
3521         corcompare work.
3522
3523 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3524
3525         * Control.cs: corcompare work.
3526         * FlatButtonAppearance.cs, FolderBrowserDialog.cs: Add TypeConverters.
3527
3528 2007-06-13  Jonathan Pobst  <monkey@jpobst.com>
3529
3530         * ControlPaint.cs, Theme.cs, ThemeWin32Classic.cs: Implement
3531         ControlPaint 2.0 stuffs.
3532
3533 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3534
3535         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
3536
3537 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3538
3539         * UpDownBase.cs: Add 2.0 stuffs.
3540
3541 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3542
3543         * NumericUpDown.cs: Add 2.0 stuffs.
3544
3545 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3546
3547         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
3548
3549 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3550
3551         * ErrorProvider.cs: Implement 2.0 stuffs.
3552
3553 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3554
3555         * DomainUpDown.cs: Implement 2.0 stuffs.
3556
3557 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3558
3559         * CheckedListBox.cs: Fix RefreshItems signature.
3560
3561 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
3562
3563         * PictureBox.cs: Implement 2.0 stuffs.
3564
3565 2007-06-12  Andreia Gaita  <avidigal@novell.com>
3566         
3567         * TabControl.cs: Check if there are tabpages before checking
3568         the selected index - fix #81802 (font changes raise a ResizeTabs
3569         call on controls.add, which blew up nicely with no tabpages)
3570
3571 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3572
3573         * ListView.cs:
3574         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
3575
3576 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3577
3578         * ListView.cs:
3579         * ListViewItem.cs: In VirtualMode the selection information
3580         resides in the ListView, rather than in the Items. Also, throw
3581         InvalidOperationExceptions when VirtualMode is being used and
3582         CheckedItemCollection is accessed.
3583
3584 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3585
3586         * ComboBox.cs: Add ScaleControl.
3587
3588 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3589
3590         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
3591
3592 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3593
3594         * GroupBox.cs: Add 2.0 stuffs.
3595
3596 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
3597
3598         * Panel.cs: Add autosize properties/event.
3599
3600 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3601
3602         * Control.cs:
3603         - When we remove a control, remove it from the collection before performing the layout.
3604         - Setup an internal property for explicit_bounds.
3605         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
3606         - Perform a layout when we set a new AutoSizeMode.
3607
3608 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
3609
3610         * ScrollableControl.cs: Add 2.0 stuffs.
3611
3612 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3613
3614         * ScrollBar.cs: Add 2.0 stuffs.
3615
3616 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3617
3618         * Splitter.cs: Add 2.0 stuffs.
3619
3620 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3621
3622         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
3623         to have BindingContext simply use base implementation.
3624
3625 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3626
3627         * ColumnHeader.cs: corcompare fix.
3628
3629 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3630
3631         * Button.cs: corcompare fixes.
3632         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
3633
3634 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
3635
3636         * Button.cs: Override GetPreferredSizeCore.
3637         * ButtonBase.cs: PerformLayout after changing properties that can affect
3638         AutoSize.  Simplify some mouse/keyboard code.
3639         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
3640         * MouseEventArgs.cs: Make Location internal for 1.1.
3641         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
3642         * Theme.cs: Add CalculateButtonAutoSize.
3643         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
3644
3645 2007-06-05  Miguel de Icaza  <miguel@novell.com>
3646
3647         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
3648
3649 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3650
3651         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
3652         since we can get different item instances every time we retrieve it.
3653
3654 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3655
3656         * ListView.cs: Work around for #81602, since an unkown an pretty
3657         infrequent condition appears only in some systems (old linux boxes, it
3658         seems).
3659
3660 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3661
3662         * Button.cs: Completely reformat and a little refactor to bring
3663         this closer to Mono circa 2007.
3664
3665 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3666
3667         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
3668         to be ButtonBase.Invalidate.
3669
3670 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3671
3672         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
3673
3674 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
3675
3676         * ButtonBase.cs: Completely reformat and a little refactor to bring
3677         this closer to Mono circa 2007.
3678
3679 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
3680
3681         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
3682         values for autosize. Fixes #80137.
3683
3684 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3685
3686         * Control.cs: Don't perform layout when AutoSize changes.
3687         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
3688         directly when autosizing, use SetBounds with BoundsSpecified.None.
3689         Fixes unit tests my last commit broke.
3690
3691 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3692
3693         * Control.cs: Perform layout when AutoSize changes.
3694         * Form.cs: Implement AutoSizing.
3695
3696 2007-06-01  Chris Toshok  <toshok@ximian.com>
3697
3698         * DataGrid.cs: remove the XXX'ed check at the top of
3699         ProcessGridKey.  fixes #80464.
3700
3701 2007-06-01  Chris Toshok  <toshok@ximian.com>
3702
3703         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
3704         adding idempotent (add/remove in Edit()), and also make sure we
3705         don't add it until after we set the text, so it's not tripped in
3706         Edit().  Fixes unit test regression.
3707
3708 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
3709
3710         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
3711         change is user explicit, not when the layout engine moves stuff.  Fixes
3712         anchoring to bottom and right.  [Fixes bug #81790]
3713
3714 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3715
3716         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
3717
3718 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3719
3720         * ContainerControl.cs: 
3721         Fire enter event for common ancestor if it is not a ContainerControl.
3722         Send focus to the active_control and not the 'value', the active 
3723         control might have been changed in one of the events fired.     
3724         Definitely fixes #80159.
3725
3726 2007-06-01  Andreia Gaita  <avidigal@novell.com>
3727
3728         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
3729
3730 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3731
3732         * PropertyGrid.cs: Anchor the help description to the bottom of the
3733           help panel and refactor SelectGridItem into a
3734           SelectGridItemInternal that can be set to null (and update it to
3735           clear the help texts when it is set to null). Set root item to null
3736           when there's no SelectedObject. Fixes #80438.
3737         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
3738           when we're recalculating after a resize (only).
3739
3740 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3741
3742         * ListView.cs: Implement 2.0 RedrawItems method.
3743
3744 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3745
3746         * ListControl.cs: Disconnect PositionChanged and ItemChanged
3747         handlers from previous data manager when DataSource is set to
3748         null. Fixes #81771.
3749
3750 2007-05-31  Jackson Harper  <jackson@ximian.com>
3751
3752         * TextBoxBase.cs: These seem to be the correct values.
3753
3754 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
3755
3756         * FileDialog.cs: When close dialog with ok set filterindex using combobox
3757         value. Fixes #81784.
3758
3759 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
3760
3761         * Control.cs: Implement 2.0 scaling methods.
3762
3763 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3764
3765         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
3766           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
3767           corcompare issues.
3768
3769 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3770
3771         * ProgressBar.cs: Implemented missing 2.0 members.
3772
3773 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3774
3775         * Control.cs: Corcompare issues.
3776         * MessageBox.cs: Implemented missing 2.0 functions.
3777
3778 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3779
3780         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
3781           Implemented more 2.0 members.
3782
3783 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3784
3785         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
3786           null (strange, but it seems to happen when running unit tests).
3787
3788 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3789
3790         * ContainerControl.cs: Set active_control even earlier, before 
3791         firing any events, and undo it if validation returns false.
3792
3793 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3794
3795         * ContainerControl.cs: Raise Validation and Enter/Leave events
3796         even if there is no Form and set active_control earlier, just
3797         before firing Enter events (toshok's patches). Fixes #80647.
3798
3799 2007-05-30  Jackson Harper  <jackson@ximian.com>
3800
3801         * TextControl.cs: Redid the pageup/pagedown a little to simplify
3802         things and fix bug #81311.
3803
3804 2007-05-30  Jackson Harper  <jackson@ximian.com>
3805
3806         * X11Dnd.cs: Now that we have our own event loop, we need to
3807         cancel when we get a mouseup but it won't be accepted.
3808
3809 2007-05-30  Chris Toshok  <toshok@ximian.com>
3810
3811         * DataGrid.cs (set_CurrentCell): guard against negative
3812         column/row.
3813
3814         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
3815         array index syntax instead of looping over the property names.
3816
3817         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
3818         and set IsInEditOrNavigateMode to false there.
3819
3820 2007-05-30  Jackson Harper  <jackson@ximian.com>
3821
3822         * TreeView.cs: Make sure we don't get a bad visible order when
3823         setting to the top node.  Fixes some misc crashing in
3824         ControlInspector.
3825
3826 2007-05-30  Andreia Gaita  <avidigal@novell.com>
3827
3828         * UserControl.cs: Add 2.0 AutoSizeMode
3829
3830 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3831
3832         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
3833
3834 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3835
3836         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
3837         lines. Fixes #80285. 
3838
3839 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3840
3841         * DataGridColumnStyle.cs: Add char trimming column header text format. 
3842
3843 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
3844
3845         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
3846         Fixes #80147.
3847
3848 2007-05-29  Jackson Harper  <jackson@ximian.com>
3849
3850         * TreeNode.cs: Fix off by one on calculating whether or not a node
3851         is visible.
3852
3853 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
3854
3855         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
3856         * ScrollableControl.cs: Force an UpdateDistances when we move the
3857         scrollbars.
3858         [Fixes bug #80605]
3859
3860 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3861
3862         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
3863         update the page setup screen.
3864
3865 2007-05-29  Andreia Gaita  <avidigal@novell.com>
3866
3867         * PageSetupDialog.cs: Fix landscape mode.
3868
3869 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3870
3871         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
3872         IconSizeHorizontalSpacing.
3873
3874 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3875
3876         * ListView.cs: The declaration of prev_tooltip_item should be inside
3877         a NET_2_0 conditional (avoid a warning).
3878
3879 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3880
3881         * PageSetupDialog.cs: Implement PrintPreview control to display
3882         the preview thumbnail. Change unit conversion to use 
3883         PrinterUnitConvert methods.
3884         
3885         Note: there is a huge bug in ms.net where the default margins are 
3886         interpreted as centimeters (?), when in fact they are set in inches. When 
3887         loading the page setup dialog initially (ms.net), the default margins 
3888         are set to 1 inch, and the dialog shows them with value 10, when in fact 
3889         it should be 25 (properly converted). Our dialog doesn't have this bug.
3890         
3891         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
3892         RectangleF.
3893         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
3894
3895 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3896
3897         * ListView.cs:
3898         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
3899         items.
3900
3901 2007-05-28  Andreia Gaita  <avidigal@novell.com>
3902
3903         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
3904         an IntPtr on csc (it builds fine on mcs, could it be a compiler
3905         bug?), convert the ptr to Int32 first.
3906
3907 2007-05-28  Jackson Harper  <jackson@ximian.com>
3908
3909         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
3910         recieved, we will exit the dnd tracking loop.
3911
3912 2007-05-28  Jackson Harper  <jackson@ximian.com>
3913
3914         * X11Dnd.cs: Keep tracking until the xdnd finished event is
3915         recieved. TODO: I should probably stick a timer on the dropped
3916         event, and finish the drag if the XDND Finished event never shows
3917         (because some apps don't seem to send it).
3918
3919 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
3920
3921         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
3922         #81733.
3923
3924 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3925
3926         * MonthCalendar.cs: Only mark the keypresses we actually handle as
3927           handled.
3928
3929 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3930
3931         * MonthCalendar.cs: Set the size after initializing all the relevant
3932           variables. Fixes #81742.
3933
3934 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3935
3936         * KeyEventArgs.cs: Fix typo.
3937
3938 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
3939
3940         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
3941         to match MS. Fixed MinDate to only accept value less than or equal
3942         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
3943         Removed TODO's that are now verified by unit tests.
3944
3945 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
3946
3947         * TreeNodeCollection.cs: Minor corrections to exceptions to match
3948         MS.
3949
3950 2007-05-25  Jackson Harper  <jackson@ximian.com>
3951
3952         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
3953         it's own message loop.
3954         * XplatUIX11.cs: Remove some of the dnd hooks
3955
3956 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
3957
3958         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
3959         instead of MinimizedWindowSize.
3960
3961 2007-05-25  Jackson Harper  <jackson@ximian.com>
3962
3963         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
3964
3965 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3966
3967         * KeyEventArgs.cs: Added SuppressKeyPress.
3968         * Control.cs: Added support for SuppressKeyPress.
3969
3970 2007-05-24  Andreia Gaita  <avidigal@novell.com>
3971
3972         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
3973         problems with PieChart. suppress_validation should not be a counter,
3974         if there are several BeginInit calls, the first EndInit will 
3975         activate validation. Fix exceptions thrown by set_Value.
3976         * UpDownBase.cs: ValidateText only if it's the user editing it.
3977
3978 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3979
3980         * ListControl.cs: FilterItemOnProperty should return the filtered
3981         item proeprty even if DataSource is null. The same applies for
3982         GetItemText. Fixes #80427.
3983
3984 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3985
3986         * Control.cs: If a control doesn't have a parent when it's Dock is
3987         set, but it has children, it needs to do a layout.  Fixes some nested
3988         controls issues.  [Fixes bug #81199]
3989
3990 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3991
3992         * ComboBox.cs: If there are few items in the drop down list, make it
3993           the exact size the items need, no bigger. Fixes #81612.
3994
3995 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
3996
3997         * Application.cs: When we have captured the keyboard for a menu,
3998         check for mouse down events in case we need to close the menu.
3999         * Control.cs, Form.cs: Remove mouse down checks for menus.
4000
4001 2007-05-24  Jackson Harper  <jackson@ximian.com>
4002
4003         * TextControl.cs: Handle tabs in non multiline mode a little
4004         differently.
4005
4006 2007-05-24  Jackson Harper  <jackson@ximian.com>
4007
4008         * TextControl.cs: We need to manually break apart tabbed text and
4009         move the tabs, since the system.drawing tabbing mechanism relies
4010         on tab stops.
4011         * TextBoxBase.cs: Move the caret properly when the user enters a
4012         tab.
4013
4014 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
4015
4016         * ContainerControl.cs: Don't check CanSelect before calling
4017         ProcessMnemonic.
4018         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
4019         release a KeyboardActive on click if it's not ours.
4020
4021 2007-05-23  Andreia Gaita  <avidigal@novell.com>
4022
4023         * ColumnHeader.cs: Add TypeConverter
4024
4025 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4026
4027         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
4028
4029 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4030
4031         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
4032
4033 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4034
4035         * LinkLabel.cs: Implement public Padding property.
4036
4037 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4038
4039         * LinkLabel.cs: Implement public FlatStyle.
4040
4041 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
4042
4043         * Control.cs: Apply patch from George to call parent.PerformLayout
4044         when Visible is changed.  [Fixes bugs #81118, 81718]
4045
4046 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4047
4048         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
4049
4050 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4051
4052         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
4053
4054 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
4055
4056         * ContextMenu.cs: Implement Collapse.
4057
4058 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
4059
4060         * ToolBarButton.cs: Implement Name.
4061
4062 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4063
4064         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
4065         use current_item, it prevents some NRE. Fixes #81675.  
4066
4067 2007-05-22  Andreia Gaita  <avidigal@novell.com>
4068
4069         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
4070         without updating the text.
4071
4072 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4073
4074         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
4075         without calling DeleteObject.  [Should fix bug #81709]
4076
4077 2007-05-22  Jackson Harper  <jackson@ximian.com>
4078
4079         * RichTextBox.cs: Set the line endings correctly, when flushing
4080         RTF text.
4081
4082 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
4083
4084         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
4085          {Width=0,Height=0}.
4086
4087 2007-05-22  Jackson Harper  <jackson@ximian.com>
4088
4089         * TreeView.cs: Setting top with a null node should set to the very
4090         top.
4091
4092 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4093
4094         * Form.cs: ShowDialog: destroy the handle when message loop is
4095           finished, matches MS behaviour. Refactor parts of WmClose into
4096           RaiseCloseEvents, that only raises events if they haven't already
4097           been raised. Fixes #81688 and #81521.
4098         * Application.cs: Don't call close on the form when exiting a modal
4099           loop, it will raise all the (Form)Closed/Closing events again if
4100           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
4101           which doesn'r raise any events it they have been raised before.
4102
4103 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
4104
4105         * Control.cs: Add OnPrint.
4106         * ToolStrip.cs: Add GetChildAtPoint.
4107         * ToolStripContainer.cs: Add OnRightToLeftChanged.
4108         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
4109
4110 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
4111
4112         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
4113
4114 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4115
4116         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
4117           isn't visible anymore. Fixes #81651.
4118
4119 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4120
4121         * Control.cs: WmShowWindow: Update children's z-order after setting
4122           their parent. SetParent may show the window, thereby corrupting
4123           z-order, since the window will be shown on top.
4124         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
4125           multiple (and redundant) WM_SHOWWINDOW messages.
4126         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
4127           event has already been raised.
4128         * Form.cs: Change is_changing_visible_state to a counter, since
4129           SetVisibleCore can be called recursively. CreateHandle: when
4130           creating mdi children, send (De)Activated events.
4131         * MdiClient.cs: Update use of is_changing_visible_state.
4132         * Application.cs: OnThreadException: Surround exception handling with
4133           try/finally to ensure we always reset the error-handling state
4134           before leaving.
4135
4136 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4137
4138         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
4139           (#81704).
4140
4141 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4142
4143         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
4144         SmallIcon views, now that we have a standarized horizontal spacing.
4145
4146         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
4147         4, just like the other views (Match .Net).
4148
4149 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
4150
4151         * Control.cs: Delay calculating anchor distances until we actually layout.
4152         Always query the WM for the actual size and location it put us at instead of
4153         only when we send negative values.
4154         [Fixes bugs #81694, 81695]
4155
4156 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4157
4158         * Application.cs: Avoid a possible stack overflow when trying to exit
4159           the application.
4160
4161 2007-05-19  Marek Safar  <marek.safar@gmail.com>
4162
4163         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
4164         enum value.
4165
4166 2007-05-19  Andreia Gaita  <avidigal@novell.com>
4167
4168         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
4169         * NumericUpDownAcceleration.cs, 
4170           NumericUpDownAccelerationCollection.cs: Added 2.0
4171           implementation.
4172
4173 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4174
4175         * RichTextBox.cs: Recalculate the document after the ScrollBars
4176         property is changed. Fixes bug #81681.
4177
4178 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4179
4180         * DataObject.cs: Implement 2.0 methods.
4181
4182 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4183
4184         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
4185         in the center of the checkbox, not in the left-top corner. 
4186         Fixes #80037.
4187
4188 2007-05-18  Jackson Harper  <jackson@ximian.com>
4189
4190         * RichTextBox.cs: Recalculate the document after the scrollbars
4191         property is changed.
4192         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
4193         81486.
4194
4195 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4196
4197         * CreateParams.cs: Make HasWindowManager marginally faster.
4198         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
4199           into Hwnd so that other drivers can use it as well.
4200         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
4201           the default location from Hwnd. Fixes MDI client windows always
4202           showing up at (0,0) in Windows (Win32 won't set the default
4203           location since the window styles aren't correct).
4204
4205 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
4206
4207         * TreeView.cs: Modified DoubleBuffered to just use the base
4208         implementation.
4209
4210 2007-05-18  Jackson Harper  <jackson@ximian.com>
4211
4212         * TreeView.cs: Set the top node to the last child node when
4213         expanding all
4214         - When we get focus, if there is no selected node, use the top
4215         node.
4216
4217 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
4218
4219         * KeysConverter.cs: Add CanConvertTo.
4220         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
4221         * LinkConverter.cs: Added.
4222
4223 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4224
4225         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
4226         it prevents error when file dont have write access. Fixes #81669 and #81667.  
4227
4228 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4229
4230         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
4231         button text. Fixes #79640.  
4232
4233 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4234
4235         * Control.cs: According to MSDN controls created in the designer theres 
4236         keyboard accelerators visible by default. So included check for design
4237         in ShowKeyboardCuesInternal.  
4238
4239 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4240
4241         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
4242         text. Fixes #81621.  
4243
4244 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
4245
4246         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
4247         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
4248
4249 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4250
4251         * Control.cs: Finish implementation of UI State using WmChangeUIState
4252         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
4253         in some controls to check for show_keyboard_cues to draw accell keys "_".  
4254
4255 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4256
4257         * ListBox.cs: When calculating the horizontal scrollbar
4258         in single column mode, don't use values less than 0 for
4259         Maximum. Fixes #81474.
4260
4261 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4262
4263         * ListBox.cs: Throw the some missing exceptions in
4264         ListBox.ObjectCollection methods.
4265
4266 2007-05-17  Jackson Harper  <jackson@ximian.com>
4267
4268         * TextBoxBase.cs: Recalculate the document when the word wrap
4269         value has changed. This fixes 81488.
4270
4271 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4272
4273         * Clipboard.cs: Implement missing GetText overload.
4274
4275 2007-05-17  Chris Toshok  <toshok@ximian.com>
4276
4277         * Control.cs (CheckDataBindings): remove the binding_context arg
4278         to binding.Check.
4279
4280         * CurrencyManager.cs (OnItemChanged): fix this now that
4281         BindingManagerBase is fixed. also remove the comment telling where
4282         the fix should go.  We set transfering_data to true/false around
4283         the call to PushData to keep UpdateIsBinding from being called.
4284         (ListChangedHandler): remove the extra OnMetaDataChanged call for
4285         PropertyDescriptorAdded in the 1.1 case.  The extra call is
4286         actually generated by System.Data generating 2 metadata changed
4287         events of its own per column add.  The fix should go there.  Add a
4288         comment to that affect in our test's Assert.Ignore.
4289
4290         * BindingManagerBase.cs: Rework PullData and PushData slightly.
4291         we keep a boolean flag (transfering_data) that keeps us from
4292         calling UpdateIsBinding multiple times if we re-enter either of
4293         them.
4294
4295         * ControlBindingsCollection.cs (AddCore): remove the
4296         binding_context arg to binding.Check.
4297
4298         * Binding.cs (IsBinding): don't check if we're binding here, just
4299         return our cached value.  we update it in UpdateIsBinding.
4300         (Check): don't take the binding_context arg, we'll just use our
4301         control's.  Also, for some reason MS doesn't use the data member
4302         field when getting the bindingmanager for this binding.  it just
4303         uses the datasource.  Make this method callable multiple times,
4304         and only do the is_null_desc stuff if manager.Position != -1 (so
4305         we don't get an exception accessing manager.Current).
4306         (UpdateIsBinding): move the code from IsBinding here.
4307         (PositionChangedHandler): call Check here to we can initialize
4308         things that require a non- -1 position.
4309
4310 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4311
4312         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
4313         control.
4314
4315 2007-05-17  Andreia Gaita  <avidigal@novell.com>
4316
4317         * TabControl.cs: Add 2.0 methods and events, including
4318         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
4319         * TabPage.cs: Add 2.0 methods
4320
4321 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
4322
4323         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
4324         keyboard_cues is properly handled by message method.  
4325
4326 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4327
4328         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
4329
4330 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
4331
4332         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
4333
4334 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
4335
4336         * Control.cs: 
4337         - WmUpdateUIState added to handle state changes, it make call to
4338         OnChangeUICues event.
4339         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
4340         SystemInformation.
4341
4342 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
4343
4344         * ImageKeyConverter.cs: Added.
4345         * TreeViewImageKeyConverter.cs: Added.
4346
4347 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4348         
4349         * ToolTips.cs: Update Text if SetToolTip is called for a control
4350         already showing the tooltip, as well as restarting its timer; show
4351         tooltip if we are inside the control bounds by the time of calling
4352         SetToolTip. Inside ShowTooltip remove the check to not show the 
4353         tooltip again for the active control (it is allowed by .Net to 
4354         show the tooltip on the same control multiple times).
4355
4356 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4357
4358         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4359
4360 2007-05-16  Andreia Gaita <avidigal@novell.com> 
4361
4362         * ContainerControl.cs: only process tab key if there are no 
4363         modifier keys present, otherwise the control does the 
4364         tab processing, if it needs to. Fixes #81622
4365         * TabControl.cs: Fixes calculation for which tab to select on
4366         shift+ctrl+tab.
4367
4368 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4369
4370         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
4371
4372 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
4373
4374         * Control.cs: Make IsInputCharInternal to allow controls to
4375         override it and still match MS API.
4376         * TextBoxBase.cs: Override IsInputCharInternal and always
4377         return true.
4378         [Fixes bug #81616]
4379
4380 2007-05-15  Jackson Harper  <jackson@ximian.com>
4381
4382         * TextBox.cs: Disable some of the menu options when using a
4383         readonly textbox.
4384
4385 2007-05-15  Jackson Harper  <jackson@ximian.com>
4386
4387         * TextBox.cs:
4388         * TextBoxBase.cs:
4389         * RichTextBox.cs: Some new 2.0 methods
4390
4391 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
4392
4393         * FileDialog.cs: On 1.0 profile, do not support multidotted 
4394         extensions.
4395
4396 2007-05-14  Jackson Harper  <jackson@ximian.com>
4397
4398         * TextBoxBase.cs: Implement some of the new 2.0 methods.
4399         * RichTextBox.cs: We need to override these methods on 2.0.
4400         * MaskedTextBox.cs: These are implemented now
4401         * TextControl.cs: This was off by one.
4402
4403 2007-05-14  Jackson Harper  <jackson@ximian.com>
4404
4405         * TextControl.cs: Because the line endings are including in the
4406         text, we don't need to add them in anymore.
4407
4408 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4409
4410         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
4411         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
4412
4413 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4414
4415         * ToolBar.cs: Adjust size to default size when button theres no text and
4416         image, it fixes remaining issues from #81524.
4417
4418 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4419
4420         * ToolBar.cs: 
4421         - When not flat call redraw to recalculate sizes on creare handle to match
4422         win32 behavior.
4423         - Revert 77220 because it causes some regressions in toobar
4424         button.
4425
4426 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4427
4428         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
4429           now actually enters a usable state.
4430
4431 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4432
4433         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
4434         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
4435         3 buttons.
4436
4437 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4438
4439         * ToolBar.cs: Save default_size on create handle to use later for buttons
4440         without text, needed to mimic win32 behavior.
4441
4442 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
4443
4444         * ToolBar.cs: Fix button layour to best fit width or height according to
4445         vertical or not. Fixes #81524.
4446
4447 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4448
4449         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
4450         toolbar size info because different styles theres different sizes.
4451         Fixes #81522.
4452
4453 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4454
4455         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
4456         if we are using checkboxes, checked is true, and we have less
4457         than two images in StateImageList; for the 1.1 in the same scenario
4458         draw the first image if we have at least one image in StateImageList.
4459         Fixes part of #81191.
4460
4461 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4462
4463         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
4464         the owner's Items collection on merge.
4465
4466 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4467
4468         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
4469         * ToolStripItemCollection.cs: Lots of fixes to when events get called
4470         and parent/owner gets changed based on gert's unit tests.
4471
4472 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4473
4474         * MaskedTextBox.cs: Started implementing parts of it.
4475
4476 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4477
4478         * ListView.cs: When clicking the checkbox on the items
4479         take into account the double clicks even if we have only
4480         one image in StateImageList (only for 1.0/1.1). Also 
4481         generate an extra change of checked state when we receive
4482         the second click on checkbox (match .Net behaviour). 
4483         Fixes part of #81191.
4484
4485 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
4486
4487         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
4488
4489 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
4490
4491         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
4492         even if OnLoad is overriden and base.OnLoad is not called.
4493         [Fixes bug #81582]
4494
4495 2007-05-10  Andreia Gaita  <avidigal@novell.com>
4496
4497         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
4498         shame. (I blame my ever-persisting and annoying cold)
4499
4500 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4501
4502         * ListView.cs: Don't eat navigation keys.  Let them flow through to
4503         KeyDown/KeyPress routines.  [Fixes bug #81569]
4504
4505 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4506
4507         * ListView.cs: When handling keys for selecting the item based off
4508         keyboard input, do not consider keys pressed with Alt or Control.  Also,
4509         correctly handle keys when the Shift key is down. [Fixes bug #81578]
4510
4511 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4512
4513         * Control.cs: When using UseWaitCursor, we have to store the requested
4514         Cursor to use when UseWaitCursor is turned off.
4515
4516 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
4517
4518         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
4519         to false.
4520         * Application.cs: Use PreProcessControlMessage instead of
4521         PreProcessMessage.
4522         * PreProcessControlMessage.cs: Make internal for 1.1.
4523
4524 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4525
4526         * Control.cs: Add InternalContains focus property, which hast the same
4527         functionality of ContainsFocus, but also including implicit controls.
4528         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
4529         since we need to know if the focus is contained in our implicit
4530         ItemControl when calculating Layout. Fixes part of #80888.
4531
4532 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
4533
4534         * ToolTip.cs: Remove center form string alignment as it must be align to
4535         left.
4536
4537 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
4538
4539         * ToolStripItemCollection.cs: Set the new item's parent and owner
4540         in Insert like we do in Add.  [Fixes bug #81568]
4541
4542 2007-05-08  Jackson Harper  <jackson@ximian.com>
4543
4544         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
4545         - Off by one error in SetTop
4546         - Disable DoubeBuffering
4547         
4548 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4549
4550         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
4551           control as much as necessary in order to make it entirely visible,
4552           instead of centering the control in the container (matches MS
4553           behaviour). CalculateCanvasSize: we need to take the current scroll
4554           position into account when calculating the maximum canvas,
4555           otherwise the following scenario will fail: resize so that the
4556           scrollbars appear, use the scrollbars to scroll, resize again
4557           smaller, and now the canvas size is too small. Recalculate: when
4558           showing scrollbars make sure they start off at 0, and try to scroll
4559           the active control into view. Fixes #79540. HandleScrollBar: don't
4560           scroll anywhere if the scrollbar isn't visible.
4561
4562 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4563
4564         * ListView.cs: When focus changed, call Layout/Invalidate
4565         in the focused item to update the selected state (should show
4566         entire label when ListView is focused, and a part of it if is not).
4567         * ListViewItem.cs: When doing layout for LargeIcon, take into account
4568         for displaying the entire label not only the Focused state of the
4569         item, but also the Focused state of the ListView (match .Net
4570         behaviour).
4571
4572 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4573
4574         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
4575         Implement UseWaitCursor. 
4576
4577 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4578         Applying contributed patch from Sergey Volk.
4579
4580         * Clipboard.cs: Implement SetDataObject retry logic and new overload
4581         of SetDataObject.
4582         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
4583
4584 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4585
4586         * Control.cs: Implement DrawToBitmap.
4587
4588 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4589         Applying contributed patch from Stefan Noack.
4590         
4591         * Control.cs: Add [Get|Set]AutoSizeMode.
4592
4593 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4594
4595         * MdiClient.cs: Unmerge menus when the last child is closed.
4596
4597 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
4598
4599         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
4600         * ToolStripManager.cs: Call Merge on DropDowns.
4601         [Fixes bug #81477]
4602
4603 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4604
4605         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
4606           uints.
4607         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
4608           visibility. We can't create forms visible, since we have to set the
4609           owner before making the form visible (otherwise Win32 will do
4610           strange things with task bar icons). The problem is that we set the
4611           internal is_visible to true before creating the control, so
4612           is_changing_visible_state is the only way of determining if we're
4613           in the process of creating the form due to setting Visible=true -
4614           this works because SetVisibleCore explicitly makes the form
4615           visibile afterwards anyways. Fixes #80775.
4616
4617 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4618
4619         * ThemeWin32Classic.cs: When drawing ListViewItems,
4620         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
4621         or LargeIcon _and_ item is not focused (match .Net behaviour).
4622
4623 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4624
4625         * Control.cs, Form.cs: Fix some obsolete method warnings.
4626
4627 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
4628
4629         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
4630         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
4631
4632 2007-05-04  Andreia Gaita  <avidigal@novell.com>
4633
4634         * ContainerControl.cs: Fix active_control attribution when going
4635         up the parent chain so that the first parent container gets the control
4636         and the rest of the parent containers get the child containers (skips
4637         non-containers). Fixes #80729
4638
4639 2007-05-04  Randolph Chung  <tausq@debian.org>
4640
4641         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
4642         [Fixes bug #81499]
4643
4644 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4645
4646         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
4647           takes a size parameter, since the CreateParam's size isn't true for
4648           minimized forms. Fixes #81518,
4649
4650 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4651
4652         * Form.cs: Add OnDeactivateInternal.
4653         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
4654
4655 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4656
4657         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
4658           accessing the parent. Fixes #81508.
4659
4660 2007-05-03  Chris Toshok  <toshok@ximian.com>
4661
4662         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
4663         2.0 block, pass listposition + 1 to ChangeRecordState when a row
4664         was added before the current listposition.  Fixes the
4665         TestInsertRowBeforeCurrent unit test.
4666
4667 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
4668
4669         * Application.cs: Add RaiseIdle.
4670         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
4671         XplatUIX11.cs: Implement RaiseIdle.
4672
4673 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
4674         corcompare work: N - Z
4675         * NotifyIcon.cs
4676         * ProgressBar.cs
4677         * RadionButton.cs
4678         * ScrollableControl.cs
4679         * SplitContainer.cs
4680         * SplitterPanel.cs
4681         * StatusBar.cs
4682         * SystemInformation.cs
4683         * TabControl.cs
4684         * TableLayoutControlCollection.cs
4685         * TableLayoutPanel.cs
4686         * TabPage.cs
4687         * ToolBar.cs
4688         * ToolBarButton.cs
4689         * ToolStrip.cs
4690         * ToolStripComboBox.cs
4691         * ToolStripContainer.cs
4692         * ToolStripContentPanel.cs
4693         * ToolStripDropDown.cs
4694         * ToolStripDropDownItem.cs
4695         * ToolStripDropDownMenu.cs
4696         * ToolStripItem.cs
4697         * ToolStripItemCollection.cs
4698         * ToolStripMenuItem.cs
4699         * ToolStripPanel.cs
4700         * ToolStripSplitButton.cs
4701         * ToolTip.cs
4702         * TreeNode.cs
4703         * TreeNodeCollection.cs
4704         * TreeNodeMouseHoverEventArgs.cs
4705         * TreeView.cs
4706
4707 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
4708
4709         * ContextMenu.cs: Add public method Show with alignment property to 2.0
4710         stuff. Thanks aatdark for the patch. 
4711
4712 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4713
4714         * GridItem.cs: Implement 2.0 Tag property.
4715
4716 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
4717
4718         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
4719         count instead of Nodes.Length.  [Fixes bug #81448]
4720
4721 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4722
4723         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
4724         [Fixes bug #81506]
4725
4726 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4727         corcompare work: A - M
4728         * BindingNavigator.cs
4729         * Button.cs
4730         * ButtonBase.cs
4731         * CheckBox.cs
4732         * Control.cs
4733         * FlowLayoutPanel.cs
4734         * Form.cs
4735         * Label.cs
4736         * LinkLabel.cs
4737         * ListView.cs
4738
4739 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
4740
4741         * Application.cs: Give toolstrips a chance to process mnemonics.
4742         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
4743         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
4744         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
4745
4746 2007-05-01  Jackson Harper  <jackson@ximian.com>
4747
4748         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
4749         wider area too.
4750         - Don't set the BoundsSpecified
4751
4752 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4753
4754         * Application.cs: When using the toolstrip shortcut mechanism, allow the
4755         message to pass through to a regular control if it hosted by a toolstrip.
4756         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
4757         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
4758
4759 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4760
4761         * TextRenderer.cs: Use the flags argument when using the MeasureString
4762         fallback algorithm.
4763
4764 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
4765
4766         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
4767         the MDI menu item.  [Fixes bug #81483]
4768
4769 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
4770
4771         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
4772         string. When setting Name to null, use zero-length string instead.
4773
4774 2007-04-29  Andreia Gaita  <avidigal@novell.com>
4775
4776         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
4777         DeselectTab). Implement missing 2.0 TabPageCollection methods
4778         (Add, ContainsKey, RemoveByKey, IndexOfKey)
4779
4780 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
4781
4782         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
4783
4784 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
4785
4786         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
4787         Fixes bug #81479. Include details of exception when LoadFile fails.
4788
4789 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
4790
4791         * DrawListViewSubItemEventArgs.cs: Added missing setter
4792
4793 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4794
4795         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
4796         Hide methods (not complete). Implement missing 2.0 OnPopup event.
4797
4798 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4799
4800         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
4801         removed in ly last commit (it was breaking the Label edit feature).
4802
4803         * ThemeWin32Classic.cs: When drawing a ListViewItem use
4804         StringAlignment.Near for LineAlignment (match .Net).
4805
4806 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4807
4808         * TabControl.cs: Change SetTab so it adds the tabpage to the list
4809         of controls if it isn't already there - was blowing up when doing
4810         tabcontrol.TabPages[i]=new TabPage(). 
4811         SetTab now does a replace by removing the page at the index. 
4812         Add a new InsertTab method that inserts a page in a given index 
4813         instead of replacing. 
4814         Implements TabPageCollection.Insert(int, TabPage).
4815
4816 2007-04-27  Chris Toshok  <toshok@ximian.com>
4817
4818         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
4819         internal handler that can be invoked from our subclasses.)  Also,
4820         add a comment to PushData about how we need to fix it.
4821
4822         * CurrencyManager.cs: tons of changes here.  trying to get things
4823         matching the behavior of .net wrt event orders (ItemChanged,
4824         CurrentChanged, PositionChanged.)  I've implemented a private .net
4825         symbol (ChangeRecordState) that appears in stack traces because
4826         it's actually easier to do this than to effective inline all its
4827         various behaviors at every call site.
4828
4829         * RelatedPropertyManager.cs: guard against an exception here by
4830         not using parent.Current if the position is set to -1 (if the
4831         parent datasource is cleared, for instance).
4832
4833         * Binding.cs: don't parse data in PushData (this might be wrong,
4834         but it jives with MS's behavior.)  Also, don't call PushData when
4835         we get a CurrentChanged event.
4836
4837 2007-04-27  Andreia Gaita  <avidigal@novell.com>
4838
4839         * WebBrowser.cs,
4840           WebBrowserBase.cs,
4841           WebBrowserSiteBase.cs,
4842           HtmlDocument.cs: Added stubbed out classes, no real implementations 
4843           yet.
4844
4845 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4846
4847         * MainMenu.cs: In draw method without parameters call draw method with 
4848         PaintEvent, another one (just rect) adjust rectangle and we dont need it
4849         as Rect property is already adjusted. Fixes #80694.
4850
4851 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
4852
4853         * Application.cs: Need to handle keyboard menu deselection here.
4854         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
4855         navigation, allowing keyboard to work on X11.
4856         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
4857
4858 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4859
4860         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
4861         menu bar. It fixes some drawing issues in menu bar.
4862
4863 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
4864
4865         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
4866         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
4867         when <alt> key is pressed.
4868
4869 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4870
4871         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
4872         example just set visible to false and make this prevent from other problems.
4873         In SystrayAdd always remove pending expose. Fixes #81072.
4874
4875 2007-04-26  Marek Safar  <marek.safar@gmail.com>
4876
4877         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
4878         value is set.
4879
4880 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4881
4882         * ListView.cs: Added three missing 2.0 events and corresponding
4883         EventHandlers. Added the OwnerDraw property.
4884         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
4885
4886 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4887
4888         * DrawListViewItemEventArgs.cs
4889         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
4890
4891 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
4892
4893         * TextControl.cs: Fixed typo in constructor
4894
4895 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
4896
4897         * Application.cs: Create a shortcut path so that currently selected
4898         MenuStrips can intercept keyboard events without having focus.
4899         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
4900         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
4901         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
4902         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
4903         generate WM_SYSCOMMAND message in X11 for other platforms.
4904         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
4905         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
4906         * ToolStripSplitButton.cs: Add DefaultItem property.
4907         
4908 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
4909
4910         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
4911         fixes some menu draw problem on Windows with border diferent from default
4912         it also fixes #81403.
4913
4914 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4915
4916         * Form.cs: Refactor WndProc into separate methods, just like Control is
4917           doing it.
4918
4919 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4920
4921         * Control.cs: set_Text: move the call to the driver into a seperate
4922           virtual method so that Form can override it.
4923         * MaskedTextBox.cs: Corcompare fixes.
4924         * Form.cs: Override UpdateWindowText and only update the styles if the
4925           form has been shown (fixes #81405).
4926
4927 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4928
4929         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
4930         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
4931         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
4932         the form lost focus or another control was clicked.
4933
4934 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
4935
4936         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
4937         fixed.
4938
4939 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4940
4941         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
4942           DrawListViewItemEventHandler.cs,
4943           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
4944           Added.
4945         * X11Structs.cs: More ToString implementation.
4946
4947 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
4948
4949         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
4950         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
4951
4952 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4953
4954         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
4955           handle.
4956         * FormCollection.cs: Don't add a form if it's already in the
4957           collection.
4958         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
4959           according to behaviour and MSDN. The ownerWin32 is the active
4960           window at the moment when we call ShowDialog, not the context's
4961           main form (the context's main form may open another form that opens
4962           a form with ShowDialog, the win32 owner is the second form). Add
4963           and remove forms to the Application.OpenForms in other places to
4964           better match MS behaviour. Add an IsActive property that raises
4965           On(de)Activated only if the active state has changed (we were
4966           raising OnDeactivated before OnActivated while creating forms).
4967         * Application.cs: Refactor Enabling/Disabling of windows for modal
4968           dialog loops out to separate methods, and restore the thread
4969           context when we quit the method. Fixes #81407.
4970
4971 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4972
4973         * ListView.cs: In ItemControl.HandleClicks, also fire 
4974         2.0 MouseClick or MouseDoubleClick events on the parent,
4975         not only the Click/DoubleClick events.
4976
4977 2007-04-24  Andreia Gaita  <avidigal@novell.com>
4978
4979         * TableLayoutSettings.cs: 
4980         - Added a GetControls method and a support structure to help the 
4981         TypeConverter to enumerate the controls for     serialization. 
4982         - Added a new serialization constructor. 
4983         - Added a isSerialized flag initialized to true on the 
4984         serialization constructor so that the TableLayoutPanel.LayoutSettings 
4985         setter does not throw the designed NotSupportedOperation exception
4986         when the object is built through deserialization.
4987         - Implemented GetObjectData
4988         
4989         * TableLayoutPanel.cs: Added check on LayoutSettings.
4990
4991 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4992
4993         * ListView.cs: Report Click and DoubleClick events to the parent
4994         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
4995         from breaking the click count state when using dialog forms (Control
4996         reports the clicks in a similar fashion). In the previous behaviour
4997         the last WM_LBUTTONUP message in a  double click was sent to the
4998         ListView's form, instead of the ListView, which was breaking the click
4999         count for it. Fixes #80387.
5000
5001 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
5002
5003         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
5004
5005 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
5006
5007         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
5008         us from created dropdowns for menu items that do not have subitems.
5009         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
5010         Check HasDropDownItems before calling DropDown so a dropdown will not be
5011         created if it isn't needed.
5012
5013 2007-04-24  Jackson Harper  <jackson@ximian.com>
5014
5015         * TreeView.cs: Set the first node to the selected node when we get
5016         focus if there is no selected node.
5017
5018 2007-04-24  Andreia Gaita  <avidigal@novell.com>
5019
5020         * MimeIcon.cs: remove using blocks so that image streams are
5021         not disposed of. Fixes #80151
5022
5023 2007-04-24  Jackson Harper  <jackson@ximian.com>
5024
5025         * TextBoxBase.cs: Fixup the height of textboxes when the control
5026         is created.
5027
5028 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
5029
5030         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
5031         for each ToolStripItem when the parent's RightToLeftChanged is called.
5032
5033 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5034
5035         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
5036           Fixes #80163.
5037         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
5038           property, so that the setter can be overriden too.
5039         * TextBox.cs: Change GetContextMenuInternal() to use
5040           ContextMenuInternal.
5041
5042 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5043
5044         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5045           #81406.
5046
5047 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5048
5049         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
5050           #81406.
5051
5052 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5053
5054         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
5055           avoid duplicate work. Mostily skeleton code, it's not working at
5056           all yet.
5057
5058 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
5059
5060         * NotifyIcon.cs : stub for MouseClick event
5061         * Application.cs: stub for SetUnhandledExceptionMode
5062
5063 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
5064
5065         * BindingNavigator.cs : Initial (partial) implementation
5066
5067 2007-04-23  Jackson Harper  <jackson@ximian.com>
5068
5069         * TreeView.cs: Do not create the treeview's handle when setting
5070         the scroll position.
5071         - ExpandAll needs to compute the scrollbars so it knows which
5072         position to set the bar too.
5073         * TreeNode.cs: 
5074         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
5075
5076 2007-04-23  Jackson Harper  <jackson@ximian.com>
5077
5078         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
5079         key. Fixes #81408.
5080
5081 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
5082
5083         * ToolStripItem.cs: Make GetImageSize internal.
5084         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
5085         need to draw an item.  Fixes a reported issue where images on menus
5086         that were not 16x16 were drawing incorrectly.
5087
5088 2007-04-21  Miguel de Icaza  <miguel@novell.com>
5089
5090         * Padding.cs: Use the converter, fixes the resgen2 issue with
5091         XMLNotePad. 
5092
5093 2007-04-21  Jackson Harper  <jackson@ximian.com>
5094
5095         * TreeView.cs: Dont try to unhighlight the selected node if there
5096         isn't a selected node.
5097
5098 2007-04-21  Jackson Harper  <jackson@ximian.com>
5099
5100         * UpDownBase.cs:
5101         * TextBoxBase.cs:
5102         * ListView.cs:
5103         * ListBox.cs:
5104         * TreeView.cs: Use the InternalBorderStyle property to set the
5105         initial border style, this forces the client rectangle to be sized
5106         correctly.
5107
5108 2007-04-20  Jackson Harper  <jackson@ximian.com>
5109
5110         * TreeView.cs: Simplify scrolling to the last node after expanding
5111         all.
5112         - Fix some off by ones with setting the bottom.
5113
5114 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5115
5116         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
5117         that.  We were incorrectly doing it the other way around.  Also,
5118         update ClientSize if we change the BorderStyle before the control
5119         is created.
5120
5121 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5122
5123         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5124         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5125         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
5126         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
5127         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
5128         Caption to CaptionHeight.
5129         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
5130         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
5131         and FixedFrameBorderSize to return value from current XplatUI driver.
5132         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
5133         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
5134         and FixedFrameBorderSize using win32 API. Renamed Caption to
5135         CaptionHeight.
5136         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
5137         * SystemInformation.cs: Fixed typo in BorderSize.
5138
5139 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
5140
5141         * XplatUI.cs: Added MenuAccessKeysUnderlined.
5142         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
5143         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
5144         returning false.
5145         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
5146         value from XplatUI driver.
5147         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
5148         SystemParametersInfo.
5149         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
5150         override.
5151         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
5152         returning false.
5153
5154 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5155
5156         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
5157
5158 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5159
5160         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
5161
5162 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
5163
5164         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
5165         MenuStrips that contain ToolStripSeparators.
5166
5167 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5168
5169         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
5170           DefineStdCursorBitmap.
5171         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
5172           has been created off a standard cursor. This is used to get a
5173           bitmap of the standard cursor when Draw or DrawStretched is called
5174           in order to draw the cursor.
5175         * X11Structs.cs: Added XcursorImage and XcursorImages.
5176         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
5177           DefineStdCursorBitmap.
5178         * Cursors.cs: Update all relevant creations of Cursor to use the new
5179           internal constructor.
5180
5181 2007-04-19  Jackson Harper  <jackson@ximian.com>
5182
5183         * TextBox.cs: Move the has_been_focused into the base control, so
5184         some of the text adding methods can manipulate it (probably time
5185         for a better name for this flag too).
5186         - Call a new version of selectall that doesn't scroll
5187         * TextBoxBase.cs: When we append text, if the document is empty,
5188         don't scroll.  If the document has text already, we scroll to the
5189         end of the appended text.
5190         - When the text is changed, we reset the has_been_focused, so the
5191         next time the control gets focused, all the text is selected.
5192
5193 2007-04-19  Jackson Harper  <jackson@ximian.com>
5194
5195         * TextControl.cs: Move the margins to the document, add a method
5196         so the margin sizes can be updated.
5197         * TextBoxBase.cs: When the border style is changed, update the
5198         border sizes.
5199
5200 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
5201
5202         * Control.cs: Respect DefaultPadding.
5203         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
5204         padding into account.
5205         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
5206
5207 2007-04-19  Jackson Harper  <jackson@ximian.com>
5208
5209         * TextControl.cs: Oops, we need to use the ClientRect not the
5210         bounds here.
5211
5212 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5213
5214         * ListView.cs: In ItemControl.ItemsMouseDown, take into
5215         account the double clicks when CheckBoxes are used and
5216         the pointer is inside the checkbox. Fixes part of #81191.
5217
5218 2007-04-18  Jackson Harper  <jackson@ximian.com>
5219
5220         * TextControl.cs: Pressing the end key shouldn't move the caret
5221         past the line ending.
5222         * TextBoxBase.cs: We can still delete if we are in the line
5223         ending and the combine will just kill the existing line ending.
5224
5225 2007-04-18  Jackson Harper  <jackson@ximian.com>
5226
5227         * TextControl.cs: We can't move lines, then invalidate their
5228         bounds, we need to get the old bounds and combine that with the
5229         new bounds.
5230         * TextBoxBase.cs: Before combining two lines for a delete, we need
5231         to invalidate the area of the old line, since that will be moved
5232         in the combine operation.
5233
5234 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
5235
5236         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
5237         with transparent background. Fixes #80482.
5238
5239 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
5240
5241         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
5242         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
5243         [Fixes bug #81391]
5244
5245 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5246
5247         * CreateParams.cs: Add a couple of helper methods and do a less string
5248           concatenation in ToString.
5249         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
5250           overload that takes a Control parameter, since this method may be
5251           called before a control is assigned to the hwnd (from
5252           CreateWindow), and update CreateWindow to use the new overload. In
5253           GetMenuOrigin subtract the title bar from the y position if the
5254           form has a window manager (since we're painting it and not X).
5255         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
5256           CreateParams to calculate the origin (since border sizes may vary).
5257           In ScreenToMenu only subtract the title height if we actually have
5258           a title.
5259         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
5260           mdi children never have menus of themselves.
5261         * InternalWindowManager.cs: Implement menu handling like form does.
5262           Added GetMenuOrigin to calculate the menu origin, can't use the
5263           CreateParams from the form like normally since it's lying.
5264         * Hwnd.cs: Implement GetBorderSize better (in the sense more
5265           windows-like) and add Inflate and comparison operators to the
5266           Borders type. When calculating MenuOrigin and it's a form with a
5267           window manager, use the window manager to calculate it.
5268
5269 2007-04-17  Chris Toshok  <toshok@ximian.com>
5270
5271         * Control.cs (CreateControl): turns out in 2.0 we don't need this
5272         OnBindingContextChanged thing here.  It's only generated from
5273         ContainerControl.OnCreateControl.  Fixes a newly written unit test
5274         - BindingTest.BindingContextChangedTest4.
5275         
5276 2007-04-17  Jackson Harper  <jackson@ximian.com>
5277
5278         * ScrollBar.cs: When setting values, make sure the current
5279         position stays within the new values range.
5280
5281 2007-04-17  Chris Toshok  <toshok@ximian.com>
5282
5283         * Control.cs (CreateControl): talk about a bizarre corner case.
5284         Don't emit OnBindingContextChanged here if we're a parentless
5285         control (i.e. if we're a form.).  Fixes
5286         BindingTest.BindingContextChangedTest2.
5287
5288 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5289
5290         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
5291         from win32. Fixes #81255.
5292
5293 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
5294
5295         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
5296         already present in CalculateButtonTextAndImageLayout.
5297
5298 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5299
5300         * XplatUIX11.cs: When setting min/max size for a window we need to
5301           translate the coordinates to x coordinates. Create an overload of
5302           SetWindowMinMax that takes a CreateParams handling this, and change
5303           SetWMStyles to call this function (can't use Control.FromHandle in
5304           the SetWindowMinMax to get the control/CreateParams from the handle
5305           because the handle might not have been assigned to the control
5306           yet). Fixes #81371.
5307
5308 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5309
5310         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
5311         if StateImageList is non-null and it has less than two items (match MS
5312         behaviour). Also, in HandleNavKeys handle the Space key, calling
5313         the new ToggleItemsCheckState method, which tries to change the
5314         checked state of the selected items. Fixes part of #81191.
5315
5316 2007-04-16  Jackson Harper  <jackson@ximian.com>
5317
5318         * RichTextBox.cs: namespace cleanup.
5319
5320 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5321
5322         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
5323
5324 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
5325
5326         [Fixes #79447]
5327         * Control.cs: Call invalidate in set_Region.
5328
5329         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
5330         it dont works here.
5331
5332 2007-04-16  Jackson Harper  <jackson@ximian.com>
5333
5334         * TextBoxBase.cs: When enter is pressed, we need to update all
5335         lines below the current.
5336
5337 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
5338
5339         * MdiClient.cs: Implement implicit menu merging for MDI
5340         children.  When a child form is active, if it has a menustrip
5341         and the parent form has a MainMenuStrip, automatically merge
5342         the menus.
5343
5344 2007-04-15  Andreia Gaita  <avidigal@novell.com>
5345
5346         * TabControl.cs: Refactored sizing methods to not repeat
5347         code all over the place. Tab bounds are now calculated
5348         as if alignment is top and single line, and only when 
5349         setting the bounds are the positions adjusted according
5350         to alignment. Replaced hardcoded positions, spacings and
5351         paddings by getting the values the ThemeEngine. 
5352         Fixes #79619.
5353         
5354         * Theme.cs: Change TabControl properties and methods so
5355         that all start with TabControl*. Added more properties
5356         to help remove hardcoded values on tabcontrol.
5357         Add CPDrawBorder3D declaration so the Theming classes
5358         can access it.
5359         
5360         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
5361
5362         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
5363         on the Theming namespace, and call the appropriate methods here.
5364         Change CPDrawBorder3D to public.
5365
5366 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5367
5368         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
5369         the control after firing the OnMouseUp event, instead of sending
5370         the message before the mentioned event. This is so we can match the
5371         MS behaviour. Fixes part of #80385.
5372
5373 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5374
5375         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
5376         RightToLeft property.
5377
5378 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
5379
5380         * ToolStrip.cs: Add properties and internal methods to support merging.
5381         * ToolStripItem.cs: Add MergeAction and MergeIndex.
5382         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
5383         not trigger reparenting or layouts.
5384         * ToolStripManager.cs: Add Merge and RevertMerge methods.
5385         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
5386         is hosting the overflow menu.
5387
5388 2007-04-13  Jackson Harper  <jackson@ximian.com>
5389
5390         * TextControl.cs: Set the line ending correctly for the first
5391         inserted line.
5392
5393 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5394
5395         * Theme.cs: Update GetMethod to get the new definition for 
5396         KnownColors.Update (and fix theme color updates).
5397
5398 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
5399
5400         * MessageBox.cs: Fix some test and button position.
5401
5402 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5403
5404         * Form.cs: Consider the implicit controls in
5405         GetRealChildAtPoint. We need it since this method
5406         is called on Form when handling the some messages in
5407         WndProc, and need to consider those implicit ones too.
5408         Fixes #80385.
5409
5410 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
5411
5412         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
5413         if there are no ShortcutKeys set.
5414         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
5415         set, use it when painting.
5416
5417 2007-04-12  Jackson Harper  <jackson@ximian.com>
5418
5419         * TextControl.cs: Fix some off-by-one issues in line duplication
5420         and insertion in the undo manager. Also, overwrite the first tag
5421         of a line on insert, if it is just a zero lengthed tag. This
5422         prevents us from getting an extra stranded tag at the beginning of
5423         the first line.
5424
5425 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
5426
5427         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
5428         to calculated proper size including when handle was not created yet.
5429
5430 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5431
5432         * MdiWindowManager.cs: When moving a form, allow the form to be moved
5433           when the mouse is outside of it's parent's client rectangle. Fixes
5434           #79982 (take 3, part 2).
5435
5436 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5437
5438         * X11Structs.cs: Add a few ToString() overrides.
5439         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
5440           the window location in a window-manager independent way. Reworked
5441           FrameExtents, it now actually works. Reworked AddConfigureNotify
5442           and ReparentNotify handling to use GetTopLevelWindowLocation
5443           instead of the earlier, more hacky solution. Reworked SetWMStyles,
5444           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
5445           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
5446           for all other windows (fixes #81281 part 1), a toolwindow is hidden
5447           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
5448           and generally refactored to do as few calculations as possible
5449           inside the lock.
5450
5451 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
5452
5453         * Theme.cs: Change "reflective-contract" between MWF and SD to 
5454         minimize # of calls, avoid Color serialization and avoid updating 
5455         every "known colors" each time a single one is updated.
5456
5457 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5458
5459         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
5460         when not readonly and the text is explicitly set. Code style updates.
5461         * DataGridTableStyle.cs: Removed extra line.
5462         * DataGrid.cs: Code style updates. Removed extra whitespace.
5463         * DataGridColumnStyle.cs: Code style updates. Removed extra 
5464         whitespace.
5465
5466 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5467
5468         * XplatUIX11.cs: Added comment that "fixes" #80021.
5469
5470 2007-04-09  Jackson Harper  <jackson@ximian.com>
5471
5472         * TextControl.cs: We don't need this -1 on the line count anymore.
5473
5474 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
5475
5476         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
5477         entered value to underlying type, and convert it back to a string to
5478         apply formatting. Modified GetFormattedValue to use TypeConverter
5479         if available.
5480
5481 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
5482
5483         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
5484         Use SubItems property when we want to ensure there's at least one
5485         subitem. Modified SubItems property to ensure there's always at least
5486         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
5487         the NRE's reported by MS.
5488
5489 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
5490
5491         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
5492         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
5493         Spaces to tabs. Removed extra tabs.
5494
5495 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
5496
5497         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5498         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
5499
5500 2007-04-06  Jackson Harper  <jackson@ximian.com>
5501
5502         * TextBoxBase.cs: When a delete removes a line, recalculate all
5503         lines below that line (they need to get offsets setup correctly)
5504         and invalidate.
5505
5506 2007-04-05  Jackson Harper  <jackson@ximian.com>
5507
5508         * TextControl.cs: We need to invalidate across the width of the
5509         document when we are invalidating multiple lines.
5510         * TextBoxBase.cs: Don't delete into the line ending.
5511
5512 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5513
5514         * ListView.cs: Restore the check for the MouseHover event
5515         in ListView. It looks like the ListView fires more than one MouseHover
5516         event when HoverSelection is true  _only_ in weird-corner scenarios, but
5517         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
5518         event.
5519
5520 2007-04-05  Mike Kestner  <mkestner@novell.com>
5521
5522         * ListView.cs : raise MouseDown before updating selection.
5523         [Fixes #80373 tab 1&3]
5524
5525 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5526
5527         * ToolStripRenderer.cs: Add static method to mirror image.
5528         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
5529         and RightToLeftAutoMirrorImage.
5530         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
5531
5532 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
5533
5534         * ToolStripSplitStackLayout.cs: Support Alignment property.
5535         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
5536
5537 2007-04-05  Jackson Harper  <jackson@ximian.com>
5538
5539         * TextControl.cs: Move around the line endings when crossing line
5540         boundaries.
5541         - When combining lines, strip the ending text off the first line.
5542
5543 2007-04-05  Jackson Harper  <jackson@ximian.com>
5544
5545         * TextControl.cs:
5546         * TextBoxBase.cs: Try to never move the cursor into the line
5547         ending.
5548         
5549 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5550
5551         * ToolStripItem.cs: Make sure we aren't firing mouse events when
5552         the item is disabled.  Also add a few missing methods.
5553
5554 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5555
5556         * ListView.cs: We don't need the MouseEnter/MouseLeave check
5557         to fire just one MouseHover event when HoverSelection is true, since
5558         .Net does fire more than one MouseHover event in that scenario. Also,
5559         fix the selection in HoverSelection, by invoking UpdateMultiSelect
5560         if MultiSelect is true, instead of only setting ListViewItem.Selected.
5561         Finally, we need to reset the Hover logic in MouseMove, even when we
5562         don't have a selected item.
5563
5564 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5565
5566         * ToolStrip.cs: Add several missing methods, properties, and events.
5567
5568 2007-04-04  Chris Toshok  <toshok@ximian.com>
5569
5570         * DataGridTextBoxColumn.cs: set the bounds of the text box to
5571         (0,0,0,0) in Commit, as MS does.
5572
5573         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
5574         make sure we set CurrentRow on a row header click *before* calling
5575         Select.  This moves the current cell (and the textbox) to the new
5576         row.  The call to Select then hides the textbox, giving us the
5577         correct behavior.  Fixes #80362.
5578
5579         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
5580         (ListChangedHandler): reorder the position/current changed events,
5581         and call UpdateIsBinding in the ItemAdded case.
5582
5583         * GridColumnStylesCollection.cs: add some columns events, one of
5584         which raises the CollectionChanged event.
5585
5586 2007-04-04  Jackson Harper  <jackson@ximian.com>
5587
5588         * TextControl.cs: When we delete multiple selection lines
5589         invalidate the selection area, don't need to do that for single
5590         lines because the final update view will handle it.
5591
5592 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
5593
5594         * Control.cs: When we CreateControl, we need to also create all of the
5595         control's children.  The child's OnLoad must also fire before the parent's
5596         OnLoad.  Fixes the toolbox size in PDN.
5597
5598 2007-04-04  Jackson Harper  <jackson@ximian.com>
5599
5600         * TextBoxBase.cs: When the user presses enter, insert a line
5601         ending into the text. (Maybe this would be a good spot for
5602         Environment.NewLine).
5603         * TextControl.cs: Remove undo manager hack, line endings get
5604         inserted properly now.
5605         
5606 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5607
5608         * MenuAPI.cs: 
5609         - Remove unneeded parameters in UpdateCursor.
5610         - Fix UpdateCursor to check if menu is active.
5611         - Call UpdateCursor when menu deactivate my click.
5612         [Fixes remaining issues from #80410]
5613
5614 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
5615
5616         * Control.cs: GetRealChildAtPoint method added, it make an
5617         recursive child control search for the point. 
5618
5619         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
5620         menu.
5621
5622         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
5623
5624 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5625
5626         * Form.cs: Fix mouse position when send back mouse event after closes
5627         menu.
5628
5629 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
5630
5631         * Form.cs: Simplify the BUTTONDOWN for active tracker.
5632
5633 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5634
5635         * Control.cs: Fix an issue where if a user resized a control inside
5636         a sizing method like OnResize, we would overwrite their explicit
5637         value.  Also, only call DefaultSize once in the constructor instead
5638         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
5639         nothing actually changed.
5640
5641 2007-04-03  Jackson Harper  <jackson@ximian.com>
5642
5643         * TextControl.cs: Don't attempt to copy text for lines with no
5644         text in them (technically this shouldn't happen, but we aren't
5645         always inserting line endings when we should be).
5646
5647 2007-04-03  Jackson Harper  <jackson@ximian.com>
5648
5649         * TextBoxBase.cs: Calculate the scrollbars before calculating the
5650         document, because this sets some of the document size properties
5651         that are needed.
5652
5653 2007-04-03  Jackson Harper  <jackson@ximian.com>
5654
5655         * TextBoxBase.cs: We need to calculate maximums even if this is
5656         not a multiline control, because the maxs are used for scrolling.
5657         - Display the caret after doing a page up/down, we need to
5658         manually display it because a proper CaretMoved event isn't
5659         triggered (this is because of the way the math is done to
5660         determine how far to scroll).
5661
5662 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
5663
5664         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
5665         (ToolBar was relying on SetBoundsCore to default the values sent 
5666         base off of BoundsSpecified.)
5667
5668 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5669
5670         * DateTimePicker.cs: Change Text so that when a null value or empty
5671           string is assigned to the test we always raise ValueChanged and
5672           TextChanged (earlier implementation would only raise ValueChanged
5673           if the current date value was different from DateTime.Now).
5674
5675 2007-04-03  Andreia Gaita <avidigal@novell.com> 
5676
5677         * ButtonBase: Call update after invalidation, fixes #80194
5678
5679 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5680
5681         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
5682           #79335.
5683
5684 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5685
5686         * XplatUIX11.cs: SetWMStyles: If the control is a form with
5687           FormBorderStyle = None, don't give the window any decorations.
5688           Fixes #81276.
5689
5690 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5691
5692         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5693         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
5694           to check for is a mix of several styles (such as WS_CAPTION for
5695           instance).
5696         * Control.cs: Don't paint an area bigger than the client area when
5697           painting the background colour. Add an internal GetCreateParams.
5698           Update calls to XplatUI.CalculateWindowRect due to API change.
5699         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
5700           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
5701           the size if it hasn't been handled by any windows. When creating
5702           and moving windows, X wants the location of the entire window, but
5703           the size of the client window, so add
5704           TranslateClientRectangleToXClientRectangle,
5705           TranslateWindowSizeToXWindowSIze and
5706           TranslatedXWindowSizeToWindowSize to cope with this, and call them
5707           before every window creation and move. Update CalculateWIndowRect
5708           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
5709           In AddConfigureNotify don't do anything if the hwnd is a zombie
5710           (fixes the BadWindow we were getting while running the tests),
5711           always calculate the offsets when it's a parentless window, not
5712           only when reparented, and translate the window size, since we're
5713           getting the client size of the whole window, excluding entire
5714           window.
5715         * Theme.cs: Added BorderSizableSize.
5716         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5717           anymore. Update calls to XplatUI.CalculateWindowRect due to API
5718           chang
5719         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
5720           change. Fake the window styles here instead of in XplatUIWin32 so
5721           that all back-ends get the same window styles (and it's Form that's
5722           deciding when to use wm, not the Win32 backend anyways)
5723         * Hwnd.cs: Completely reworked GetWindowRectangle and
5724           GetClientRectangle - they are now passed a CreateParams and they
5725           only use Style and ExStyle to determine the rectangles (they should
5726           now work just like Win32AdjustWindowRectEx - though quite a few
5727           special cases are probably missing). They should also be 100%
5728           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
5729           == rect), and all numbers (borders, menu sizes) are taken from the
5730           current theme. Added a GetBorders helper function that will return
5731           the borders for any given CreateParams (including captions and
5732           menus), and GetBorderSize that returns the given border size only.
5733         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5734           Hwnd.GetClientRectangle.
5735
5736 2007-04-02  Chris Toshok  <toshok@ximian.com>
5737
5738         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
5739         logic between the values we present to the user and the values
5740         which are stored in the column's property.  Also, don't call
5741         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
5742
5743 2007-04-02  Jackson Harper  <jackson@ximian.com>
5744
5745         * TextBoxBase.cs: Scroll faster!
5746
5747 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5748
5749         * StatusStrip.cs: Layout fixes for PDN.
5750         * ToolStrip.cs: Set item's available to true, and placement to main when
5751         added.
5752         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
5753         changing in setter before doing any work, add InternalVisible.
5754         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
5755         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
5756         infinite loop.
5757
5758 2007-04-02  Jackson Harper  <jackson@ximian.com>
5759
5760         * TextBox.cs: LBUTTON does not make the textbox select all of it's
5761         text on focus.
5762
5763 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5764
5765         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
5766           Makes ToolStripComboBoxes show up again.
5767
5768 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5769
5770         * ListView.cs: Add a hover_pending field in ListView
5771         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
5772         cycle (we are resetting the MouseHover logic in XplatUI
5773         to handle HoverSelection). Fixes #80429.
5774
5775 2007-04-02  Jackson Harper  <jackson@ximian.com>
5776
5777         * TextControl.cs: Make sure the attributes get set on the last
5778         tag.
5779         - Still have to do the end tag if we have stepped all the ways to
5780         the end.
5781
5782 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5783
5784         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
5785         on an internal libgdiplus call when the information is already 
5786         available via the public API.
5787
5788 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5789
5790         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
5791           control is removed from a control collecftion.
5792         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
5793           Fixes FormPropertyTest (failed on rare occasions).
5794         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
5795           of Win32SetParent (when changing from no parent to a parent it
5796           might add the new parent's location in screen coordinates to this
5797           window's location).
5798         * Form.cs: Rework ChangingParent once again, now the handle is
5799           recreated whenever a FormWindowManager is added or removed (that is
5800           whenever a normal form is parented or abandoned). Also change
5801           CreateParams so that all non-toplevel windows always get the
5802           specified sice (StartupPosition is never considered for
5803           non-TopLevel forms).
5804         * ContainerControl.cs: Add ChildControlRemoved, the container control
5805           needs to be notified when a control is removed from it's
5806           collection, in the case the removed control is the active control.
5807
5808 2007-04-02  Jackson Harper  <jackson@ximian.com>
5809
5810         * RichTextBox.cs: Use the new methods for setting the font and
5811         color, these methods set the specified attribute without
5812         overriding the other attributes.
5813
5814 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
5815
5816         * ToolStripPanel.cs: Fixes for better layouts in PDN.
5817
5818 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
5819
5820         * TextBox.cs: Added internal ChangeBackColor method to special-case
5821         Color.Empty. Added check for invalid ScrollBars value.
5822         * TextBoxBase.cs: Added internal ChangeBackColor method.
5823         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
5824         internal ChangeBackColor method to special-case Color.Empty. Added
5825         check for invalid ScrollBars value.
5826
5827 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
5828
5829         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
5830
5831 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5832
5833         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
5834         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
5835         [Based on submitted patch from Olivier Duff.]
5836
5837 2007-03-30  Jackson Harper  <jackson@ximian.com>
5838
5839         * TextBox.cs: Only select all on initial focus if the user has not
5840         specified a selection area.
5841
5842 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
5843
5844         * UserControl.cs: Override CreateParams.
5845
5846 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5847
5848         [ Fixes #80995 ]
5849
5850         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
5851         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
5852           check for is a mix of several styles (such as WS_CAPTION for instance).
5853         * Control.cs: Don't paint an area bigger than the client area when painting
5854           the background colour. Add an internal GetCreateParams. Update calls to
5855           XplatUI.CalculateWindowRect due to API change.
5856         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
5857           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
5858           hasn't been handled by any windows. When creating and moving windows, X
5859           wants the location of the entire window, but the size of the client
5860           window, so add TranslateClientRectangleToXClientRectangle,
5861           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
5862           to cope with this, and call them before every window creation and move.
5863           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
5864           removing DeriveStyles). In AddConfigureNotify don't do anything if the
5865           hwnd is a zombie (fixes the BadWindow we were getting while running the
5866           tests), always calculate the offsets when it's a parentless window, not
5867           only when reparented, and translate the window size, since we're getting
5868           the client size of the whole window, excluding entire window.
5869         * Theme.cs: Added BorderSizableSize.
5870         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
5871           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
5872         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
5873           Fake the window styles here instead of in XplatUIWin32 so that all
5874           back-ends get the same window styles (and it's Form that's deciding when
5875           to use wm, not the Win32 backend anyways)
5876         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
5877           they are now passed a CreateParams and they only use Style and ExStyle
5878           to determine the rectangles (they should now work just like
5879           Win32AdjustWindowRectEx - though quite a few special cases are probably
5880           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
5881           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
5882           sizes) are taken from the current theme. Added a GetBorders helper
5883           function that will return the borders for any given CreateParams
5884           (including captions and menus), and GetBorderSize that returns the given
5885           border size only.
5886         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
5887           Hwnd.GetClientRectangle.
5888
5889 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5890
5891         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
5892           layout of the mdi children is handled by CreateParams. Fixes
5893           #79964,
5894
5895 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5896
5897         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
5898         processed.
5899
5900         * Form.cs: When active tracker mouse down is not processed, send event 
5901         back to control inside mouse position. [Fixes #81227]
5902
5903 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5904
5905         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
5906         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
5907         stealing focus from the active form on Windows.  (Control will be made
5908         visible in ShowWindow.)
5909
5910 2007-03-29  Mike Kestner  <mkestner@novell.com>
5911
5912         * ImageList.cs : add internal Changed event.
5913         * ListView.cs : hook up to StateImageList.Changed to perform
5914         invalidations when the the state icon list changes. [Fixes #81191]
5915
5916 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
5917
5918         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
5919         to prevent tooltips from stealing focus from the active form on Windows.
5920
5921 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5922
5923         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
5924
5925         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
5926
5927 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5928
5929         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
5930         balloons.
5931
5932 2007-03-29  Jackson Harper  <jackson@ximian.com>
5933
5934         * TextControl.cs: When deleting text from non multiline textboxes,
5935         we need to update the entire document, because line offsets will
5936         be shifting.
5937
5938 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
5939
5940         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
5941         added to theme, now we can create themes that uses diferent notify engines
5942         like notification-daemon from galago project or growl for Mac OS.
5943
5944 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5945
5946         * NotifyIcon.cs: Prevent Balloon to show in task bar.
5947
5948 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5949
5950         * XplatUIX11.cs: Prevent system to open more than one balloon.
5951
5952         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
5953         some compiler warning messages.
5954
5955 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
5956
5957         [Fixes #79149]
5958
5959         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
5960
5961         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
5962         implemented, this methods is used by NotifyIcon.BalloonWindow class.
5963
5964         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
5965         systems.
5966
5967 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5968
5969         * ListViewItem.cs: Forgot to make Invalidate internal.
5970
5971 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5972
5973         * ListView.cs: Add a InvalidateSelection method to
5974         invalidate methods which are currently selected, and call
5975         it when setting FullRowSelect and HideSelection, instead of
5976         calling Redraw.
5977
5978 2007-03-28  Chris Toshok  <toshok@ximian.com>
5979
5980         * XplatUIX11.cs (UnmapWindow): reindent this block.
5981
5982         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
5983         the selection_start if we're moving the selection (that is, not
5984         extending it). Fixes bug #80461.
5985
5986 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5987
5988         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
5989         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
5990         create private ControlCollection.
5991
5992 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5993
5994         * Control.cs: We need to call OnVisibleChanged for our implicit
5995         children as well as our normal children.  Fixes scrollbars in
5996         comboboxes not showing up.
5997
5998 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
5999
6000         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
6001         the check for IsHandleCreated first.  The check in CreateHandle is not
6002         good enough because CreateHandle can be overriden, and the override 
6003         should not be called if the handle is already created.
6004
6005 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
6006
6007         * ToolStrip.cs: Remove MonoTODO for tooltips.
6008         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
6009         * ToolStripContainer.cs: Add custom ControlCollection class.
6010         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
6011         * ToolStripDropDown.cs: Add some missing properties/methods.
6012         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
6013         * ToolStripItem.cs: Remove MonoTODO for tooltips.
6014         * ToolStripManager.cs: Add IsShortcutDefined.
6015         * ToolStripOverflow.cs: Override LayoutEngine.
6016         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
6017         * ToolStripSeparator.cs: Add ImageKey.
6018
6019 2007-03-28  Jackson Harper  <jackson@ximian.com>
6020
6021         * TextControl.cs: If a char delete removes a line ending, we need
6022         to update the ending style.
6023         - Make sure the line ending calcs get called.
6024
6025 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6026
6027         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
6028           it was making the new code not work. Fixed a typo in the new code
6029           as well. Fixes #79826.
6030
6031 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6032
6033         * XplatUIWin32.cs:
6034         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
6035         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
6036         - SystrayBalloon method implemented.
6037         [Add support for notifyicon balloon on win32, #79149]
6038
6039 2007-03-27  Mike Kestner  <mkestner@novell.com>
6040
6041         * ThemeWin32Classic.cs : update StateImageList selection to mirror
6042         the ms behavior when only one image is added to the list.
6043         [Fixes #81191]
6044
6045 2007-03-27  Jackson Harper  <jackson@ximian.com>
6046
6047         * TextControl.cs: Improvements to non multiline line ending
6048         drawing/measuing.
6049
6050 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6051
6052         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
6053
6054 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6055
6056         * NotifyIcon.cs: 
6057         - Balloon message handling added.
6058         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
6059
6060         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6061         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
6062         to SystrayBalloon to me like other Systray method, also a
6063         handle parameter added.
6064
6065 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6066
6067         * ListView.cs: Show scrollbars even when items.Count == 0
6068         but the columns Width is bigger than the ListView.Width.
6069         Also, when columns.Count == 0 set layout_wd and layout_ht
6070         to the ClientRectangle values, so we don't show any scrollbar
6071         in that case.
6072
6073 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6074
6075         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
6076
6077 2007-03-27  Jackson Harper  <jackson@ximian.com>
6078
6079         * RichTextBox.cs: The RTF library decodes the text properly for us
6080         now.
6081
6082 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6083
6084         * ListView.cs: Display HeaderControl even when columns.Count == 0.
6085         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
6086         ListView header (HeaderControl), instead of Control.BackColor.
6087
6088 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6089
6090         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
6091         Fixes tab control issues where controls would not show up because they
6092         never received their OnVisibleChanged call.
6093
6094 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
6095
6096         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
6097         BalloonTipShown).
6098
6099 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
6100
6101         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
6102         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
6103         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
6104         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
6105         the handle.  Fix WindowState by using the internal variable until we are 
6106         sure that we've been shown.
6107         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
6108         max or min.
6109         [Fixes bug #81198]
6110
6111 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6112
6113         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
6114           (at least borders). Fixes #79386 on Linux (with a small difference
6115           in behaviour: when trying to resize a caption-less window metacity
6116           shows the sysmenu. Resizing is still possible though).
6117         * XplatUIWin32.cs: When setting window styles send request an extra
6118           WM_NCCALCSIZE when it's a form without title (due to no text and no
6119           caption), since Win32 seems to calculate it wrong the first time we
6120           get the message, though the second time things work as they should.
6121         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
6122           newly reparented window might show up unparented. Update
6123           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
6124           there's no title text. Fixes #79386.
6125
6126 2007-03-27  Mike Kestner  <mkestner@novell.com>
6127
6128         * ListBox.cs : don't perform invalidations if the handle hasn't been
6129         created.  [Fixes #80753]
6130
6131 2007-03-27  Mike Kestner  <mkestner@novell.com>
6132
6133         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
6134         [Fixes #80428]
6135
6136 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6137
6138         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
6139         needed to implement Balloon.
6140
6141 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6142
6143         * ListViewItem.cs: In the constructors that take
6144         an array of strings, don't use ListViewSubItemCollection.AddRange
6145         method to add items, since we need to have a different behaviour (in
6146         the constructors we add an item for each null string, opposed to
6147         the behaviour of AddRange, which adds nothing).
6148
6149 2007-03-26  Andreia Gaita  <avidigal@novell.com>
6150
6151         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
6152
6153 2007-03-26  Jackson Harper  <jackson@ximian.com>
6154
6155         * TextControl.cs: Draw and measure line endings when in non
6156         multiline mode.
6157         - When searching the text, count the end of the last line as a
6158         word boundary.
6159
6160 2007-03-26  Jackson Harper  <jackson@ximian.com>
6161
6162         * RichTextBox.cs: The selection_start and selection_end don't
6163         really track the correct tags for the selection. So we'll manually
6164         compute the correct tag here.
6165
6166 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6167
6168         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
6169           and Continuous styles. Fixes #79469.
6170
6171 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6172
6173         * ToolStrip.cs: Implement Tooltips.
6174         * ToolStripItem.cs: Create internal method for determining tooltip.
6175
6176 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
6177
6178         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
6179
6180 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6181
6182         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
6183         it prevents a problem thak keeps icon visible after application 
6184         closes on win32.
6185
6186 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
6187
6188         * NotifyIcon.cs: Balloon properties and methods created.
6189
6190         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6191         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
6192
6193 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
6194
6195         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
6196
6197 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6198
6199         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
6200         parameter indicates which aspects were explicit/user-set.
6201         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
6202
6203 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
6204
6205         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
6206         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
6207         SmallChange, and Value (2.0).
6208         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
6209
6210 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6211
6212         * ListView.cs: Always set item_control.Width in LayoutDetails
6213         if View is Details. Setting it later in CalculateScrollBars
6214         in a not-so-corner scenario (the sum of columns width is
6215         not bigger than the ListView width when handle is created, and then
6216         that sum gets bigger by increasing the width of the columns)
6217         causes a very weird recursion path (which shouldn't be happening,
6218         since header_control sets it in CalculateScrollBars too). This bug
6219         appeared after Chris' fixes for handle created issues, so probably
6220         it's related to some handle-creation time.
6221
6222 2007-03-23  Chris Toshok  <toshok@ximian.com>
6223
6224         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
6225         case where there's an add row, just so we don't end up in a case
6226         where it's not displayed (this happens when the row is partially
6227         obscured).  Fixes bug #79574.
6228
6229 2007-03-23  Jackson Harper  <jackson@ximian.com>
6230
6231         * TextControl.cs:
6232         * TextBoxBase.cs:
6233         * RichTextBox.cs: Preserve line endings in the lines text buffer,
6234         also added an enum that represents the line ending type. 
6235
6236 2007-03-23  Andreia Gaita  <avidigal@novell.com>
6237
6238         * NumericUpDown.cs: Fix logic so Text and Value properties are not
6239         messed with in every method call, but only from DownButton, 
6240         UpButton, UpdateEditText() and ValidateText. Fixes #80346
6241
6242 2007-03-23  Chris Toshok  <toshok@ximian.com>
6243
6244         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
6245         format objects if the format spec is "".  Fixes bug #80889.
6246
6247 2007-03-22  Miguel de Icaza  <miguel@novell.com>
6248
6249         * ToolStripPanel.cs (Join): added stubs to build PDN3
6250
6251         * Control.cs (AutoScrollOffset): Add.
6252
6253         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
6254         property, its only implemented for Win32, on X11 it defaults to
6255         some hardcoded value.
6256
6257         * ToolStripItem.cs (AllowDrop): Add property
6258
6259 2007-03-22  Mike Kestner  <mkestner@novell.com>
6260
6261         * ListView.cs : in FullRowSelect Details mode, only enable box
6262         selection if the user clicks over the "item" column outside of the
6263         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
6264
6265 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6266
6267         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
6268           handle is not created yet.
6269         * Form.cs: Select: Don't call CreateHandle if the handle is already
6270           created, avoids a stack overflow on Windows when we are recreating
6271           controls.
6272         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
6273           they are made visible, and override AfterTopMostControl to keep
6274           them on top when other controls are brought to front.
6275           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
6276           or force_*scroll_visible is true (old implementation always shows
6277           scrollbars when needed, no matter what auto_scroll was set to).
6278         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
6279           IsHandleCreated check.
6280
6281 2007-03-22  Andreia Gaita  <avidigal@novell.com>
6282
6283         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
6284         row or col separator.
6285         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
6286
6287 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6288
6289         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
6290
6291 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6292
6293         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
6294         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
6295         every time. Fixes #80410.
6296
6297 2007-03-22  Chris Toshok  <toshok@ximian.com>
6298
6299         * BindingSource.cs (AddNew): partially implement.
6300
6301         remove a couple of NotImplementedException's
6302         to get bug #81148 closed.
6303
6304 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
6305
6306         [Fixes #80380]
6307         
6308         * Control.cs:
6309         - UpdateCursor method added to update the screen cursor.
6310         - GetAvailableCursor method added to return cursor for enabled tree,
6311         it searches for cursor on control and it's parent's for enabled control.
6312         - Call UpdateCursor method on setter of Cursor property.
6313         - On setter of Enabled call UpdateCursor when it is false, we need to
6314         change cursor to normal (or to this parent cursor) because cursor 
6315         setting theres no effect to disabled controls.
6316         - Some minor source changes to follow the coding style guidelines.
6317
6318         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
6319         controls.
6320
6321 2007-03-22  Chris Toshok  <toshok@ximian.com>
6322
6323         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
6324         generates.
6325
6326 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6327
6328         * XplatUIX11.cs: Implement default locations for forms.
6329         * Form.cs: Completely rework startup location for forms. Fixes #79964.
6330         * Hwnd.cs: Add previous_child_startup_location (to track the current
6331           startup location for any child forms of the current form) and
6332           previous_main_startup_location (to track the startup location for
6333           the current toplevel form).
6334
6335 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6336
6337         * Control.cs: Don't trigger a layout if an implicit control is added
6338         that isn't visible.  Also, don't notify the owner when an implicit control
6339         is added.  (Owners shouldn't even know about their implicit controls.)
6340
6341 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6342
6343         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
6344         to save some re-layouts.
6345
6346 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
6347
6348         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
6349         [Fixes #81203]
6350
6351 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
6352
6353         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
6354         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
6355
6356 2007-03-21  Mike Kestner  <mkestner@novell.com>
6357
6358         * ListView.cs : disable selection update for non-left button clicks
6359         with mods and over selected items.  [Fixes #80524]
6360
6361 2007-03-20  Jackson Harper  <jackson@ximian.com>
6362
6363         * TextControl.cs:
6364         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
6365         \r\r\n, \n.
6366
6367 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6368
6369         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
6370           very probably a more complicated calculation there. Update the
6371           textbox' ForeColor and BackColor when the ComboBox' colors are
6372           changed. Change the border change in LayoutComboBox to only affect
6373           the textbox, not all the calculations there. Seems to fix most of
6374           #79436.
6375
6376 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6377
6378         * ComboBox.cs: Handle Home and End keys as well as all combinations of
6379           modifiers + navigation keys as input keys, enables advanced text
6380           selection in the combobox (like Shift+Left Arrow for instance).
6381           ComboTextBox now overrides Focused and returns whatever
6382           ComboBox.Focused returns, since it really should be focused
6383           whenever the ComboBox is. Fixes #80795. Also make the border around
6384           the text box one pixel bigger, as mentioned in #79436.
6385
6386 2007-03-20  Jackson Harper  <jackson@ximian.com>
6387
6388         * TreeView.cs: Don't offset the images, this was causing some
6389         artifacts when expanding/collapsing with images that were the
6390         exact height of the treenode.
6391
6392 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6393
6394         * TrackBar.cs: Query the theme for the correct value when the mouse
6395           moves and the thumb is pressed. 
6396         * Theme.cs: Added TrackBarValueFromMousePosition
6397         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
6398           implementation was updating the trackbar value when drawing, now
6399           the drawing methods only draw. Fixes #80900. Refactored the
6400           calculations out to TrackBarValueFromMousePosition and
6401           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
6402           according to the mouse position whenever it wants to. Changed the
6403           light coloured pen when drawing the thumb from ControlLight to
6404           ControlLightLight, because the ControlLight is the same colour as
6405           the background so the 3D effect is lost. 
6406
6407 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6408
6409         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
6410         defined. Fixes #80784.
6411
6412 2007-03-20  Marek Habersack  <mhabersack@novell.com>
6413
6414         * ContextMenuStrip.cs: align with the change introduced in
6415         revision 74664.
6416
6417 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6418
6419         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
6420         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
6421         in SetTopmost.
6422
6423 2007-03-19  Chris Toshok  <toshok@ximian.com>
6424
6425         * Control.cs (WmPaint): don't make use of the Handle property
6426         after an event is emitted, as the user could have closed the
6427         form/destroyed the control.  Store the Handle in a local variable
6428         and make use of that.  Fixes bug #80768.
6429
6430 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6431
6432         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
6433         behavior in X11 environments.
6434
6435 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6436
6437         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
6438         because on setter of topmost we dont call SetTopmost when handle is not
6439         created.
6440
6441 2007-03-20  Jackson Harper  <jackson@ximian.com>
6442
6443         * TextControl.cs: Need to use SelectionLength () not
6444         selection_length, since that var is reset to -1.
6445         - Draw the caret when we don't have focus.
6446         * TextBox.cs: The selectall actually doesn't occur until the first
6447         focus.
6448         * TextBoxBase.cs: Need to update the caret position after a
6449         selectall.
6450         
6451 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6452
6453         * ListView.cs: Enable scrolling when using Tile view.
6454
6455 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
6456
6457         [Fixes #80902]
6458
6459         * XplatUIDriver.cs: Abstract SetOwner method created.
6460
6461         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
6462         must be implemented and was masked as todo.
6463
6464         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
6465         GWL_HWNDPARENT.
6466
6467         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
6468         cheking for null owner to remove transient. The SetTopmost will be change
6469         on a decond step.
6470
6471         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
6472         SetTopmost. Now owned forms will work properly in win32 and X11.
6473
6474 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6475
6476         * MdiWindowManager.cs: Update function name.
6477         * Form.cs: After closing a form MdiParent is always null.
6478         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
6479           better what it should do: necessary book-keeping when the form is
6480           closed, it should not close the form itself.
6481
6482 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6483
6484         * ListViewItem.cs: Fix back and fore color. The subitems only
6485         use their own colors if they are set, otherwise use the listview's
6486         colors. Don't set default colors on constructor for subitem.
6487         Fixes #79315.
6488
6489 2007-03-19  Mike Kestner  <mkestner@novell.com>
6490
6491         * ListView.cs : make box selection for Details views with 
6492         FullRowSelect conform to MS behavior when clicking in the "item" 
6493         column and clicking outside the defined columns.
6494         [Fixes case 5-6 of #80374]
6495
6496 2007-03-19  Chris Toshok  <toshok@ximian.com>
6497
6498         * ScrollableControl.cs: create the controls from within the ctor,
6499         but don't actually add them until our handle is created.  this
6500         fixes a NRE possibility jpobst found (if you override OnLayout in
6501         a subclass, it's called before your ctor).  Also, add a
6502         IsHandleCreated guard to UpdateSizeGripVisibility as well.
6503
6504 2007-03-19  Jackson Harper  <jackson@ximian.com>
6505
6506         * TextBox.cs: Reduce the amount of invalidation we do.
6507         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
6508         some of them are true by default on MS.
6509         - Add some functions to reduce the amount of invalidates we do.
6510         * TextControl.cs: Less invalidation.
6511
6512 2007-03-19  Chris Toshok  <toshok@ximian.com>
6513
6514         [ Fixes #81773, and *seems* to fix #81553 as well ]
6515
6516         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
6517         AccumulateDestroyedHandles.  We need to do it *after* we send
6518         WM_DESTROY, as the user's code can access Control.Handle in
6519         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
6520         move the WM_DESTROY/zombie handling to before the call to
6521         XDestroyWindow.  For some reason without this ordering
6522         FormTest.RecreateHandle hangs.  This ordering is semantically
6523         equivalent, however, as XDestroyWindow is async anyway.
6524
6525 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
6526
6527         * RichTextBox.cs: Reset backcolor_set after setting default.
6528
6529 2007-03-19  Chris Toshok  <toshok@ximian.com>
6530
6531         * ScrollableControl.cs: the scroll position should not effect the
6532         canvas size.  commit patch from georgegiolfan@yahoo.com, which
6533         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
6534         
6535 2007-03-19  Chris Toshok  <toshok@ximian.com>
6536
6537         * ScrollableControl.cs: clean this up a bit.  create the
6538         scrollbars in the ctor and just show/hide them as needed.  Also,
6539         make hscroll_visible/vscroll_visible internal to Recalculate, and
6540         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
6541         everywhere else.  This seems to fix the scrollbars appearing
6542         beneath the content for me (i have *no* idea why that is,
6543         however.)
6544
6545 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6546
6547         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
6548         some redundacy for stuff in Anchor and Dock that base will take care of.
6549         [Fixes #80762]
6550
6551 2007-03-19  Mike Kestner  <mkestner@novell.com>
6552
6553         * ListView.cs : make box selection for Details views without 
6554         FullRowSelect dependent on the text bounds, not item bounds.
6555         * ListViewItem.cs : add an internal property to obtain the TextBounds
6556         in Details view.  [Fixes case 1-4 of #80374]
6557
6558 2007-03-19  Andreia Gaita  <avidigal@novell.com>
6559
6560         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
6561         we're < 2.0. #78448 && #80316
6562
6563 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
6564
6565         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
6566         have the same style available as the previously selected one.  Also,
6567         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
6568
6569 2007-03-19  Jackson Harper  <jackson@ximian.com>
6570
6571         * TextControl.cs: Add an alignment property that all new lines
6572         will be given.
6573         - Make sure to use the align shift when calculating the line's X
6574         position.
6575         * TextBox.cs: Set the alignment on the document as well as on all
6576         the document lines.
6577
6578 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6579
6580         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
6581           throw if setting the parent of an mdichild that already has an
6582           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
6583           AssemblyProductAttribute in the assembly, use the type's namespace (as
6584           MS seems to do). CreateControl: don't create the handle if the control
6585           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
6586           create handle if the control is not a form. Change FocusInternal to
6587           virtual so that it can be overriden by Form.
6588         * TextBox.cs: Update call to FocusInternal.
6589         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
6590           form is not a toplevel form when it's a mdi child, so update is_toplevel
6591           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
6592           hasn't been created. Show (IWin32Window): Don't allow this overload for
6593           toplevel windows. CenterToParent/CenterToScreen/Select: create the
6594           handle as MS does. SetVisibleCore: if called on a MdiChild and the
6595           parent isn't visible yet, save the visibility and restore it when the
6596           parent is made visible.
6597         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
6598           methods, since the visibility of the scrollbars can be changed from
6599           several places, not only from AutoScroll.
6600           [Fixes #81179]
6601
6602 2007-03-19  Jackson Harper  <jackson@ximian.com>
6603
6604         * RichTextBox.cs: Enable shortcuts by default.
6605         * TextBoxBase.cs: Add conditional shortcuts.  
6606
6607 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6608
6609         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
6610
6611 2007-03-19  Chris Toshok  <toshok@ximian.com>
6612
6613         [ Fixes bug #80604]
6614         
6615         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
6616         swallow the message we're waiting on, instead of delivering it, as
6617         this is only used for the WM_SHOWWINDOW raised from
6618         MapWindow/UnmapWindow, and the message needs to be generated
6619         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
6620         before doing the Map/Unmap.  Also make sure that the Hwnd is still
6621         alive after the message has been handled.
6622
6623         *before* the window is shown.
6624
6625         * Control.cs (CreateControl): guard a few more things inside the
6626         if (!is_created) block, as we might end up being called again -
6627         yay .net.
6628         (WmShowWindow): call CreateControl if we're showing the control.
6629
6630 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6631
6632         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
6633           controls without a handle if they have any parent with a handle. In
6634           Dispose add a check whether the handle is created or not before
6635           calling BeginInvoke, this removes the need of the extra disposing
6636           parameter (which was bogus anyway since it didn't prevent the
6637           invoke from happening, it only skipped the check for an existing
6638           handle, meaning that the invoke would call on an inexistent
6639           handle).
6640
6641 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
6642
6643         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
6644         appears in taskbar.
6645
6646 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6647
6648         * MessageBox.cs:
6649         - Fixed a problem that dont show help button for messages with 3 buttons.
6650         - Refactory button size and position calculations, now dont use fixed 
6651         values, also fixed button sizes (#80043) and form's border space.
6652         - AddButton method created, now all other AddButton methods call this one.
6653         - Some other source code cosmetic changes.
6654
6655 2007-03-18  Jackson Harper  <jackson@ximian.com>
6656
6657         * RichTextBox.cs: Don't do this all fonts must match check if
6658         there is only one char selected.
6659
6660 2007-03-18  Jackson Harper  <jackson@ximian.com>
6661
6662         * TreeView.cs: ScrollWindow works properly now, so we don't need
6663         to screw around with the scroll area.  This fixes some artifacts
6664         when expanding and collapsing.
6665
6666 2007-03-18  Jackson Harper  <jackson@ximian.com>
6667
6668         * TextBoxBase.cs: Allow updating the selection position when the
6669         cursor is outside the textarea, but we have a capture.
6670         * TextControl.cs: A special case for when the cursor is outside
6671         the bounds of the TB.
6672         
6673 2007-03-18  Jackson Harper  <jackson@ximian.com>
6674
6675         * TextBoxBase.cs: Remove image pasting code for now.  There is no
6676         way to get an image on the clipboard right now anyways.
6677         * TextControl.cs:
6678         * RichTextBox.cs: Use the new RTF Picture class for pictures.
6679
6680 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
6681
6682         * MessageBox.cs:
6683         - Set window properties in constructor intead of on CreateParams.
6684         - Remove topmost from Window ExStyle.
6685         - Set ShowInTaskbar to false.
6686         - Set form border to FixedDialog.
6687         - Some cosmetic changes and remove unneeded comments.
6688         - It fixes itens 2,3 and 4 of bug #80043.
6689
6690 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
6691
6692         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
6693         none was explicitly set. Fixes part of bug #79949.
6694
6695 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6696
6697         * ToolStripComboBox.cs: Add AutoComplete*.
6698
6699 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
6700
6701         * ToolStripComboBox.cs: Add FlatStyle.
6702
6703 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
6704
6705         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
6706         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
6707
6708 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6709
6710         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
6711           CheckBox.cs, RadioButton.cs, BindingSource.cs,
6712           DataGridColumnStyle.cs: Remove warnings.
6713
6714 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6715
6716         * Menu.cs: MergeMenu: Check menu argument for null before looping over
6717           it.
6718         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
6719           visibility of mdi child forms. FormSizeChangedHandler: update the
6720           maximized size if size has changed while maximized.
6721         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
6722           creating the handle.
6723         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
6724           avoid creating the handle if not created.
6725         * XplatUI.cs: Update debug output.
6726         * XplatUIStructs.cs: Added ToString's for a couple of structs.
6727
6728 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
6729
6730         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
6731         ProcessCmdKey().
6732         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
6733         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
6734         Implement keyboard shortcuts.
6735
6736 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6737
6738         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
6739         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
6740         ColorDialog and all derived classes.
6741
6742 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
6743
6744         [ Fixes bug #79828 ]
6745
6746         * ToolBar.cs:
6747         - Rename ToolBarButtonInfor to ToolBarItem.
6748         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
6749         - Maintain an array of ToolBarItem, used instead of ToolBarButton
6750         collection to be able add same button more than one time on a toolbar.
6751         - Refactory all properties and methods to use ToolBarItem. 
6752
6753         * ToolBarButton.cs: 
6754         - Remove all propeties and methods that is now in ToolBarItem.
6755         - Rectangle propery now gets the rectangle from first ToolBarItem to
6756         mimic win32 behavior.
6757         - Size calculation and layout methods also removed.
6758
6759         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
6760         ToolBarItem instead of ToolBarButton to right drawing buttons when
6761         same button/separator was added more than one time to ToolBar.
6762
6763         * ThemeNice.cs: Same as above. 
6764
6765 2007-03-15  Andreia Gaita  <avidigal@novell.com>
6766
6767         * XplatUIX11.cs: Fire extra MouseMove events right after
6768         MouseDown and MouseUp, emulating win32's <censored> behaviour
6769         for apps that rely on it.
6770
6771 2007-03-15  Jackson Harper  <jackson@ximian.com>
6772
6773         * TextControl.cs:
6774         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
6775         it is drawn on the controls client window and there is no NC
6776         area.
6777         - Set the background color to gray on 2.0 when we are readonly.
6778
6779 2007-03-15  Chris Toshok  <toshok@ximian.com>
6780
6781         [ Fixes bug #81144 ]
6782         
6783         * XplatUIX11.cs: implement VirtualScreen independently of
6784         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
6785         property.
6786
6787 2007-03-15  Chris Toshok  <toshok@ximian.com>
6788
6789         * Hwnd.cs: add an internal field for the cached_window_state.
6790
6791         * XplatUIX11.cs: cache the window state, invalidating the cache
6792         (and thus re-querying the X server) only when we see an update to
6793         the _NET_WM_STATE property.
6794
6795 2007-03-15  Chris Toshok  <toshok@ximian.com>
6796
6797         * BindingSource.cs: get a lot of the unit tests working.
6798
6799 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6800
6801         * Control.cs: Modify UpdateStyles to store distances when bounds >=
6802         0 instead of just bounds > 0.  [Fixes bug #80912]
6803
6804 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
6805
6806         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
6807         and methods.
6808
6809 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
6810         
6811         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
6812         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
6813         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
6814         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
6815
6816 2007-03-15  Chris Toshok  <toshok@ximian.com>
6817
6818         [ Fixes #81101 ]
6819         
6820         * Control.cs: add Ivan's fix for 81101, with a slight modification
6821         - you can set control.Target to null.
6822
6823 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
6824
6825         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
6826         HideDropDown, use Hide instead to prevent an NRE.
6827         [Fixes bug #81147]
6828
6829 2007-03-14  Jackson Harper  <jackson@ximian.com>
6830
6831         * TextBoxBase.cs: Mess with the creation stuff a little. We need
6832         to calculate the document before the handle is created, in some
6833         cases. (Actually just one case).
6834
6835 2007-03-14  Jackson Harper  <jackson@ximian.com>
6836
6837         * TextBoxBase.cs: Need to display the caret after letting the base
6838         wndproc handle the focus methods, because the caret display
6839         methods check the focus state.
6840         - Try to display the caret after updating it's position with SelectWord.
6841         - Don't need to do an immediate update on this recalc, since there
6842         will be an invalidate anyways.
6843
6844 2007-03-14  Jackson Harper  <jackson@ximian.com>
6845
6846         * TreeView.cs: Some workarounds so that we can match event order a
6847         little better.
6848
6849 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
6850
6851         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
6852         #80803. Avoid NullReferenceException when Control does not have
6853         parent. Fixed different blinkstyle issues. Only subscribe to Tick
6854         event a single time. Only draw error icon when control is created and
6855         visible. Fixes failing unit tests.
6856
6857 2007-03-14  Andreia Gaita  <avidigal@novell.com>
6858
6859         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
6860         Selecting events. Fire Leave and Enter events when changing tabs.
6861
6862 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
6863
6864         * TreeView.cs: Add TreeViewNodeSorter.
6865         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
6866
6867 2007-03-14  Chris Toshok  <toshok@ximian.com>
6868
6869         * Form.cs: go ahead and remove the RecreateHandles that jpobst
6870         removed earlier and I had him add back it.  It turns out metacity
6871         *does* in fact handle the MOTIF_WM_HINTS property changing, it
6872         just doesn't redraw the window titlebar until you resize the
6873         window.  This also means we aren't recreating the entire window
6874         hierarchy on X when you change this property.  And it looks better
6875         on windows, too.
6876
6877 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6878
6879         * ListViewItem.cs:
6880         * ListView.cs: Collecting selection information
6881         is now done in SelectedIndexCollection rather than in
6882         SelectedListViewItemCollection. This is done so we can
6883         have the selection information code in one single place
6884         (virtual mode selection information entirely depends on
6885         SelectedIndexCollection).
6886
6887 2007-03-13  Miguel de Icaza  <miguel@novell.com>
6888
6889         * ErrorProvider.cs: Add stubs for ISupportInitialize
6890
6891 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6892
6893         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
6894         in the right order with the right values, from the Checked property, 
6895         just as MS does (instead of triggering them from ListView).
6896
6897         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
6898
6899 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6900
6901         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
6902         the correct handler in OnItemCheck method (ItemCheckEventHandler 
6903         instead of EventHandler). This used to throw an InvalidCastException.
6904
6905 2007-03-13  Jackson Harper  <jackson@ximian.com>
6906
6907         * TextBoxBase.cs: Calculate the document before the handle is
6908         created, so there isn't an extra invalidate called.
6909
6910 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
6911
6912         * Form.cs: Don't set owner in ShowDialog until we are sure
6913         that we aren't going to throw an exception.  [Fixes bug #80773]
6914
6915 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
6916
6917         * TreeView.cs: Make it compile.
6918
6919 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6920
6921         * Control.cs: Another place we don't call SizeFromClientSize.
6922         * Form.cs: Another place we don't call SizeFromClientSize.
6923         [Fixes bug #81125]
6924
6925 2007-03-12  Jackson Harper  <jackson@ximian.com>
6926
6927         * TreeView.cs: Basically emulating some strangness here with
6928         exanding nodes and setting node positions when windows aren't
6929         created.
6930         - Also attempting to walk the node tree less than previously, and
6931         just use visible order calculations for determining offsets.
6932         - oops made scrolling backwards.
6933         * TreeNode.cs: We need to start nodes with a zero visible order,
6934         because the order calcs are based on the first nodes order.
6935
6936 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6937
6938         * Form.cs: Don't exit the program if RecreateHandle is called on
6939         the main form.
6940
6941 2007-03-12  Chris Toshok  <toshok@ximian.com>
6942
6943         * XEventQueue.cs: remove the use of PostQuitState.
6944
6945         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
6946         WM_QUIT message in GetMessage, return false (and if we're in the
6947         nested WaitForHwndMessage, repost the WM_QUIT message).
6948
6949 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6950
6951         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
6952         or the MaximizeBox properties.  [Part of bug #80640]
6953
6954 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
6955
6956         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
6957         no links.
6958
6959 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6960
6961         * ToolStripItem.cs: Fix some tests I broke by checking Visible
6962         instead of visible.
6963
6964 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
6965
6966         * FileDialog.cs: Use text of File name combobox to determine what
6967         files the user selected. Added tokenizer to parse the file names.
6968         Fixes bug #81123.
6969
6970 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
6971
6972         * Control.cs: We can't call SizeFromClientSize in the constructor,
6973         but we still need to do the same work, so make an internal version.
6974         [Fixes bug #80621]
6975
6976 2007-03-12  Jackson Harper  <jackson@ximian.com>
6977
6978         * TreeView.cs:
6979         * TreeNode.cs:
6980         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
6981         IsExpanded.
6982
6983 2007-03-12  Jackson Harper  <jackson@ximian.com>
6984
6985         * TextBoxBase.cs: Now that the handles are being created a little
6986         later, we need to make sure that the document is recalculated when
6987         the handle is created.
6988
6989 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
6990
6991         * Theme.cs: GetLinkFont abstract method added.
6992         
6993         * LinkLabel.cs: 
6994         - Remove CalcTrimRectangle, no longer needed.
6995         - Factor also remove, position issues must be fixed in libgdiplus.
6996         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
6997         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
6998         care about font used to draw links.
6999         - Set TabStop to true when control is "Selectable", control is selectable
7000         when have one or more links. Fixes #80501 (test case is also added).
7001         - Set the LinkArea values after links change, LinkArea values must be
7002         based in first link position and size, a test case was created.
7003         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
7004         the attribute must be true LinkArea.Length > 0. The same was applied to
7005         TabStop.
7006         
7007         * ThemeWin32Classic.cs: 
7008         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
7009         in draw method.
7010         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
7011         color change.
7012         - Draw focus rectangle for every parts focused, including parts that 
7013         is on another line, its because regions returns various rectangles
7014         and not only one. Needed to mimic W32 look.
7015         - Uses Graphics.Clip to delimite region painted, it mean that now 
7016         complete text is passed to DrawString, with this we solve layout
7017         issues without create another text renderer.
7018         - Uses Region.Intersect to fix some flickers problems, now only needed
7019         parts will redrawed.
7020         - This changes fixes #79614 and some other unreported issues, on Linux 
7021         some layout problems still remain, the problem is under 
7022         MeasureCharacterRanges but it is an libgdiplus bug.
7023
7024 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
7025
7026         * TextBox.cs: Set for foreground color.
7027         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
7028         this is already done in Control.
7029
7030 2007-03-10  Jackson Harper  <jackson@ximian.com>
7031
7032         * TextBox.cs: Set the background color, but reset the
7033         backcolor_set flag which is just for the user setting the
7034         background color.
7035
7036 2007-03-09  Chris Toshok  <toshok@ximian.com>
7037
7038         * Control.cs: really remove the call to XplatUI.SetVisible from
7039         CreateHandle(), like I said I did when I merged the branch.
7040
7041         * BindingSource.cs: implement some more of this stuff.
7042
7043 2007-03-09  Jackson Harper  <jackson@ximian.com>
7044
7045         * TextBox.cs: Don't explicitly set our background colors.
7046         * TextControl.cs:
7047         * TextBoxBase.cs: Draw readonly text.
7048         - Need to invalidate when backcolor or readonly are changed.
7049         
7050 2007-03-09  Jackson Harper  <jackson@ximian.com>
7051
7052         * TextBoxBase.cs: Don't set the forecolor until the handle is
7053         created.
7054         - Do not raise OnPaint, and removed some old debug code.
7055
7056 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
7057
7058         * ScrollableControl.cs: Fix mouse wheel scrolling.
7059
7060 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7061
7062         * Control.cs: Wire up MouseDoubleClick event.
7063
7064 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
7065
7066         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
7067         top or bottom.
7068         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
7069         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
7070         item is added.  This logic was moved to ToolStrip.OnItemAdded.
7071         [Fixes bug #81090]
7072
7073 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7074
7075         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
7076
7077 2007-03-08  Jackson Harper  <jackson@ximian.com>
7078
7079         * TreeView.cs: Show the correct image for selected node (this used
7080         to work, not sure how the code got deleted). Also implemented 2.0 feature
7081         SelectedImageKey.
7082
7083 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7084
7085         * ListView.cs:
7086         * ListViewItem.cs: Cache index in items when retrieving them
7087         in VirtualMode.
7088
7089 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7090
7091         * ToolStripItem.cs: Don't return the explicit_size if we are using 
7092         AutoSize.  Fixes invalidation issue when user has explicitly set a
7093         size and has AutoSize = true.
7094
7095 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7096
7097         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
7098
7099 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7100
7101         * DataGridView.cs: Remove event handler from DataView when a
7102         DataTable is used as DataSource.
7103
7104 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
7105
7106         * Control.cs: Create internal setter for client_size to allow it to be
7107         set without triggering resizing code.
7108         * Form.cs: Calculate client_size in constructor, only change client_size
7109         in FormBorderStyle property if Handle has been created.
7110         [Fixes #80574, #80791]
7111
7112 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
7113
7114         * SystemInformation.cs: Add TerminalServerSession.
7115
7116 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7117
7118         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
7119         TreeView code.
7120
7121 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7122
7123         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
7124         Handle before we were supposed to.  Now checks ActivateOnShow property
7125         in Control.
7126         * Control.cs: Add internal ActivateOnShow property.
7127         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
7128         for ActivateOnShow.
7129         * Hwnd.cs Remove no longer needed no_activate field.
7130
7131 2007-03-07  Jackson Harper  <jackson@ximian.com>
7132
7133         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
7134         2.0 properties
7135         * DrawTreeNodeEventHandler.cs: Add
7136         * DrawTreeNodeEventArgs.cs: Correct default value.
7137         
7138 2007-03-07  Chris Toshok  <toshok@ximian.com>
7139
7140         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
7141         to be called before NativeWindow.WndProc.  Put the HwndCreating
7142         magic there to hook up our Hwnd's to handles.
7143
7144 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
7145
7146         * DataGridView.cs: Comment out debug code.
7147
7148 2007-03-07  Chris Toshok  <toshok@ximian.com>
7149
7150         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
7151         to make the rest of the world happy]
7152
7153         * Control.cs (CreateHandle): there's no need to call
7154         XplatUI.SetVisible here, it's effectively done by
7155         XplatUI.CreateWindow on X now, and always was on windows.
7156
7157         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
7158         shortcircuit out of the loop if we have a message loop running on
7159         this thread.
7160
7161         [Changelog from merge]
7162
7163         2007-03-05  Chris Toshok  <toshok@ximian.com>
7164
7165                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
7166                 causes handle creation.
7167
7168         2007-02-28  Chris Toshok  <toshok@ximian.com>
7169
7170                 * ApplicationContext.cs: Add a flag to make sure we only raise the
7171                 ThreadExit event once (ExitThreadCore can be indirectly called
7172                 from a few places.)  I don't like the additional flag, but it
7173                 makes the event ordering/count correct.
7174
7175                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
7176                 without locking the collection.  An enumerator doesn't give us any
7177                 protection from modification anyway.  Lock the thread hash and
7178                 replace the complicated enumerator loop with a foreach.
7179                 (Application.CloseForms): make internal so it can be called from
7180                 ApplicationContext.  This should probably be moved to MWFThread.
7181                 (Application.ExitThread): don't call MWFThread.Current.Exit()
7182                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
7183                 when the runloop exits (in response to WM_QUIT.)
7184                 (Application.RunLoop): add a comment (and check) for
7185                 context.MainForm being null after setting context.MainForm.Visible
7186                 = true.  This is because you're perfectly free to dispose of a
7187                 form in VisibilityChanged.  Chalk this up to another case where we
7188                 need to synchronously generate WM_ACTIVATE from Control.Show.
7189                 Also, add handling for WM_QUIT here so we'll exit the loop.
7190                 
7191                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
7192                 fact that we don't wait if we're only unmapping the whole_window
7193                 makes me a bit nervous, but it doesn't seem to cause any problems
7194                 yet.
7195
7196                 also, add a comment about the stupid, broken and wrong resetting
7197                 of PostQuitState to false in GetMessage().
7198
7199                 In PostQuitMessage, we need to add a WM_QUIT message to the
7200                 thread's queue.  We use the FosterParent to get the right
7201                 handle/hwnd/queue.
7202
7203                 Lastly, in SetVisible, we need to unmap both windows, since the
7204                 waiting only happens when we're unmapping the client window.  So
7205                 now, the *only* time we unmap just the whole_window is in the hack
7206                 for resizing a control to 0,0.
7207                 
7208         2007-02-21  Chris Toshok  <toshok@ximian.com>
7209
7210                 * Application.cs (CloseForms): rewrite this so that we don't
7211                 modify the list while we're traversing it.
7212
7213         2007-02-20  Chris Toshok  <toshok@ximian.com>
7214
7215                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
7216                 of OnHandleCreated.
7217                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
7218                 handle is created.  otherwise we'll create it here.
7219                 (VerticalScrollEvent): same here.
7220
7221                 * Application.cs (CloseForms): call Form.Dispose, don't post
7222                 WM_CLOSE_INTERNAL.
7223
7224                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
7225                 here. Application should Dispose() of the Form's.
7226
7227                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
7228                 WM_DESTROY as well.
7229                 (MapWindow,UnmapWindow): only actually do the waiting for
7230                 SHOWWINDOW if the control we're dealing with is a Form.
7231                 (CreateWindow): if the control isn't a form, SendMessage
7232                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
7233
7234                 * Control.cs (SetVisibleCore): always use is_visible here, not
7235                 value.  If we use value, we can end up re-setting something
7236                 visible if, for instance, you do Control.Hide() in a delegate
7237                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
7238
7239         2007-02-20  Chris Toshok  <toshok@ximian.com>
7240
7241                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
7242                 the message we need.  PeekMessage returning false should not be a
7243                 condition under which we exit the loop.
7244
7245         2007-02-15  Chris Toshok  <toshok@ximian.com>
7246
7247                 * Control.cs (Refresh): only refresh if we've got a handle and are
7248                 visible.
7249                 (CreateAccessibilityInstance): CreateControl() here.
7250                 (UpdateChildrenZOrder): complicate the code loop even more by
7251                 taking into account controls that haven't had their handle
7252                 created, and those that aren't visible.  But on the flip side,
7253                 simplify the code by splitting it into two loops.  one which
7254                 builds up the list of child controls we're interested in, and the
7255                 other that sets the z order of those children.
7256
7257         2007-02-14  Chris Toshok  <toshok@ximian.com>
7258
7259                 * Control.cs: Control.AccessibilityObject causes the control to be
7260                 created, not just the handle.
7261
7262         2007-02-14  Chris Toshok  <toshok@ximian.com>
7263
7264                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
7265                 problem on X where a window might have its handle created (and be
7266                 visible) while the window is unmapped.  calling XConfigureWindow
7267                 on an unmapped window is bad, and generates X errors.
7268
7269         2007-02-13  Chris Toshok  <toshok@ximian.com>
7270
7271                 * Control.cs (CreateHandle): don't loop over our children setting
7272                 their parent here.  do it when in WndProc when we're shown.
7273                 (UpdateChildrenZOrder): make this internal so we can call it from
7274                 ScrollableControl.
7275                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
7276                 creating its handle.  Also, remove the calls to PerformLayout from
7277                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
7278                 OnVisibleChanged only seems to be called directly here for the
7279                 toplevel control.  It's propagated down the window hierarchy by
7280                 calls to child.OnParentVisibleChanged.
7281                 (OnVisibleChanged): don't do layout here - it's done (oddly
7282                 enough, according to a glance at stack traces on ms.net..) in
7283                 ScrollableControl.
7284                 
7285                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
7286                 z order of our children before calling PerformLayout.
7287
7288         2007-02-12  Chris Toshok  <toshok@ximian.com>
7289
7290                 [big change, fixes #80020]
7291                 
7292                 * AccessibleObject.cs: we need to make owner internal again to fix
7293                 some of ControlAccessibleObject.
7294
7295                 * Control.cs: lots of changes here.  add support for WM_CREATE,
7296                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
7297                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
7298                 we create child controls.  leave the MonoTODO's for the
7299                 accessibility calls, but fix the exceptions so the tests pass.
7300
7301                 Add the InvalidOperationExceptions to Invoke methods, and remove a
7302                 couple of InvokeInternal methods we aren't using.
7303                 
7304                 Also, add a couple of CreateHandle calls in places where we know
7305                 the handles are being created but our code doesn't reference
7306                 .Handle.
7307
7308                 Make SetVisibleCore call OnVisibleChange if the handle isn't
7309                 created.  If the handle is created, we rely on XplatUI.SetVisible
7310                 generating the event synchronously.
7311                 
7312                 Lastly, make sure we don't use this.Handle inside CreateHandle,
7313                 because we can call back into client (and that code can dispose of
7314                 the control).
7315
7316                 * XplatUIStructs.cs: misc/cleanup.
7317
7318                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
7319                 although we don't populate the wParam properly.
7320                 (CreateWindow): generate WM_CREATE.
7321                 (MapWindow,UnmapWindow): make these calls synchronous, at great
7322                 performance expense (particularly in the unmap case), to match
7323                 win32 behavior.
7324
7325                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
7326                 to call it.
7327                 (set_MdiParent): don't recreate the handle unless it's been
7328                 created already.
7329                 
7330                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
7331                 it's created.
7332
7333                 * NativeWindow.cs: this is probably the weirdest part of the
7334                 patch.  We need a way to link up the window being created to the
7335                 WM_CREATE message.  Since we can only be creating one window at a
7336                 time on a given thread, we keep track of a per-thread reference so
7337                 we can dispatch it properly.  We also need to keep track of the
7338                 Hwnd currently being created so that the win32 backend doesn't
7339                 have problems.
7340                 
7341                 * XplatUIWin32.cs: a similar change to the one we made in
7342                 NativeWindow.cs.
7343
7344 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
7345
7346         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
7347         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
7348         to draw the menu shortcut string.
7349
7350 2007-03-07  Jackson Harper  <jackson@ximian.com>
7351
7352         * TreeNode.cs: Add the 2.0 collapse method.
7353
7354 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7355
7356         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
7357
7358 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7359
7360         * DataGridView.cs: Change DataSource will clear column and row
7361         lists. Call Invalidate() to reflect DataSource change.
7362
7363 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7364
7365         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
7366         and a new row is added to it.
7367
7368 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
7369
7370         * DataGridView.cs: Add columns when DataSource is en empty list but
7371         is a System.Data.DataView (from a System.Data.DataTable).
7372
7373 2007-03-06  Andreia Gaita  <avidigal@novell.com>
7374
7375         * Label.cs: Implement AutoEllipsis (2.0)
7376
7377 2007-03-06  Jackson Harper  <jackson@ximian.com>
7378
7379         * TreeView.cs: Implement 2.0 TopNode setter property.
7380         - Use a local var instead of the skipped_nodes field for computing
7381         how many nodes to skip.  Otherwise we won't scroll because the
7382         valuechanged handler checks if skipped_nodes is equal to the new
7383         value.
7384         - Implement 2.0 Sort method.
7385         - Add useless 2.0 DoubleBuffer property
7386         - Implement 2.0 LineColors property.  Lets you change the color of
7387         the lines in the tree. Terribly useful for creating non cohesive
7388         desktops.
7389         - Implement 2.0 image key feature.
7390
7391 2007-03-06  Jackson Harper  <jackson@ximian.com>
7392
7393         * TreeView.cs: We can't get the bounds of the nodes before raising
7394         the AfterSelect event, because that event could change the node's
7395         bounds (scrolling, font change, etc).
7396
7397 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7398
7399         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
7400         * Form.cs: Don't recreate handle when creating FormWindowManager, just
7401           update window styles. In CreateParams us VisibleInternal instead of
7402           VIsible to get the actual visible flag set for this form.
7403         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
7404           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
7405           handle the case when the form is already maximized, in which case
7406           it should be restored. Fixes #81043.
7407
7408 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7409
7410         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
7411
7412 2007-03-05  Jackson Harper  <jackson@ximian.com>
7413
7414         * TreeViewHitTestInfo.cs: implement.
7415
7416 2007-03-05  Jackson Harper  <jackson@ximian.com>
7417
7418         * InternalWindowManager.cs: class status fix.
7419
7420 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7421
7422         * InternalWindowManager.cs: All windows that have a parent
7423         are confined to their parent when they're being moved.
7424         Fixes #80822.
7425
7426 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
7427
7428         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
7429         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
7430
7431 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7432
7433         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
7434           buttons invisible before deciding which ones should be visible
7435           (fixes minimize/maximize buttons showing up in toolwindows). Remove
7436           an unused variable.
7437         * InternalWindowManager.cs: Remove warning.
7438
7439 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7440
7441         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
7442         to throw an InvalidOperationException is virtual mode is being used.
7443
7444 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7445
7446         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
7447         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
7448         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
7449         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
7450         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
7451         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
7452
7453 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7454
7455         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
7456           driver.KeyboardDelay from XplatUI.KeyboardDelay 
7457         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
7458           (patch by Sergey Volk)
7459
7460 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7461
7462         * ToolWindowManager.cs: Added, contains logic for
7463           tool windows.
7464         * CreateParams.cs: Add a few helper methods and an
7465           internal variable to know which control the CreateParams belongs
7466           to.
7467         * Control.cs: Call Form.ChangingParent when the
7468           parent is about to be changed.
7469         * XplatUIX11.cs: DeriveStyles (): Set
7470           caption_height for all windows that have captions and are children.
7471           Update to use ToolWindowManager instead of InternalWindowManager
7472           for ToolWindows.
7473         * XplatUIWin32.cs: Set fake window styles for all
7474           windows that have window managers.
7475         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
7476           now duplicated for mdi windows when they are
7477           maximized, first for the buttons the window itself has, then for
7478           the buttons that appear in the menu bar. Makes things a little
7479           easier). Updated UpdateWindowDecorations, SetWindowState and the
7480           mouse eventhandlers accordingly.
7481         * Form.cs: Add ChangingParent (), contains the
7482           logic of what should happen when the parent changes. In MdiParent
7483           don't set things that ChangingParent () is doing. When handling
7484           WM_CLOSE, we can close the form if there are any other modal forms
7485           and the current form is a descendent of the modal form.
7486         * InternalWindowManager.cs: A lot of refactoring,
7487           the title buttons are now extracted to a separate container class
7488           that takes care of all button code (clicks, tooltips, etc). Moved
7489           Iconic|Maximized|Normal Bounds properties to this class from
7490           MdiWindowManager, so that the window state logic can succeed for
7491           other than mdi wm's. Implemented general window state change logic.
7492           Moved CreateButtons to ThemeWin32Classic, since the theme might
7493           override which buttons are available when as well as the exact
7494           location.
7495         * FormWindowManager.cs: Added, contains logic for
7496           normal forms.
7497         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
7498           which buttons go where (and if they are at all visible). 
7499           Removed special handling of maximized windows, since they aren't special. 
7500           In DrawManagedWindowDecorations don't try to draw the text if it is
7501           empty.
7502         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
7503           use whatever the wm gives us.
7504
7505 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
7506
7507         * ButtonBase.cs: Add 2.0 properties.
7508         * Button.cs: Override Draw for 2.0.
7509         * Control.cs: Add Entered and Selected properties.
7510         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
7511         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
7512         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
7513         buttons.
7514         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
7515
7516 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7517
7518         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
7519
7520 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
7521
7522         * XplatUIWin32.cs: Register a new class with Windows each time we get
7523         a new ClassStyle.  [Fixes bugs #79432, #80817]
7524         * Controls.cs: Set the correct ClassStyle in CreateParams.
7525         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
7526
7527 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
7528
7529         * ListView.cs: Add fireEvent argument to ReorderColumn since the
7530         ColumnReordered event must not be signaled when modifying DisplayIndex
7531         of a ColumnHeader. Added internal ReorderColumns method which takes
7532         care of drawing, and updating the internal DisplayIndex of the
7533         ColumnHeader. Added AddColumn method which is invoked from
7534         ColumnHeaderCollection when adding or inserting columns, and which
7535         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
7536         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
7537         Recalculated dispay indices after removing a ColumnHeader.
7538         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
7539         match MS. Allows last display index to be returned after ListView
7540         is disposed. Update actual location of ColumnHeader when DisplayIndex
7541         is modified.
7542
7543 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
7544
7545         * LinkLabel.cs: Improve CalcTrimRectangle.
7546         
7547         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
7548
7549 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7550
7551         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
7552         get rectangle as a result value.
7553
7554 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
7555
7556         * LinkLabel.cs: Theres some diferences between rectangle return from 
7557         MeasureCharacterRanges and the area used for DrawString to fix this 
7558         CalcMeasurementFactor method was created, it calcules the diferences
7559         to be use later to adjust rectangle in draw operations. Fixes #80473.
7560         
7561         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
7562         to adjust draw rectangle.
7563
7564 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7565
7566         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
7567         text and some other changes to reduce and optimize source code.
7568
7569 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7570
7571         * RadioButton.cs: Implement 2.0 event.
7572         * RelatedImageListAttribute.cs: Implement new class.
7573
7574 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
7575
7576         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
7577
7578 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
7579
7580         * CheckBox.cs: Implement 2.0 functionality.
7581
7582 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7583
7584         * ListView.cs: Refactor Add and AddRange methods of
7585         ListViewItemCollection, to not update the ListView
7586         everytime an item is added in AddRange. Also move the update
7587         code to a new CollectionChanged method, and call it
7588         from other methods that need it as well (this should also fix some
7589         bugs when Sorting is used).
7590
7591 2007-02-27  Jackson Harper  <jackson@ximian.com>
7592
7593         * TextControl.cs: Try to never let the caret stay in a non-text
7594         tag.
7595         * TextBoxBase.cs: Update the caret.
7596
7597 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
7598
7599         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
7600         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
7601         delete POINT structure, duplicate of one in XplatUIStructs.
7602         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
7603
7604 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
7605
7606         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
7607         edit box since otherwise the Label would immediately be set (even if
7608         the user did not modify the label). In OnKeyDown set Handled to true
7609         if Return or Escape was pressed. In ColumnHeaderCollection unlink
7610         columns that are to be removed. In ListViewItemCollection unlink items
7611         that are to be removed.
7612
7613 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
7614
7615         * TextRenderer.cs: If we set a GDI clip region, we need to clear
7616         it when we are done.  [Fixes bug #80949]
7617
7618 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7619
7620         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
7621
7622 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7623
7624         * ListView.cs: I forgot to commit the changes for ListView 
7625         in my previous patch.
7626
7627 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7628
7629         * Clipboard.cs: Partially implement an overload of SetDataObject.
7630         * Form.cs: Implement ShowWithoutActivation.
7631         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
7632
7633 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7634
7635         This is a first set of changes to make the Virtual mode works,
7636         by avoiding the retrieval of ListViewItem instances until
7637         draw time.
7638
7639         * ListView.cs: Store item position in the ListView instead of the
7640         ListViewItem, this way we don't request the Bounds property of
7641         ListViewItem inside the ListView calculations, as well as cache the item
7642         size in item_size field. Store indexes instead of ListViewItem
7643         instances in the matrix used by icon view. Add a ItemMatrixLocation
7644         struct to hold the row and col info of the matrix info.
7645
7646         * ListViewItem.cs: Don't store the location anymore, and only cache
7647         the rectangles for GetBounds. Use the ListView.GetItemLocation
7648         method to retrieve the actual location.
7649
7650 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7651
7652         * TextRenderer.cs: Add clipping support, thanks to George.
7653         [Fixes bug #80949]
7654
7655 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7656
7657         * ListViewItem.cs: Cancel label edit when item is removed from 
7658         ListView.
7659         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
7660         event before the edit textbox is displayed.  Added CancelEdit method
7661         which is used end to editing while ignoring the value set by the
7662         user. In EndEdit, set focus to ListView to avoid losing focus to
7663         other controls. In ListViewItemCollection.Clear, cancel editing of
7664         any of the items.  In Remove, cancel editing of item being removed.
7665         Avoid udplicate code by modifing RemoveAt to invoke Remove.
7666
7667 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7668
7669         * FileDialog.cs: Update FSEntry when move is successful. Fixes
7670         bug #80948.  
7671
7672 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7673
7674         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
7675         compatible with non X11 systems. Fixes #80901.
7676
7677 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
7678
7679         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
7680         whether the item should be unselected and reselect. We do no want this
7681         when we're starting to edit the label. Do not fire the 
7682         SelectedIndexChanged event from ListView when its already been fired
7683         by modifying ListViewItem.Selected. Fixes bug #80943.
7684
7685 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7686
7687         * TextRenderer.cs: Previos commit logic was backwards.
7688
7689 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
7690
7691         * TextRenderer.cs: Don't add padding on MeasureText if we were
7692         sent the NoPadding flag.
7693
7694 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7695
7696         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
7697         after DrawButton. To prevent image overlaps button borders SetClip and 
7698         ResetClip added before and after draw image. Fixes #79129.
7699
7700 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
7701
7702         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
7703         window size, it fix problem when you run under win32 that theres
7704         Size diferent than ClientSize. Also fix controls size and positions
7705         to mimic Win32. Fixes #80837.
7706
7707 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
7708
7709         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
7710         menu area to fix some problems for non X11 systems. Fixes #80613.
7711
7712 2007-02-22  Jackson Harper  <jackson@ximian.com>
7713
7714         * TreeNode.cs: When a node is expanded, set its is_expanded flag
7715         even if it doesn't have any children.
7716
7717 2007-02-22  Jackson Harper  <jackson@ximian.com>
7718
7719         * TreeView.cs: Calculate the top node 'on the fly', this
7720         eliminates issues where you need to click on the tree before
7721         scrolling it to get the top node computed correctly.
7722         * TreeNodeCollection.cs: We don't need to mess with the top node
7723         anymore.
7724
7725 2007-02-22  Jackson Harper  <jackson@ximian.com>
7726
7727         * DataGridViewRow.cs: Fix typo so height can actually be set.
7728         Patch by Peter Grimm.
7729
7730 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7731
7732         * FileDialog.cs: Fixed support for renaming files and directories.
7733         * ListView.cs: Do not lose focus when edit is canceled. Process
7734         Escape as regular key (to prevent closing of dialogs).
7735
7736 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7737
7738         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
7739         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
7740
7741 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
7742
7743         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
7744         did not modify label.
7745         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
7746         modified the text. Reset Label when user presses Escape in edit mode.
7747         Move focus to ListView after having cancelled or finished editing the
7748         label.
7749
7750 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
7751
7752         * ComboBox.cs: Removed unnecessary initializations. Marked items field
7753         private. Clear textbox when Text is set to null and SelectedIndex is
7754         already -1.
7755         * FileDialog.cs: Removed unnecessary initializations. Removed 
7756         workarounds for ComboBox bugs that are now fixed. Modified
7757         DefaultExt, InitialDirectory and Title property to change null to
7758         zero-length string in getters. Avoid directly accessing fields.
7759
7760 2007-02-20  Jackson Harper  <jackson@ximian.com>
7761
7762         * TextControl.cs: Remove RecalAlignments call, that was some
7763         debugging leftovers.
7764         - Don't use the line indent when we shouldn't.
7765         * RichTextBox.cs: Add support for paragraph left indents.
7766
7767 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7768
7769         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
7770         Seems like the class status pages doesn't catch params differences.
7771
7772 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7773
7774         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
7775
7776 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
7777
7778         * ComboBox.cs: Setting Text should have no effect if item text of
7779         selected item exactly matches value. First lookup text using
7780         case-sensitive comparison, and fallback to case-insensitive comparison.
7781         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
7782         allow startIndex to be last index. Changed ArgumentOutOfRangeException
7783         paramname to match MS. Restart from first item if string is not found
7784         after startIndex. Fixed paramname of ArgumentNullException that is
7785         thrown for null value in ObjectCollection.Contains.
7786
7787 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7788
7789         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
7790
7791 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7792
7793         * ListControl.cs: In SelectedValue use value.Equals to compare for
7794         equality instead of ==, otherwise it will fail for strings.
7795         Fixes #80794.
7796
7797 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7798         
7799         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
7800         since the caret won't show up unless ShowSelection is true. 
7801         Fixes #80795.
7802
7803 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7804
7805         * Application.cs: When disabling all forms but the main form, do not
7806           disable any descendants of the main form (such as mdi children or
7807           other parented forms). Fixes #80822 on Windows.
7808         * Form.cs: If we have a parent, set the WS_CHILD style.
7809         * Control.cs: Update the window styles if the control whose parent has
7810           changed is a form (the WS_CHILD style has to be switched).
7811
7812 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
7813
7814         * XplatUIStructs.cs: MsgUIState structure added.
7815
7816 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7817
7818         * FileDialog.cs: Removed need for separate fileName field. On 2.0
7819         profile, do not check filename(s) for illegal character if filename(s)
7820         were set non-interactively but always check on 1.0 profile. Fixed NRE
7821          in DefaultExt and only strip off first leading dot. Improve exception
7822         message when invalid Filter is set. Do not ignore InitialDirectory if
7823         it does no exist. Store specified Title, and if empty use default
7824         title (depending on type of dialog). Added an internal DialogTitle 
7825         property for retrieving dialog title. Fixed logic of displayed dir to
7826         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
7827         string as its buggy.
7828         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
7829         FileName is a zero-length string (it can never be null). Override 
7830         DialogTitle property to set default title of dialog box.
7831         * SaveFileDialog.cs: Override DialogTitle property to set default
7832         title of dialog box.
7833
7834 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
7835
7836         * FileDialog.cs: Modify default text of filename and filetype labels
7837         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
7838         after we've updated the SelectedIndex. Fixes part of bug #80887.
7839         * SaveFileDialog.cs: Set text of filetype label.
7840
7841 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7842
7843         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
7844         label field. Needed by latest Jackson's fixes for ListView.
7845
7846 2007-02-16  Andreia Gaita  <avidigal@novell.com>
7847
7848         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
7849         print preview images.
7850
7851 2007-02-16  Jackson Harper  <jackson@ximian.com>
7852
7853         * ListView.cs: Make AfterLabelEdit work correctly.
7854         * FileDialog.cs: After changing the name of the folder, we have to
7855         make sure that it is created, or that we pop up an error because
7856         it already exists.
7857
7858 2007-02-16  Jackson Harper  <jackson@ximian.com>
7859
7860         * X11Dnd.cs: Implement aliases on mime handlers, so things like
7861         System.String are mapped to text.
7862         - Handle dataobjects, getting all the possible formats out of them
7863         - We dont need the drag event args before we give feedback. This
7864         allows feedback cursors to be immediate before selections have
7865         been converted.
7866
7867 2007-02-16  Jackson Harper  <jackson@ximian.com>
7868
7869         * TextBoxBase.cs: Modified the method for inserting images to
7870         taking a line and position instead of tag and position.
7871         * RichTextBox.cs: Handle PngBlip data by inserting the png image
7872         into the RTF file.
7873         * TextControl.cs: Allow images to be inserted as the first tag of
7874         a line.
7875         - Fix some off by one issues when we assume the first tag is a
7876         text tag, not an image tag.
7877
7878 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7879
7880         * ListView.cs: Set focus to ListView when ItemControl gets a
7881         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
7882         Fixes part of #80467.
7883
7884 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7885
7886         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
7887           validate Text input (if null or empty string reset Value to default
7888           value). Fixes #80830.
7889
7890 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7891
7892         * ListView.cs: Set owner as null for columns and items when
7893         Dispose is invoked. Fixes #80607.
7894
7895 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
7896
7897         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
7898         showing DropDowns, don't show a Grip when doing Flow layout.
7899         [This fixes the toolbox in PDN 2.72.]
7900         * ToolStripItem.cs: Add Anchor property and some internal properties to
7901         reduces needed changes to FlowLayout.
7902         * ToolStripOverflow.cs: Remove unused variable.
7903         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
7904         use it in the layout calculations.
7905
7906 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7907
7908         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
7909         reported in #79640.
7910         
7911         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
7912         size calculation.
7913
7914 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7915
7916         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
7917         MeasureString format, it can make button very large in some cases, it is
7918         strange but is what win32 do.
7919
7920 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7921
7922         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
7923         size calculation.
7924
7925         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
7926         rendering, the value is based on MenuAccessKeysUnderlined.
7927
7928 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
7929
7930         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
7931         for most themes.
7932         
7933         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
7934         
7935         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
7936         and use MenuAccessKeysUnderlined instead.
7937
7938 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7939
7940         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
7941         A selected control would not get a Focus call if:
7942                 - the default active control of the container is the same as
7943                   the one that was selected
7944                 - we are switching from one container to another
7945         Under these conditions, the container being selected already has
7946         an active_control, which is the same as the one being activated, 
7947         so set_ActiveControl would always return and not send the Focus
7948         call. Fix to check if the currently active control of the container
7949         is actually focused.
7950
7951 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
7952
7953         * StatusStrip.cs: Implement the spring layout.
7954         * ToolStripControlHost.cs: Make sure the hosted control's visibility
7955         always matches the host.
7956         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
7957         and TextAfterImage.
7958
7959 2007-02-13  Andreia Gaita  <avidigal@novell.com>
7960
7961         * Control.cs: Code reorganization only.
7962           - Reorganize the WndProc cases so that each case has it's own handling method, 
7963           to help with the no-line-numbering stack traces.
7964           - Formatting changes (it's vstudio's fault, really :p)
7965
7966 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
7967
7968         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
7969           Thread.CurrentUICulture to match DateTimePicker's (and MS)
7970           behaviour.
7971
7972 2007-02-12  Jackson Harper  <jackson@ximian.com>
7973
7974         * RichTextBox.cs:
7975         * TextBox.cs: By default we have a non multiline document
7976         - use the multiline property instead of the internal variable
7977         * TextBoxBase.cs: Treat multiline and non multiline the same in
7978         most places.
7979         - Use the documents multiline flag instead of tracking it ourself
7980         * TextControl.cs: Attempt at getting multiline to match MS
7981         behavior.  Lines now track an offset, which is either their X or Y
7982         offset depending on whether or not we are in multiline mode.
7983         - Update all the methods to understand that lines have an X value.
7984         - Fix crash in Undo::Duplicate when empty lines are deleted.
7985
7986 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7987
7988         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
7989         code moved to properties PreferredHeight and PreferredWidth. It solve the
7990         all problems when preferred sizes must be recalculated. Fixes #80801.
7991
7992 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
7993
7994         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
7995         font height when compatible_text_rendering is false. Partially fix #80801.
7996
7997 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
7998
7999         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
8000
8001 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
8002
8003         * Form.cs: Improved exception messages in ShowDialog.
8004
8005 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
8006
8007         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
8008         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
8009         if not set. Fixes bug #80764. Avoid accessing current_settings field
8010         directly.
8011
8012 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
8013
8014         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
8015         false.
8016
8017         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
8018         public in 2.0 and for easy maintenance and dont break compatibility it is 
8019         internal in 1.1.
8020         
8021 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8022
8023         * ToolStripItem.cs: Implement using images from ImageList.
8024
8025 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8026
8027         * DateTimePicker.cs: Change default date-formatting culture from
8028           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
8029           seems to be the way MS does it.
8030
8031 2007-02-08  Andreia Gaita  <avidigal@novell.com>
8032
8033         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
8034         (the 6 was cut off on the right side)
8035
8036 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8037
8038         * Form.cs: Tell MenuStrips to close when the form is clicked.
8039         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
8040         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
8041         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
8042         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
8043         support for Overflow, where items that do not fit are automatically
8044         reparented to a drop down menu.
8045         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
8046         Also: fixes bug #80747.
8047
8048 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8049
8050         * ComboBox.cs: Remove warning (unused code).
8051         * ScrollableControl.cs: Remove warning for 1.1 profile.
8052
8053 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8054
8055         * Form.cs: Remove a warning.
8056
8057 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8058
8059         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
8060           'g' specifier, not documented anywhere, but seems to always show up
8061           as a single space (might have something to do with the DateTime 'g'
8062           specifier, which is the era format, but since DateTimePicker can't
8063           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
8064           won't crash if the format has an unmatched quote. Now shows
8065           single-character formats correctly. Fixes #80744.
8066
8067 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
8068
8069         * StatusStrip.cs: Stretch property needs to call base.Stretch,
8070         not this.Stretch to fix stack overflow. [Fixes bug #80760]
8071
8072 2007-02-07  Chris Toshok  <toshok@ximian.com>
8073
8074         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
8075         background color.  it overwrites the background image we've
8076         already painted.  Fixes #80599.
8077
8078 2007-02-07  Chris Toshok  <toshok@ximian.com>
8079
8080         * DataGrid.cs: return immediately from Edit() when there are no
8081         columns.  Fixes #80662.
8082
8083 2007-02-07  Chris Toshok  <toshok@ximian.com>
8084
8085         * MessageBox.cs: fix #80625.  don't always show the Help button in
8086         2.0.  use the displayHelpButton parameter to determine if we
8087         should show it. Also, make the internal show_help field private.
8088
8089 2007-02-07  Chris Toshok  <toshok@ximian.com>
8090
8091         * Control.cs (SetVisibleCore): check in the proposed patch for
8092         80604, and set is_visible before calling CreateControl.
8093
8094 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
8095
8096         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
8097         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
8098         on it.
8099
8100 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
8101
8102         * MenuAPI.cs: hotkey_active internal field added, it is required because
8103         we need to know when hotkeys must be draw, before this change a keystate
8104         Navigating was used but we can have menu in navigating state without
8105         hotkeys. Fixes #80694.
8106         
8107         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
8108
8109 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8110
8111         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
8112           corresponding events and methods to be internal for 1.1 profile and
8113           public for 2.0 profile (required by SizeGrip).
8114         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
8115           implicit control list). Don't set the size nor the location of the
8116           SizeGrip anymore as it's not needed.
8117         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
8118           draw directly on the captured control (fixes #80656). Removed
8119           ShowGrip (it wasn't used anywhere), redraw (always true), added
8120           GetDefaultSize and GetDefaultRectangle to calculate defaults.
8121         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
8122           be called from SizeGrip.
8123
8124 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8125
8126         * Timer.cs: Throw ArgumentException if Interval <= 0.
8127
8128 2007-02-05  Jackson Harper  <jackson@ximian.com>
8129
8130         * TreeView.cs: We need to check scrollbar visibility when window
8131         visibility is updated, because non visible trees don't ever add
8132         scrollbars.
8133         * Cursor.cs: We want the override cursor to be reset to NULL when
8134         we set current cursor to the default cursor.
8135
8136 2007-02-05  Jackson Harper  <jackson@ximian.com>
8137
8138         * TextControl.cs: Don't have crlfs when we are non multiline.
8139         - Consolidate the line position.
8140
8141 2007-02-05  Jackson Harper  <jackson@ximian.com>
8142
8143         * X11Keyboard.cs: BACK+CTRL gets a special char code.
8144
8145 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8146
8147         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
8148           handling LeaveNotify->NotifyUngrab in order to send
8149           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
8150           after calling XUngrabPointer, so we call WindowUngrabbed directly
8151           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
8152         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
8153           MouseCaptureChanged correctly. Also create handles if changing
8154           Capture (matches MS behaviour).
8155
8156 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8157
8158         * SizeGrip.cs: Make the last change 2.0 only.
8159
8160 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8161
8162         * SizeGrip.cs: If resizing and the capture is lost, revert any size
8163           changes to initial size (fixes #80597).
8164
8165 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8166
8167         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
8168
8169 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8170
8171         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
8172           background) and only allow dragging if enabled. This way the
8173           sizegrip can be used to fill the open square that otherwise would
8174           have been shown in the bottom right corner of ScrollableControl
8175           when ScrollableControl is not suppose to support sizing.
8176         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
8177           sizegrip is shown and enabled, and hook up with necessary events.
8178
8179 2007-02-01  Chris Toshok  <toshok@ximian.com>
8180
8181         * DataGridTextBoxColumn.cs: clean up the
8182         GetFormattedString/GetColumnValueAtRow combination of functions.
8183         Also fix UpdateUI, and the initial state of
8184         IsInEditOrNavigateMode.
8185
8186         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
8187         aren't supposed to scroll the textbox here, we're supposed to
8188         scroll the datagrid.
8189
8190 2007-02-01  Chris Toshok  <toshok@ximian.com>
8191
8192         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
8193         setting the position.
8194
8195 2007-02-01  Chris Toshok  <toshok@ximian.com>
8196
8197         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
8198         here, since the most recent focus fixes keep us from generating
8199         the Leave event when our textbox gets focus.
8200         (Edit): we should be passing null for the column style's
8201         instantText parameter.
8202         
8203 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
8204
8205         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
8206         raised.  Fixes menu text/icons not showing up in PDN.
8207
8208 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8209
8210         * Control.cs: Remove code in constructor that makes every
8211         control with WS_CHILD set have initial location -1, -1.
8212
8213 2007-01-31  Jackson Harper  <jackson@ximian.com>
8214
8215         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
8216         XplatUIX11.
8217         * XplatUIX11.cs: Give teh keyboard to teh dnd.
8218
8219 2007-01-31  Jackson Harper  <jackson@ximian.com>
8220
8221         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
8222         - Remove some debug code.
8223
8224 2007-01-31  Jackson Harper  <jackson@ximian.com>
8225
8226         * XplatUIX11.cs: If you set the override cursor during a grab, it
8227         should actually override the grab cursor.  This comes into play
8228         when you are setting custom cursors in a DND feedback method.
8229
8230 2007-01-31  Jackson Harper  <jackson@ximian.com>
8231
8232         * X11Dnd.cs: Add support for handling the QueryContinue and
8233         GiveFeedback events.
8234         - Cancel drag and drop actions when the escape key is clicked.
8235         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
8236         can handle the ESCAPE key.
8237         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
8238         done when dnd events are continued after the button is released.
8239         - Add a new helper method so that dnd can translate key events.
8240
8241 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
8242
8243         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
8244         make it more obvious what is happening.
8245
8246 2007-01-30  Jackson Harper  <jackson@ximian.com>
8247
8248         * XplatUIX11.cs: Don't break when handling button release in drag
8249         and drop operations. We need that BUTTONUP message to get through
8250         so capture is released.
8251         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
8252         this is handled automatically when the mouse is down.
8253
8254 2007-01-30  Jackson Harper  <jackson@ximian.com>
8255
8256         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
8257         is closed, so we need to make sure that we aren't changing the
8258         dialog result when the OK (Open or Save) button has been clicked
8259         and we are closing the window ourselves.  Note we don't need to
8260         worry about the cache being written in this case, because it was
8261         already done in the previous FilOk call.
8262
8263 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8264         
8265         * DateTimePicker.cs: Remove a warning.
8266         * ComboBox.cs: Remove a couple of warnings.
8267
8268 2007-01-29  Chris Toshok  <toshok@ximian.com>
8269
8270         * XplatUIX11.cs: don't crash, and remove the icon if the user has
8271         set one, if SetIcon is passed a null icon.
8272
8273 2007-01-29  Andreia Gaita  <avidigal@novell.com>
8274
8275         * TextBox.cs: Redraw when the password characters changes
8276         * TextControl.cs: Check if textbox has a password char and draw 
8277         a line of password chars instead of the text in the line. LineTag gets 
8278         an extra Draw() method which allows document.Draw to override the text 
8279         that will be drawn. Removes 1024 char limitation on length of passworded 
8280         lines.
8281
8282 2007-01-29  Jackson Harper  <jackson@ximian.com>
8283
8284         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
8285         single chars is not.
8286
8287 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
8288
8289         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
8290         one pixel.  Fix a StackOverflowException caused by an overload wrongly
8291         calling itself.
8292
8293 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
8294
8295         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
8296         also remove ProcessArrowKey and put the code inside ProcessKeys.
8297
8298 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
8299
8300         * PaddingConverter.cs: Added.
8301
8302 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8303         
8304         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
8305         ShowPanels is false (fixes #80600). Only draw up to 127 characters
8306         of text (fixes #80601). For panels clip the text to draw to the
8307         panel (fixes #80603).
8308
8309 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8310
8311         * ComboBox.cs: Fixed implementation of ResetText.
8312
8313 2007-01-25  Jackson Harper  <jackson@ximian.com>
8314
8315         * TextControl.cs: For the last char of a line we need to use the
8316         line size, not that chars width, since it won't actually be
8317         computed since the right side of a char is based on the start of
8318         the left side of the next char, and the next char does not exist.
8319
8320 2007-01-25  Chris Toshok  <toshok@ximian.com>
8321
8322         * Splitter.cs: fix the new unit tests, and reindent some switch
8323         statements.
8324
8325 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8326
8327         * ComboBox.cs: Implemented 2.0 methods and events.
8328         * TextBoxBase.cs: Added OnTextUpdate, so that
8329         ComboBox.ComboTextBox can inform ComboBox of it.
8330
8331 2007-01-25  Jackson Harper  <jackson@ximian.com>
8332
8333         * TextControl.cs: Respect ShowSelection when deciding whether or
8334         not to display the caret, this allows comboboxes to have carets
8335         when the combotextbox does not have focus.
8336
8337 2007-01-25  Jackson Harper  <jackson@ximian.com>
8338
8339         * TextControl.cs: Add a Suspend/Resume for updating, basically the
8340         same as the Suspend/Resume for recalc, except this will do actual
8341         Invalidates.
8342         - New Undo manager, works much like the MS version.
8343         - Implemented Redo
8344         * TextBoxBase.cs: The Cut operation is undoable.
8345
8346 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8347         
8348         * TextBoxBase.cs: Don't antialias text. Makes it look way better
8349         on Windows (no difference on Linux).    
8350
8351 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8352
8353         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
8354         we don't want to activate any windows. Fixes #79433.
8355
8356 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
8357
8358         - ButtonBase.cs: Fix capitalization of parameter: disposing.
8359         [Fixes bug #80609]
8360
8361 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
8362
8363         * FileDialog.cs:
8364         - Move to using System.ComponentModel.EventHandlerList
8365         - Replace Refresh with Invalidate
8366         - Clear the mime filecache on closing
8367         - Some other memory reducing work. After beeing closed FD now uses
8368           only about 300 KB for the fdo mime stuff plus the memory of the
8369           cached icons.
8370         * Mime.cs: Changed coding style and removed unnecessary commented
8371         code. Some more memory memory reducing work.
8372
8373 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8374
8375         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
8376         a few other missing 2.0 properties.
8377         * Theme.cs: Added DrawFlatStyleComboBox.
8378         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
8379
8380 2007-01-24  Chris Toshok  <toshok@ximian.com>
8381
8382         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
8383         wake_waiting flag, not just when there's data to be read.  if we
8384         don't, then future wakeup's won't reach us and we'll be doomed to
8385         wait for the entire 1 second timeout forever (unless there are X
8386         events to be had).
8387
8388 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8389
8390         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
8391         until you pass Items.Count, not Items.Count - 1 like 1.1.
8392
8393 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
8394
8395         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
8396
8397 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
8398
8399         * ToolStripContainer.cs: The recent Dock fix exposed that I was
8400         adding the panels in the wrong order.
8401
8402 2007-01-24  Jackson Harper  <jackson@ximian.com>
8403
8404         * TextBoxBase.cs: When we move the caret we also need to move the
8405         selection, this fixes some random crashing after doing select
8406         text, unselect, delete a char, paste.
8407
8408 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8409
8410         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
8411
8412 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8413
8414         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
8415         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
8416         * ToolBar.cs: Force redraw in BackgroundImageChanged.
8417
8418 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8419
8420         * ToolBar.cs:
8421         - Implement support for vertical toolbars. Fixes #80539;
8422         - Call LayoutToolBar when resize, it fix some other problems in layout.
8423         - Rename requested_height to requested_size, as we can have width on it
8424         when toolbar is vertical.
8425         - Create a private property "Vertical" that uses Dock to verify when 
8426         toolbar is vertical or not.
8427         - Set ControlStyles when change Dock property.
8428         - Refactory in LayoutToolBar to have better variables names and to support
8429         vertical toolbars.
8430         - Fixes default value for ButtonSize when button count is equal zero, size
8431         must be (39, 36) test case writed.
8432
8433 2007-01-23  Chris Toshok  <toshok@ximian.com>
8434
8435         * Control.cs: fix the checks so that they work correctly for mdi
8436         parents/children.
8437
8438 2007-01-23  Chris Toshok  <toshok@ximian.com>
8439
8440         * Control.cs: ControlCollection seems to have super-secret
8441         abstraction breaking knowledge of Mdi containers.  allow MdiClient
8442         to add toplevel controls.
8443
8444 2007-01-23  Chris Toshok  <toshok@ximian.com>
8445
8446         * Control.cs: throw an ArgumentException if a toplevel control is
8447         added to our control collection from ControlCollection.Add, as
8448         well as from ControlCollection.IList.Add.  This fixes the
8449         ControlSetTopLevelTest.TestTopLevelAdd unit test.
8450
8451         Also, in ControlCollection.IList.Add, don't through an
8452         ArgumentNullException, throw an ArgumentException, when value ==
8453         null.  This matches MS.
8454
8455 2007-01-23  Chris Toshok  <toshok@ximian.com>
8456
8457         * BindingSource.cs: initial, incomplete, implementation of
8458         BindingSource.
8459
8460 2007-01-23  Jackson Harper  <jackson@ximian.com>
8461
8462         * TextControl.cs:
8463         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
8464         that I can fix a broken unit test (TextBoxTest::ClearUndo)
8465         
8466 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
8467
8468         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
8469
8470 2007-01-23  Andreia Gaita  <avidigal@novell.com>
8471
8472         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
8473         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
8474         IndexOfKey() for 2.0
8475
8476 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8477
8478         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
8479         to prevent it from changing z-order.
8480         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
8481         leave UI updates in MdiWindowManager.
8482         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
8483         1 sized (NC handling goes weird on Linux otherwise).
8484         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
8485         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
8486         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
8487         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
8488         and SetWindowState(s) to allow for changing the size of an activated child
8489         before activating it (reduces a lot of flicker).
8490
8491 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8492
8493         * Form.cs: Changing FormBorderStyle has different semantics based
8494         on whether the Form is visible or not.  If not visible, don't change
8495         the Size.  But InvalidateNC needs to be called to force the window
8496         to pick up the changes and redraw itself.  [Fixes bug #80574]
8497
8498 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
8499
8500         [Moma work]
8501         * ContainerControl.cs: ProcessCmdKey.
8502         * ErrorProvider.cs: new constructor.
8503         * Form.cs: fix AutoValidateEvent compiler warning.
8504         * Label.cs: fix OnAutoSizeChanged compiler warning.
8505         * MenuStrip.cs: fix CanOverflow compiler warning.
8506         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
8507         * TextBox.cs: Dispose.
8508         * ToolStrip.cs: CanOverflow, re-enable double buffering.
8509         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
8510         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
8511         * ToolStripItem.cs: Overflow, RightToLeft properties.
8512
8513 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8514
8515         * Form.cs: Move the layout of the main form to MdiWindowManager.
8516         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
8517         do a layout of the main window to update MdiClient's client area to
8518         the right area. Fixes #80533. Remove the calculation of nc size, 
8519         it was just wrong and the correct one is the same as for 
8520         InternalWindowManager. 
8521
8522 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
8523
8524         * Control.cs: Setting Anchor or Dock needs to reset the other
8525         to its default.  [Fixes bug #80556]
8526
8527 2007-01-20  Chris Toshok  <toshok@ximian.com>
8528
8529         * CheckedListBox.cs: class status changes.
8530
8531         * ScrollableControl.cs: same.
8532
8533         * RichTextBox.cs: same.
8534
8535         * ContainerControl.cs: same.
8536
8537         * ListView.cs: same.
8538
8539         * NotifyIcon.cs: same.
8540
8541         * MenuStrip.cs: same.
8542
8543         * RadioButton.cs: same.
8544
8545         * CheckBox.cs: same.
8546
8547         * PrintPreviewDialog.cs: same.
8548
8549         * Form.cs: same.
8550
8551 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
8552
8553         * TreeNode.cs: Apply Alan's patch for Name property.
8554
8555 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8556         
8557         * Form.cs: Implemented SizeGripStyle.
8558         * SizeGrip.cs: Check for minimum and maximum size for the
8559         control being resized and only resize if size has actually
8560         changed.
8561
8562 2007-01-19  Chris Toshok  <toshok@ximian.com>
8563
8564         * DataGridColumnStyle.cs: stop setting _readonly in the
8565         PropertyDescriptor setter.  fixes a unit test failure.
8566
8567         also, rename ParentReadOnly to TableStyleReadOnly, and have it
8568         just consult our table style (if we have one).  We don't need to
8569         consult the datagrid readonly attribute because that's passed in
8570         as the _ro arg to Edit.  this simplifies things a little.
8571         
8572         * DataGrid.cs: use CurrentColumn instead of
8573         current_cell.ColumnNumber just to simplify some of the code.
8574
8575         switch the order of some things in the CurrentCell setter to keep
8576         the previous cell from getting a textbox again -
8577         EnsureCellVisibility causes scrolling to happen, which calls Edit.
8578         So we need to set the new cell before calling it.
8579         
8580         call Edit in OnEnter, as does Microsoft.
8581         
8582         also, make sure the current table style isn't the one we create
8583         initially when checking to see if it's different than the one
8584         we're setting it to in BindColumns (this fixes #80421).
8585
8586         * GridTableStylesCollection.cs: table styles can have "" for a
8587         mapping name.  part of the fix for #80421.
8588
8589         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
8590         Edit significantly.
8591
8592 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8593
8594         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
8595         and less GDI object leaky-er.
8596
8597 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8598
8599         * LinkLabel.cs: Add opaque control style
8600
8601 2007-01-18  Jackson Harper  <jackson@ximian.com>
8602
8603         * TextControl.cs: Calculate width properly.
8604         - Don't store the tag's X offset, this can be figured out very
8605         easily.
8606         - When getting the caret tag make sure to get the last empty tag.
8607
8608 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8609
8610         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
8611         [Fixes bug #79959]
8612
8613         * Control.cs: Color.Empty shouldn't count for previous transparent
8614         redraw changes.
8615
8616 2007-01-18  Jackson Harper  <jackson@ximian.com>
8617
8618         * TextBox.cs:
8619         * RichTextBox.cs:
8620         * TextControl.cs: Starting to merge in some pieces of my older
8621         undo work.  Basically just some slight cleanup of the undo API.
8622
8623 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8624
8625         * TrackBar.cs: Fix signature of RightToLeftLayout.
8626         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
8627         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
8628         * Application.cs: Implemented UseWaitCursor.
8629
8630 2007-01-18  Jackson Harper  <jackson@ximian.com>
8631
8632         * TextControl.cs: We can't skip tags if any part of the tag is
8633         visible.
8634
8635 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8636
8637         * ContainerControl.cs: Override OnLayout.
8638
8639 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8640
8641         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
8642
8643         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
8644         everything else.
8645
8646 2007-01-18  Chris Toshok  <toshok@ximian.com>
8647
8648         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
8649         (leftover from the container_selected days, I'd wager).  fixes bug
8650         #80546.
8651
8652 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8653
8654         * Control.cs: Apply patch from George to fix the new testcase on
8655         bug #80451.  We can't just check for Color.Transparent, we need 
8656         to check if the back color's alpha channel is < 255.
8657
8658 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
8659
8660         * Form.cs: Move setting show_icon = true to before the constructor
8661         so that the base constructor has that information when it calculates
8662         the form's size.  Was causing forms to be (6, 6) bigger than they
8663         were supposed to be.  Thanks for catching this Rolf!
8664
8665 2007-01-18  Jackson Harper  <jackson@ximian.com>
8666
8667         * TextControl.cs: When replacing a selection we need to invalidate
8668         from the initial selection start, because selection start is moved
8669         to the end of the replacement.
8670
8671 2007-01-18  Andreia Gaita  <avidigal@novell.com>
8672
8673         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
8674
8675 2007-01-18  Chris Toshok  <toshok@ximian.com>
8676
8677         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
8678         I just added.
8679
8680 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
8681
8682         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
8683         layout methods and properties from ToolBarButton must be available
8684         into ToolBarButtonInfo.
8685
8686 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8687
8688         * Control.cs: If the control has a transparent background, we
8689         need to refresh it when it moves and when it's parent's background
8690         image changes.  [Fixes bug #80451]
8691
8692 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8693
8694         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
8695
8696 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
8697
8698         * XplatUIWin32.cs: Implement proper double buffering for Windows.
8699         [Fixes bug #80447, and probably speeds up things as well]
8700
8701 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8702
8703         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
8704         * XplatUIWin32.cs: We need to recalculate NC size after changing 
8705         window style to toolwindow (otherwise the client rectangle will be
8706         3 pixels to small for some reason).
8707         * MdiWindowManager.cs: Revert NC size calculations to match how
8708         they are calculated only based on window styles (to match
8709         Win32AdjustWindowRectEx, since otherwise when setting size or 
8710         location, Control will call Win32AdjustWindowRectEx to update client 
8711         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
8712         calculate a different value of client size causing another paint 
8713         (and flickering))
8714         * InternalWindowManager.cs: When moving or resizing a window only
8715         update size or location if they actually changed.
8716         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
8717         (seems to match Windows behaviour better). Cleaned up 
8718         ManagedWindowDecorations to draw what's needed and nothing else
8719         (was drawing borders and lines where they shouldn't be)
8720         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
8721         (style = 0xFFFF) and takes into account caption height when 
8722         calculating window rectangle.   
8723
8724 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8725
8726         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
8727         can be added to toolbar multiple times, we need to maintain a list of 
8728         button information for each positions.
8729
8730 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
8731
8732         * ToolBar.cs: Some small stetic changes.
8733
8734 2007-01-16  Jackson Harper  <jackson@ximian.com>
8735
8736         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
8737         that allow us to have nested recalc = false blocks.
8738         - Add paste support for images in the RichTextBox
8739         * RichTextBox.cs: flush the text after the color is changed, so
8740         the change takes effect.
8741         - Use SuspendRecalc
8742         - Some extra debugging info
8743         * TextControl.cs: Tags no longer track their length, it is just
8744         computed from the next tags length, this makes things a little
8745         simpler and reduces places that we have to track length changes.
8746         - Refactored the linetag class a little so we could make it
8747         a base class for different kinds of tags
8748         - Created a image tag, a tag that can have a single image inserted
8749         into it
8750         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
8751         that we can call suspend multiple times.
8752         - Add some debugging methods
8753
8754 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8755
8756         * MdiClient.cs: Add ActivatePreviousChild for 
8757         mdi child window navigation.
8758         * Form.cs: Use MdiClient.ActivateNextChild/
8759         ActivatePreviousChild instead of Form.SelectNextControl
8760         to select the next/previous child since 
8761         SelectNextControl doesn't do it in the same order
8762         as mdi children should do it.
8763
8764 2007-01-16  Chris Toshok  <toshok@ximian.com>
8765
8766         * Control.cs: remove container_selected field.
8767
8768 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8769
8770         * MdiClient.cs: Update main form's ActiveChild when
8771         updating keyboard focus for the mdi child.
8772
8773 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
8774
8775         * Control.cs: PreferredSize fix.
8776
8777         * Form.cs: Add several 2.0 events, properties, and methods.
8778
8779 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
8780
8781         * Form.cs: Provide meaningful message when MdiParent is assigned a
8782         Form that is not an MdiContainer.
8783
8784 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8785
8786         * MdiClient.cs: Update main form's ActiveChild when
8787         activating a mdi child.
8788
8789 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8790
8791         * MdiWindowManager.cs: Fix NRE when merging menus and main form
8792         doesn't have a menu.
8793
8794         * Form.cs: Request NCRecalc after creating a mdi child window.
8795         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
8796         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
8797         
8798         * MdiClient.cs: Add new method SendFocusToActiveChild that either
8799         sends keyboard focus to the active child, or to the MdiClient
8800         if there are no child forms.
8801         
8802 2007-01-15  Chris Toshok  <toshok@ximian.com>
8803
8804         * ListView.cs: drop the *Internal overrides, just do our work in
8805         ItemControl's WndProc instead.
8806
8807         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
8808         of the various controls, and forward the events properly (in the
8809         same manner as MS) from the textbox to the UpDown.  Also the
8810         ActiveControl of the UpDownBase gets set properly now.  Finally,
8811         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
8812
8813         * NumericUpDown.cs: set Text in the ctor.
8814
8815         * DomainUpDown.cs: call UpdateEditText in the ctor.
8816         
8817         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
8818         so even a Selectable = false textbox can be focused if you click
8819         in it.  Go figure.
8820
8821         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
8822         just add their handling in their respective WndProc's.  Also add
8823         an explicit FocusInternal method that doesn't consult CanFocus
8824         before calling Select(this).
8825
8826         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
8827         do our work in WndProc instead.
8828
8829         * TabControl.cs: same.
8830
8831         * ComboBox.cs: same.
8832
8833 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8834
8835         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
8836         Fixes #80006.
8837
8838 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
8839
8840         * ListViewItem.cs:
8841         * ThemeWin32Classic.cs: Don't draw the item text outside
8842         item bounds in Details view, as well as use trimming.
8843         Fixes bug #80376.
8844
8845 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8846
8847         * Form.cs: Implement Form.ShowIcon.
8848         
8849         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
8850         null, which when combined with the DlgModalFrame window style removes
8851         the icon from the title bar.
8852
8853 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8854
8855         * Control.cs: Call OnMouseClick after OnClick. (2.0)
8856
8857 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8858
8859         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
8860         menu when mdi child windows theres a menu, uses insert to get icon
8861         at first position. Partially fix #80006.
8862
8863 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
8864
8865         * Clipboard.cs: Implement 2.0 methods.
8866
8867 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
8868
8869         * Menu.cs: Implement Insert method of MenuItemCollection class
8870         to fix MenuMerge.
8871
8872 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8873
8874         * ListView.cs: Implement 2.0 FindItemWithText method.
8875
8876 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8877
8878         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
8879         to calculate menu bar size. Fixes #80290.
8880
8881 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
8882
8883         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
8884
8885 2007-01-11  Chris Toshok  <toshok@ximian.com>
8886
8887         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
8888         initial form.
8889
8890 2007-01-11  Chris Toshok  <toshok@ximian.com>
8891
8892         * LinkLabel.cs: make sure to call base.Select in our Select method
8893         if it turns out we're going to be selected (i.e. if we have a link
8894         that is going to receive focus).  That way our container's
8895         ActiveControl is updated properly.
8896
8897 2007-01-11  Chris Toshok  <toshok@ximian.com>
8898
8899         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
8900         they have 1 or more links.  this fixes the crash gert reported.
8901
8902 2007-01-11  Andreia Gaita  <avidigal@novell.com>
8903
8904         * ContainerControl.cs: Remove ContainerSelected flag, not needed
8905         anymore.
8906
8907         * Control.cs (Controls.Add): Check if control to be added to the collection
8908         is a top level control, and throw an ArgumentException if it is.
8909         Remove ContainerSelectedFlag, not needed anymore.
8910
8911         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
8912         top most control doesn't activate the form. This fixes a problem in the
8913         MessageBox, where the default button wouldn't get focus because the form
8914         was activated before being Loaded - when the Owner is set, SetTopMost is
8915         called, and it would activate it.
8916
8917 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
8918
8919         * Button.cs: When clicked and setting the parent form's DialogResult,
8920         use FindForm instead of Parent, since parent could be a container
8921         control and not the Form.  Fixes bug #80495.
8922
8923 2007-01-10  Chris Toshok  <toshok@ximian.com>
8924
8925         * Form.cs: move the call to SendControlFocus into the same
8926         is_loaded check.
8927
8928 2007-01-10  Chris Toshok  <toshok@ximian.com>
8929
8930         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
8931         It breaks in the face of the new ActiveControl stuff, and should
8932         be unnecessary.
8933
8934         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
8935         activecontrol's focus if it's not already set, after we set
8936         ActiveControl, but before we call OnActivated.  Re-fixes #79667
8937         after the previous focus/active control fixes regressed it.
8938
8939         * Control.cs: reindent some code.
8940         
8941 2007-01-10  Chris Toshok  <toshok@ximian.com>
8942
8943         * Splitter.cs: clearing some outstanding changes from my tree.
8944         Replace all accesses (not writes) to the internal dock_style field
8945         with the Dock property.
8946
8947 2007-01-10  Chris Toshok  <toshok@ximian.com>
8948
8949         * Control.cs: make FireEnter, FireLeave, FireValidating, and
8950         FireValidated virtual.
8951
8952         * Form.cs: override and don't chain up calls to FireEnter and
8953         FireLeave.
8954
8955 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8956
8957         * ListView.cs: Add more text padding space when using
8958         auto resize for columns (the previous value didn't work fine).
8959
8960         * ThemeWin32Classic.cs: Update text position inside columns,
8961         to match the appeareance of .Net.
8962
8963         * ColumnHeader.cs: When using auto resize, only the Width should
8964         depend on the sub items, not the Height. Also, set width after
8965         auto resizing (the value of Width should never remain as -1 or -2).
8966
8967 2007-01-10  Chris Toshok  <toshok@ximian.com>
8968
8969         * Application.cs: fix compilation errors when debug is enabled.
8970
8971 2007-01-10  Chris Toshok  <toshok@ximian.com>
8972
8973         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
8974         add some nice ascii art pictures and explanation of the process).
8975         (GetMostDeeplyNestedActiveControl): new utility function we need
8976         because our ActiveControl can refer to a child container with its
8977         own ActiveControl.
8978
8979         * Form.cs (OnActivated): remove the call to SelectActiveControl
8980         from here, since you can override this method and not chain up,
8981         and winforms still sets the active control.
8982         (OnCreateControl): also remove the unnecessary SelectActiveControl
8983         call from here.
8984         (WndProc): it's actually called from the WM_ACTIVATE block, just
8985         before calling OnActivated.
8986
8987         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
8988         inside the else.  the ActiveControl setter will end up setting
8989         focus on @control.  This keeps us from setting it again (and
8990         generating an extra LostFocus/GotFocus pair).
8991         (Select (bool, bool)): reindent.
8992
8993 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
8994
8995         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
8996         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
8997         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
8998         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
8999         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
9000         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
9001         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
9002         ToolStripTextBox.cs: Another wave of corcompare work.
9003
9004 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9005
9006         * ColumnHeader.cs: Implement 2.0 AutoResize method using
9007         the Width property.
9008
9009         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
9010         methods by callling Column.AutoResize method on columns.
9011
9012 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
9013
9014         * Control.cs: Provide proper implementations of PreferredSize
9015         and GetPreferredSize (2.0).
9016
9017 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
9018
9019         * Form.cs: Remove one character (!) to make my previous OnClosing
9020         stuff work for modal windows like MessageBox.
9021
9022 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9023
9024         * ListView.cs:
9025         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
9026         ListView.Columns to get the last displayed column. Fixes #80452.
9027
9028 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
9029
9030         * Label.cs, LinkLabel.cs: Source code identation fixes.
9031
9032 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
9033
9034         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
9035         we dont need to invalidate only borders because when we invalidate four
9036         border lines the invalidate's generates a complete redraw of button, 
9037         because it now invalidate a complete rect some other redraws operations
9038         are fixed. Fixes #80196.
9039         
9040         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
9041         Remove ToolBarInvalidateEntireButton as it is not used.
9042
9043 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
9044         
9045         * Form.cs: Make sure that both OnClosing and OnFormClosing are
9046         called for 2.0 profile.
9047         * CloseReason.cs: Make class internal for 1.1.
9048
9049 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
9050
9051         * ToolStripManager.cs: Implement FindToolStrip functionality.
9052         * ToolStrip.cs: Register and unregister with ToolStripManager.
9053
9054 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9055
9056         * Control.cs: This was messy.  2.0 moves much of ControlCollection
9057         to ArrangedElementCollection.  Implemented this with as few #if's as 
9058         possible (which is still too many).
9059
9060 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
9061
9062         * Control.cs: Implement SizeFromClientSize() [2.0].
9063
9064 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
9065
9066         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
9067         use Theme.BorderSize to calculate area instead of static value 1, 
9068         by the way use new BorderStaticSize instead     Border3DSize when 
9069         border_static is true. Fixes #79537.
9070         
9071         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
9072         
9073         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
9074         it is not needed.
9075
9076 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9077
9078         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
9079
9080 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
9081
9082         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
9083         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
9084         
9085         * Hwnd.cs: 
9086         - border_static field added, it will used to define when a control 
9087         theres 3D border but it must be static (thin).
9088         - In GetWindowRectangle use Theme.BorderSize to calculate area 
9089         instead of static value 1, by the way use new BorderStaticSize instead
9090         Border3DSize when border_static is true.
9091
9092         * XplatUIX11.cs, XplatUIOSX.cs: 
9093         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
9094         
9095         * Theme.cs: BorderStaticSize field added.
9096
9097 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9098
9099         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
9100
9101 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
9102
9103         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
9104         mimic same behavior than win32 that set border only in CreateParams,
9105         it fix problems under CreateParams overrides. Fix #79442 and partial
9106         fix #79537.
9107         
9108         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
9109         of thi control you must call recreate handle. 
9110         
9111         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
9112         need to do anything as RecreateHangle will take care about borders.
9113
9114 2007-01-05  Mike Kestner  <mkestner@novell.com>
9115
9116         * ListView.cs: hack to eliminate Lost/Got focus notifications on
9117         cycles between the ItemControl and parent.  Fixes #80388.
9118
9119 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
9120
9121         * Control.cs: Lazy init layout engine. Do not directly use 
9122         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
9123
9124 2007-01-05  Chris Toshok  <toshok@ximian.com>
9125
9126         * DataGrid.cs: don't forceably rebind columns in SetDataSource
9127         unless our list manager has changed (i.e. unless we have reason to
9128         believe our columns have changed).  Fixes #80422.
9129         
9130         also, disable the call do BindColumns in
9131         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
9132         1.1 the event isn't raised in response to a column addition on a
9133         table.)
9134
9135 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9136
9137         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
9138         that inheritors can not call it if they choose.  Fixes bug #80456.
9139
9140 2007-01-05  Andreia Gaita  <avidigal@novell.com>
9141
9142         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
9143         doesn't blow up with a null exception on marshalling.
9144         
9145 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
9146
9147         * Control.cs: Implement several 2.0 protected properties and methods.
9148         Ensure that all necessary events are being called when properties
9149         are set.
9150
9151 2007-01-05  Mike Kestner  <mkestner@novell.com>
9152
9153         * ListView.cs: implement PgUp/PgDn for Details view.  Also
9154         fixes First/LastVisibleIndex to use the item_control.ClientRect 
9155         instead of the parent control.  Fixes #80378.
9156
9157 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
9158
9159         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
9160           determine whether to use yard-pound or not (bug #78399).
9161
9162 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9163
9164         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
9165         problems. So it is time to bring back the old popupbutton colors.
9166
9167 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9168
9169         * ColumnHeader.cs:
9170         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
9171         property by using the internal information of the
9172         columns order in ListView.
9173
9174 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
9175
9176         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
9177         Add 2.0 Tag properties.
9178
9179         * LinkArea.cs: Add 2.0 ToString method.
9180
9181 2007-01-03  Chris Toshok  <toshok@ximian.com>
9182
9183         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
9184         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
9185         when we're editing, which fixes #80047.
9186
9187 2007-01-03  Chris Toshok  <toshok@ximian.com>
9188
9189         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
9190         #80404.
9191
9192 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
9193
9194         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
9195         property and implementation.
9196
9197         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
9198         for MdiWindowListItem property.
9199
9200         * ToolStripDropDown.cs: Don't consider hidden menu items while
9201         laying out the menu.
9202
9203 2007-01-03  Andreia Gaita  <avidigal@novell.com>
9204
9205         * SendKeys.cs: window handle is not needed in win32, so just
9206         get the active window for X after parsing keys and don't use
9207         it when building the message; it is passed by parameter to the 
9208         Xplat method and used there to build the message instead. Also,
9209         wait for events to be processed on SendWait, as opposed to Send,
9210         which doesn't wait :) Playing with threads and Send() completely 
9211         hangs on ms.net, only SendWait() works.
9212         
9213         XplatUIX11.cs
9214         X11Display.cs: Check for valid window handle.
9215
9216 2007-01-03  Jackson Harper  <jackson@ximian.com>
9217
9218         * TextControl.cs: Need to prevent wrap calculations when replacing
9219         text (this was there before i removed it accidently).
9220         - Don't update the cursor during the positioning, just set it to
9221         selection_start at the end of the operaion.
9222
9223 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9224
9225         * Control.cs:
9226         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
9227         
9228 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9229
9230         * MonthCalendar.cs: Added Click and DoubleClick events again,
9231         but this time they only hide Control's Click and DoubleClick.
9232         
9233 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
9234
9235         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
9236         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
9237
9238 2007-01-02  Jackson Harper  <jackson@ximian.com>
9239
9240         * TextBoxBase.cs: We move the caret with the split now, so we
9241         don't need to explicitly move the caret after splitting.  This
9242         fixes the caret bumping down an extra line on Enter.
9243
9244 2007-01-02  Miguel de Icaza  <miguel@novell.com>
9245
9246         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
9247         2.72). 
9248
9249         * ScrollableControl.cs: Add Scroll event.
9250
9251 2007-01-02  Mike Kestner  <mkestner@novell.com>
9252
9253         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
9254         to fix all hdr height padding codepaths.  Fixes #80207.
9255
9256 2007-01-02  Chris Toshok  <toshok@ximian.com>
9257
9258         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
9259         setting it to the Control defaults anyway, and it being after the
9260         Dock set was screwing up layout.
9261         (set_Dock): don't short circuit out of setting base.Dock.  Also,
9262         no need to call UpdateStatusBar here, as it'll be re-layed out if
9263         it needs to be.
9264
9265 2007-01-02  Mike Kestner  <mkestner@novell.com>
9266
9267         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
9268         to header height for width == -1. Fixes the rest of #80207.
9269
9270 2007-01-02  Mike Kestner  <mkestner@novell.com>
9271
9272         * ListView.cs: rework the mouse event forwarding everaldo added
9273         to translate the coordinates to the parent control not
9274         raise the parent events until after we've done our work. Hover
9275         needs more work, in the case where HoverSelection is on, because
9276         the item control receives more than one MouseHover per Enter
9277         event, so we need to ensure only the "first" hover gets forwarded.
9278         Opening a minor bug for that.
9279
9280 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
9281
9282         * CheckedListBox.cs: Fixed SelectionMode to match MS.
9283         * ListControl.cs: Implemented AllowSelection property. Removed extra
9284         tabs.
9285         * ListBox.cs: Implemented AllowSelection property.
9286
9287 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9288
9289         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
9290         SelectedItem, it prevent for errors when you must disable item
9291         before perform click. Fixes #80409.
9292
9293 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9294
9295         * MenuAPI.cs: Prevent second level and beyond submenus to close
9296         until first level when move out side of popup.
9297         
9298 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9299
9300         * MenuAPI.cs:
9301         - Down submenu positin in three pixels.
9302         - Closes sub menu when mouse leaves from menu. Fixes #80402.
9303
9304 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
9305
9306         * ThemeWin32Classic.cs:
9307         - Fix popup menu size adding one pixel on the top.
9308         - Down menu item border from two to one to mimic Win32.
9309         - Some source identation fixes. 
9310
9311 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9312
9313         * ThemeWin32Classic.cs: Use float numbers to calculate size and
9314         position of menu arrows, it fix wrong arrow size.
9315
9316 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
9317
9318         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
9319         instead of line, it simplify draw operation and fix it using 3D
9320         borders to mimic Win32.
9321
9322 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
9323
9324         * StatusStrip.cs: Add implementation of the sizing grip.
9325
9326         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
9327         StatusStrip rendering.
9328
9329 2006-12-31  Chris Toshok  <toshok@ximian.com>
9330
9331         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
9332         override the layout style (anchor/dock) of the control.  assign to
9333         Dock instead.  Fixes bug #80416.
9334
9335         * ToolStrip.cs: same.
9336
9337 2006-12-31  Andreia Gaita  <avidigal@novell.com>
9338
9339         * ContainerControl.cs: Use ContainerSelected flag to check if 
9340         a Container is directly selected, or if Select is called on a 
9341         non-container. If a container is directly selected, focus events 
9342         should not be raised.
9343         Apply #80411 patch to throw exception on set_ActiveControl if 
9344         control is the same as the current one.
9345         
9346         * Control.cs: Use ContainerSelected flag (see above).
9347         Add invalidation check to raise event but not invalidate if 
9348         dimensions are 0.       
9349         Apply #80411 patch.
9350         
9351
9352 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
9353
9354         * MenuAPI.cs: After click, dont close popup menu when menu is
9355         ContextMenu. Fixes #80399.
9356
9357 2006-12-30  Chris Toshok  <toshok@ximian.com>
9358
9359         * ContainerControl.cs: make sure we throw the exception if the
9360         container control doesn't contain the control we're setting
9361         ActiveControl to.
9362
9363 2006-12-30  Chris Toshok  <toshok@ximian.com>
9364
9365         * Control.cs (SetTopLevel): fix the exception raised by
9366         SetTopLevel for child controls.
9367         (set_Anchor): call UpdateDistances when setting the anchor type.
9368         This fixes bug #80336.
9369
9370 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9371
9372         * Theme.cs: For now, revert back to 8pt font.
9373
9374 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
9375
9376         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
9377         Fixes #80395.
9378
9379 2006-12-29  Chris Toshok  <toshok@ximian.com>
9380
9381         * Control.cs: reorder the code in OnResize to give the same event
9382         ordering as MS.
9383
9384 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9385
9386         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
9387         TileHorizontally and TileVertically.
9388         
9389 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
9390
9391         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
9392         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
9393         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
9394         Corrected copyright and email adress.
9395
9396 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9397
9398         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
9399         of Exception in FullPath property if no TreeView is associated with
9400         the TreeNode.
9401
9402 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
9403
9404         * Theme.cs: Marked default_font as private, and initialize it in ctor
9405         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
9406         on 2.0 profile.
9407         * ThemeGtk.cs: Removed default_font intialization.
9408         * ThemeWin32Classic.cs: Removed default_font initialization.
9409
9410 2006-12-28  Chris Toshok  <toshok@ximian.com>
9411
9412         * Control.cs: fix a couple of place where we were creating handles
9413         more aggressively than we should be.  Fixes ControlRefresh unit
9414         tests.
9415
9416 2006-12-28  Chris Toshok  <toshok@ximian.com>
9417
9418         * Control.cs: contrary to what the comment said, Control.Dock does
9419         not supercede Control.Anchor - the last one you assign to decides
9420         the layout behavior.  so we need to keep track of which was the
9421         last set.  Also, fix some of the affected property arguments in
9422         PerformLayout calls, and remove an redundant parent.PerformLayout
9423         call in OnResized.
9424
9425         Add a VisibleInternal property, which returns is_visible.  We
9426         can/should get rid of all the usage of this field elsewhere.
9427
9428 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9429         
9430         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
9431         control style, not DoubleBuffer. Added UseDoubleBuffering property
9432         that indicates whether doublebuffering is enabled and supported.
9433         (comment from and code based on Gert Driesen's patch in #80324).
9434         Fixes #80324.
9435
9436 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9437         
9438         * Control.cs: Fixed a NRE.
9439
9440 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9441
9442         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
9443         for 2.0.
9444
9445 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9446
9447         * Control.cs: Rewrote double buffering, now a seperate
9448         class handles all the buffering, no Graphics is disposed of
9449         until the painting is finished (earlier implementation 
9450         would crash if the control was resized in the OnPaint, 
9451         since it would cause the double buffer to be recreated
9452         and the old one disposed), a separate Graphics is 
9453         created for every paint (MS behaviour and anyways the state
9454         of the Graphics would have to be saved and restored otherwise)
9455         
9456         * XplatUIDriver.cs: 
9457         * XplatUIX11.cs:
9458         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
9459         so that we can get the graphics for the back buffer without
9460         having to create a new one and remove the offscreen_dc parameter
9461         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
9462         
9463 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9464
9465         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
9466         Also make virtual all the key-related methods.
9467
9468         * ListViewItem.cs: Make virtual the key related methods for
9469         ListViewSubItemCollection.
9470
9471 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9472
9473         * ListView.cs:
9474         * ListViewItem.cs:
9475         * ThemeWin32Classic.cs:
9476         * Theme.cs: Initial support for Tile view in ListView,
9477         as well as the implementation of the required bits for it (Item
9478         and Subitem).
9479
9480 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9481
9482         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
9483         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
9484         Provide useful exception messages.
9485
9486 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9487
9488         * TrackBar.cs: Remove a warning.
9489         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
9490         when used by DateTimePicker, fixes #80287. This also requires that 
9491         MonthCalendar implements it's own drawing for the yearly updown control,
9492         otherwise the Capture tracking would be too complicated. Removed the Click 
9493         and DoubleClick events (according to comments they were hiding the base class
9494         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
9495         raise these events, not that they cannot be raised. It is possible to raise 
9496         them by calling OnClick and OnDoubleClick). Added two internal fields in 
9497         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
9498         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
9499         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
9500         event, no longer needed.
9501         
9502 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9503
9504         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
9505         true if new value differs from current value.
9506
9507 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9508
9509         * Control.cs: ControlCollection.Count must be public. Fixed build of
9510         unit tests.
9511
9512 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9513
9514         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
9515
9516 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
9517
9518         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
9519
9520 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9521
9522         * Control.cs: Invalidates control including when Width and Height is 
9523         equal zero or is not visible, only Paint event must be care about 
9524         this. Fixes #79913.
9525
9526 2006-12-26  Chris Toshok  <toshok@ximian.com>
9527
9528         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
9529         more corcompare work.
9530
9531         * DataGridView.cs: fix compiler warning.
9532
9533         * ColumnHeader.cs: some corcompare work, and also take the
9534         opportunity to make the internal fields private.
9535
9536         * ListView.cs: fix the fallout from the above field change.
9537
9538 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9539
9540         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
9541         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
9542         ToolStripTextBox.cs: Fixes to events and corcompare.
9543
9544 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
9545
9546         * ListView.cs: Call owner.OnMousexx event to propagate events from
9547         item to ListView. Fixes #80367.
9548
9549 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9550
9551         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
9552         if value is less than one. ItemHeight should not be set to a value
9553         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
9554         Removed extra tabs.
9555
9556 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
9557
9558         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
9559         * ToolStripStatusLabel.cs: Add Spring for Moma.
9560
9561 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9562
9563         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
9564         Fixed code formatting. Removed debug code.
9565         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
9566
9567 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
9568
9569         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
9570         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
9571         ArgumentOutOfRangeException if ColumnCount is negative. In 
9572         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
9573         less than 4 or higher than 32768.
9574         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
9575         Fixed FormatProvider to return CurrentCulture unless explicitly set.
9576         Fixed IsFormatProviderDefault to return true if FormatProvider has
9577         not been explicitly set.
9578
9579 2006-12-25  Chris Toshok  <toshok@ximian.com>
9580
9581         * Application.cs: add a couple of 2.0 events.
9582
9583 2006-12-25  Chris Toshok  <toshok@ximian.com>
9584
9585         * Control.cs: fix compiler warning.
9586
9587         * AxHost.cs: corcompare fixes.
9588
9589         * ApplicationContext.cs: corcompare fixes.
9590
9591 2006-12-25  Chris Toshok  <toshok@ximian.com>
9592
9593         * Control.cs: only update dist_right/dist_bottom if the
9594         width/height is > 0.  this fixes anchored controls being resized
9595         smaller until they disappear and then resized larger again.
9596
9597 2006-12-25  Chris Toshok  <toshok@ximian.com>
9598
9599         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
9600         since they're nothing more than X/Left and Y/Top, respectively.
9601
9602         Also, move back to a per-control Bitmap/Graphics for
9603         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
9604         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
9605         Height.
9606
9607 2006-12-25  Miguel de Icaza  <miguel@novell.com>
9608
9609         * MessageBox.cs: Implemented overload that takes a new "bool
9610         displayHelpButton" by adding a new internal field "show_help".
9611         When clicked this will raise the HelpRequested on the owner or the
9612         main form. 
9613
9614         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
9615         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
9616
9617         * ListView.cs: Add support ColumnWidthChanged and
9618         ColumnWidthChanging. 
9619
9620         Add support for ColumnReordered event.
9621         (ReorderColumn): Add NET_2_0 specific support for cancelling the
9622         reorder.
9623
9624         Very nice codebase!
9625
9626         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
9627
9628         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
9629
9630 2006-12-24  Chris Toshok  <toshok@ximian.com>
9631
9632         * GridTablesFactory.cs: 2.0 corcompare work.
9633
9634         * ToolStripContainer.cs: add "override" to
9635         ContextMenuStripChanged, and remove the local event object.
9636
9637         * ToolStripDropDown.cs: same with a couple properties.
9638
9639         * ToolStripPanel.cs: same with AutoSizeChanged event.
9640
9641         * TextBoxBase.cs: add "override" to AutoSizeChanged.
9642
9643         * Form.cs: add the remaining 2.0 events, and do some corcompare
9644         attribute work.
9645
9646         * DateTimePicker.cs: add "new" to padding.
9647
9648         * ButtonBase.cs: use Control's use_compatible_text_rendering.
9649
9650         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
9651
9652         * DataGridView.cs: PaddingChanged is overridden.
9653
9654 2006-12-24  Chris Toshok  <toshok@ximian.com>
9655
9656         * Control.cs: corecompare work here too.
9657
9658         * DataGridViewElement.cs, DataGridView.cs,
9659         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
9660         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
9661         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
9662         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
9663         work.
9664
9665 2006-12-24  Miguel de Icaza  <miguel@novell.com>
9666
9667         * Control.cs: Switched the error message on the console for a
9668         todo.  A review of the code will have to cope with this anyways
9669         (since its a large feature, it is in our radar) and it was
9670         producing too much output when running PDN.
9671
9672         * ToolStripComboBox.cs: Set the text when the SelectedIndex
9673         changes.  Applications depend on this (PDN 2.72)
9674
9675 2006-12-23  Chris Toshok  <toshok@ximian.com>
9676
9677         * TableLayoutSettings.cs: finish up the corcompare work for this
9678         class.
9679
9680 2006-12-23  Chris Toshok  <toshok@ximian.com>
9681
9682         * Control.cs: make SetImplicitBounds internal, do some futzing
9683         with LayoutEngine so that it's available in 1.1, and remove the
9684         entire duplicated code mess from PerformLayout.  Use
9685         System.Windows.Forms.Layout.DefaultLayout instead.
9686
9687         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
9688
9689 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9690
9691         * Form.cs: Add MainMenuStrip property.
9692
9693 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
9694
9695         * Control.cs: Add ContextMenuStrip property and implementation.
9696         Fix ContextMenu implementation to show menu centered on control when
9697         activated using the keyboard instead of showing at screen (0,0).
9698
9699         * ToolStripDropDown.cs: Fix needed overload of Show ().
9700
9701 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9702
9703         * Menu.cs: Name property added for 2.0 profile.
9704         
9705 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9706
9707         * Menu.cs: Update information about FindMenuItem, method to be
9708         implemented soon.
9709
9710 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9711
9712         * MenuAPI.cs: When deselect items deselect also selected subitems.
9713         
9714 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
9715
9716         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
9717         FindSubItemByCoord to found itens that is not active, also an
9718         cheking added to FindSubItemByCoord to search for items only 
9719         in visible popup windows. Fixes #80274.
9720
9721 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
9722
9723         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
9724         internal property, it be care about change ExStyle. 
9725
9726 2006-12-22  Andreia Gaita  <avidigal@novell.com>
9727
9728         * ContainerControl.cs: set activeControl for parent forms up the 
9729         tree when the new activecontrol is a container.
9730         When validating the active control, if it is a container, also
9731         raise up the validation for it's active control. Fixes #80280
9732         
9733         * Control.cs: Add internal property flag and check to prevent
9734         Focus events from getting raised when Select() is called for
9735         a ContainerControl. There are still too many focus events being
9736         raised at the moment though.
9737         Cleaned up the code a bit.
9738
9739 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9740
9741         * Control.cs: Added all missing 2.0 events.and
9742         fixed a couple of corcompare issues.
9743         * TrackBar.cs: Implemented missing 2.0 bits.
9744         * MonthCalendar.cs, 
9745         * DateTimePicker.cs, 
9746         * MdiClient.cs: Fixed some corcompare issues.
9747
9748 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9749
9750         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
9751         SplitterPanel.cs: corecompare work.
9752
9753 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9754
9755         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
9756         Clean up warnings for BackgroundImageChanged and PaddingChanged
9757         events now that they are implemented in Control.cs.
9758
9759 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
9760
9761         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
9762         
9763         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
9764         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
9765         of TableLayoutPanel and supporting cast.
9766
9767 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9768
9769         * XplatUIWin32.cs: 
9770         - GrabWindow now confines the mouse pointer to the confine window.
9771         - Added Win32ClipCursor and Win32GetClipCursor.
9772
9773         * Control.cs: 
9774         - Added CaptureWithConfine to be able to capture and confine 
9775         mouse pointer.
9776         
9777         * InternalWindowManager.cs: 
9778         - Call CaptureWithConfine instead of Capture if we're an
9779         MdiChild (fixes #79982).
9780
9781 2006-12-21  Chris Toshok  <toshok@ximian.com>
9782
9783         * DataGrid.cs: guard against the initial state of selection, where
9784         selection_start == -1.  make sure we only select from index >= 0.
9785         Fixes bug #80291.
9786
9787 2006-12-21  Chris Toshok  <toshok@ximian.com>
9788
9789         * Control.cs: we don't need to be so draconian with
9790         UpdateDistances, and we thusly don't need to call it before
9791         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
9792
9793 2006-12-21  Daniel Nauck  <dna@mono-project.de>
9794
9795         * ComboBox.cs,
9796         TextBox.cs: Implemented AutoComplete properties.
9797
9798 2006-12-20  Chris Toshok  <toshok@ximian.com>
9799
9800         * DataGridView*.cs: some corecompare work.
9801
9802 2006-12-20  Jackson Harper  <jackson@ximian.com>
9803
9804         * XplatUIX11.cs: We need to hide the caret when deleting it,
9805         otherwise you get carets left lying around everywhere.
9806         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
9807         prevents getting some weird half drawn caret tracers when
9808         scrolling.
9809         * TextControl.cs: Attempt to reduce the number of times we need to
9810         recreate the caret.
9811
9812 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
9813
9814         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
9815
9816 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9817
9818         * DateTimePicker.cs:
9819         - Implemented missing 2.0 bits.
9820         - Changed some default values to match MS.
9821         
9822 2006-12-20  Jackson Harper  <jackson@ximian.com>
9823
9824         * TextBoxBase.cs: When changing the font across the document we
9825         can't recalculate after changing each line, since that will cahnge
9826         the line count.
9827         - PreferredHeight is a little different than i thought.
9828         - When backspacing, move the caret before we do the actual char
9829         delete, because when that delete crosses a wrap boundary the
9830         positional information will change.
9831
9832 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9833
9834         * Control.cs: Added some missing 2.0 bits: 
9835         BackgroundImageLayout, BackgroundImageLayoutChanged, 
9836         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
9837         add IBindableComponent and IDropTarget implementation.
9838         
9839         * MonthCalendar.cs: 
9840         - Added all missing 2.0 features:
9841         BackgroundImageLayout, RightToLeftLayout, 
9842         OnHandleDestroyed, RightToLeftLayoutChanged, 
9843         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
9844         PaddingChanged.
9845         - Rewrote all the BoldDate code, it was completely broken.
9846         - Fixed all the tests (the tests can now be re-enabled, the
9847         problems were not with the tests, but with the control, it was
9848         mostly broken).
9849         
9850         * DateTimePicker.cs: Changed the location where the 
9851         MonthCalendar is shown.
9852         
9853 2006-12-19  Chris Toshok  <toshok@ximian.com>
9854
9855         * DataGridView.cs: add IDropTarget implementation.
9856
9857         * ToolStripPanel.cs: add IDropTarget implementation.
9858
9859 2006-12-19  Jackson Harper  <jackson@ximian.com>
9860
9861         * TextControl.cs: soft now means something different than what it
9862         used to mean, we want to move the caret regardless of whether or
9863         not this break was soft (would we really have wanted the caret
9864         to not move with the break in the old context?)
9865         * TreeView.cs: Make sure we factor in the vert scrollbar when
9866         calculating the horizontal scrollbar's maximum.
9867
9868 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9869
9870         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
9871         check for keywords in alternate casing, close bug #80049.
9872
9873 2006-12-19  Chris Toshok  <toshok@ximian.com>
9874
9875         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
9876         methods (which all do nothing).
9877
9878         * IDropTarget.cs: add the 4 missing methods.
9879
9880 2006-12-19  Chris Toshok  <toshok@ximian.com>
9881
9882         * TableLayoutRowStyleCollection.cs: corcompare work.
9883         
9884         * TableLayoutSettings.cs: same.
9885
9886         * TableLayoutStyle.cs: same.
9887
9888         * TableLayoutColumnStyleCollection.cs: same.
9889
9890 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
9891
9892         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
9893         TableLayoutPanel I've had in my local tree for way too long.
9894
9895 2006-12-19  Miguel de Icaza  <miguel@novell.com>
9896
9897         * TableLayoutSettings.cs: Finish the public API (still needs all
9898         the logic to update on changes). 
9899
9900         * TableLayoutPanelCellPosition.cs: new file.
9901         
9902         * TableLayoutRowStyleCollection.cs,
9903         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
9904         TableLayoutSettings.cs: Track the final 2.0 table api.
9905
9906 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9907
9908         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
9909         and Image List 2.0 members for ColummnHeader.
9910         * ListView.cs: Add key-related 2.0 methods for
9911         ColumnHeaderCollection.
9912
9913 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9914
9915         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
9916         ArgumentNullException if items argument is null. Ignore null item in
9917         arrays. Removed extra tabs.
9918
9919 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
9920
9921         * MonthCalendar.cs: Fixed InvalidCastException.
9922
9923 2006-12-19  Jackson Harper  <jackson@ximian.com>
9924
9925         * TextControl.cs: Don't increment the position here.
9926         - When calculating char positions only add in the line break size
9927         for hard line breaks.
9928
9929 2006-12-19  Andreia Gaita  <avidigal@novell.org>
9930
9931         * SendKeys.cs: Changed some things to match ms.net behaviour
9932         when parsing shifted capital letters.
9933         
9934         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
9935         Add window handle as parameter to SendInput. X11 needs the 
9936         window handle, and the handle being passed      to it in the keys 
9937         queue is the active control handle (which windows needs), not 
9938         the window handle.
9939         
9940         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
9941         to support SendKeys on X.       
9942         
9943         * X11Keyboard: Implement helper method to lookup a linux keycode
9944         given the virtual keycode. Added table of keycode-2-virtualkey
9945         values to support this.
9946
9947 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9948
9949         * ListView.cs: Add support for SelectedIndexCollection
9950         and SelectedItemCollection 2.0 methods. Implement support
9951         for ImageKey too.
9952         * ListViewItem.cs: Add support for ListViewSubItemCollection
9953         2.0 methods. Also, fix an incorrect behavior of AddRange method
9954         (it shouldn't call Clear).
9955         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
9956
9957 2006-12-19  Jackson Harper  <jackson@ximian.com>
9958
9959         * RichTextBox.cs: 
9960         * TextBoxBase.cs: New args for FormatText
9961         * TextControl.cs: Rewrote the main drawing method, this version
9962         feels a little easier to understand and debug to me.  Hopefully it
9963         does to others also
9964         - Fix FormatText to OR in the new formating values.  Added
9965         FormatSpecified param, basically this works in the same way as
9966         BoundsSpecified in Control.
9967         - Set the caret properties when the caret is positioned.
9968         - When wrapping text make sure that we calculate the width of the
9969         last character
9970         - when calculating alignments we might have wrapped down to the
9971         next line, so don't search for an individual tag, search for the
9972         end of the line
9973         - We need to invalidate the selection area when we replace the
9974         selection.
9975         
9976 2006-12-19  Daniel Nauck  <dna@mono-project.de>
9977
9978         * Application.cs: add Restart () 2.0 support
9979
9980 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9981
9982         * MenuItem.cs: Invalidate menu item rectangle after change Enable
9983         property. Fixes #80268.
9984         
9985 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9986
9987         * MenuAPI.cs: Dont trigger select event when closes top menu
9988         item. Fixes #80270.
9989
9990 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
9991
9992         * MenuAPI.cs: When you click on menuitem only trigger onselect
9993         event for top menu itens. Fixes #80271.
9994         
9995 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9996
9997         * MdiWindowManager.cs: Make IconicBounds depend on
9998         the bottom of MdiClient, not the top (fixes #80267)
9999         
10000 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10001
10002         * MdiClient.cs: Added missing 2.0 attribute
10003
10004 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10005
10006         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
10007         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
10008
10009 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
10010
10011         * MenuAPI.cs: Fix click when menuitem is not popup,
10012         this regression was caused by last commit (#80272).
10013
10014 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
10015
10016         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
10017         fire click event or close menu. Fixes #80272.
10018
10019 2006-12-17  Daniel Nauck  <dna@mono-project.de>
10020
10021         * ListViewHitTestInfo.cs: add
10022
10023 2006-12-17  Daniel Nauck  <dna@mono-project.de>
10024
10025         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
10026         * FlatButtonAppearance.cs: add
10027         * DockingAttribute.cs: add
10028
10029 2006-12-17  Chris Toshok  <toshok@ximian.com>
10030
10031         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
10032         and rebind our columns when it does - this way, if you make
10033         changes to the DataTable (or set the Table attribute on a DataView
10034         after setting it as the DataGrid's DataSource, the changes are
10035         made visible.)  Fixes bug #80107.
10036
10037 2006-12-17  Daniel Nauck  <dna@mono-project.de>
10038
10039         * ListViewGroup.cs: add internal Location property for layouting.
10040         * Theme.cs: add abstract ListViewGroupHeight function.
10041         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
10042
10043 2006-12-16  Andreia Gaita  <avidigal@novell.com>
10044
10045         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
10046         Added reset of selected index to 0 when adding first tab page.
10047         Fixes #80264
10048         
10049         * NumericUpDown.cs: Fix NET_2_0 check
10050
10051 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10052
10053         * ListViewGroup.cs: fixed DefaultValueAttribute value
10054
10055 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10056
10057         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
10058
10059 2006-12-15  Miguel de Icaza  <miguel@novell.com>
10060
10061         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
10062         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
10063         ScrollableControl.cs: Add a handful of methods that are
10064         overwritten in 2.0 
10065
10066 2006-12-15  Chris Toshok  <toshok@ximian.com>
10067
10068         * XplatUIWin32.cs: initial implementation of the Reversible
10069         drawing functions.  there are some problems.  DrawReversibleFrame
10070         doesn't seem to work at all for Dashed FrameStyle, and in the
10071         Thick case there are drawing errors at the corners (we probably
10072         need to bind Rectangle instead of doing moveto/lineto's.)
10073
10074 2006-12-16  Andreia Gaita  <avidigal@novell.com>
10075         
10076         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
10077         to send blocks of key messages. Send accumulates keys to send with Flush, 
10078         while SendWait sends all keys immediately.
10079                 
10080         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
10081         XplatUIX11.cs,  XplatUIX11-new.cs:
10082         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
10083         to Win32 SendInput.
10084         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
10085         
10086         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
10087         testing for ms.net on this class is very tricky, as the tests run too fast 
10088         to allow the hook to release, essentially freezing the keyboard and the 
10089         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
10090         category :p
10091
10092 2006-12-16  Daniel Nauck  <dna@mono-project.de>
10093
10094         * Padding.cs: fixed serialization compability to MS ("_var" field names),
10095                         added missing attributes.
10096  
10097 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10098
10099         * ListViewGroup.cs: Added missing attributes.
10100         * ListViewGroupCollection.cs: Added missing attributes.
10101
10102 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10103
10104         * ListViewItem.cs: fixed ListViewSubItem text property.
10105
10106 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10107         
10108         * Control.cs: Added missing 2.0 attributes
10109         
10110 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10111         
10112         * MdiClient.cs: Added missing 2.0 attribute.
10113         * MonthCalendar.cs: Added some missing 2.0 attributes 
10114         and properties.
10115         
10116 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10117
10118         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
10119
10120 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
10121
10122         * MainMenu.cs: Add the new 2.0 constructor to help out people
10123         using the MainMenu in VS2005.
10124
10125 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10126         
10127         * MdiChildContext.cs: Removed it, no longer used.
10128         * MdiClient.cs: Added missing 2.0 attributes.
10129         
10130 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10131         
10132         * InternalWindowManager.cs: Fix a NullRef with previous 
10133         changes for toolwindows.
10134         
10135 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10136
10137         * Control.cs: 
10138         - Added AfterTopMostControl to allow for certain controls 
10139         to always stay on top when normal controls are brought to 
10140         front.
10141         
10142         * XplatUIWin32.cs: 
10143         - (DrawInversibleRectangle): Get window rectangle from Win32 
10144         in stead of from control, since Win32 doesn't calculate
10145         screen coords correctly from control's Location if it 
10146         have docked siblings.
10147         
10148         * MdiWindowManager.cs:
10149         - Correct the control menu popup location when clicked on
10150         the maximized form icon. (fixes #80223.1)
10151         - Don't show moving rectangle if mouse hasn't moved from
10152         the original clicked point.
10153         - Removed FormGotFocus handler (not used).
10154         - Calculate the control buttons location from the main
10155         window's size and not client size (fixes #79770).
10156         - Form is now closed when the form icon is double-clicked
10157         (fixes #79775). 
10158         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
10159         
10160         * InternalWindowManager.cs:
10161         - Moved some MDI-only methods to MdiWindowManager.
10162         - Removed unused properties and methods.
10163         - Unified method naming for methods handling wm messages.
10164         - Moved all message handling to seperate methods for
10165         each message.
10166         
10167         * ThemeWin32Classic.cs:
10168         - DrawManagedWindowDecorations now draws the title bar 
10169         with a gradient brush.
10170         - Add a CPDrawButtonInternal that allows us to specify
10171         light, normal and dark colors for the buttons (control 
10172         buttons for MDI children were drawn with the same light
10173         color as the background, therefore loosing the 3D effect).
10174         
10175         * SizeGrip.cs:
10176         - Add a CapturedControl property that is used to 
10177         determine the control to resize (defaults to parent). 
10178         Needed for MdiClient, since its SizeGrip's parent is
10179         MdiClient, but the control to resize is the main form.
10180         
10181         * MdiClient.cs:
10182         - Set SizeGrip's CapturedControl to the main form in order
10183         to resize the main form and not the MdiClient.
10184         - Override AfterTopMostControl to leave the scrollbars 
10185         always on top.
10186
10187 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10188
10189         * ListView.cs: fixed ListViewItemCollection AddRange and
10190                         implemented ListViewItemCollection AddRange 2.0 support.
10191
10192 2006-12-15  Daniel Nauck  <dna@mono-project.de>
10193
10194         * ListViewGroup.cs: Add.
10195         * ListViewGroupCollection.cs: Add
10196         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
10197         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
10198                                 stub for ImageKey 2.0 support.
10199
10200 2006-12-14  Mike Kestner  <mkestner@novell.com>
10201
10202         * ListView.cs: add text padding to the autocalculation for columns
10203         of width -2.  Fixes #80207.
10204  
10205 2006-12-14  Mike Kestner  <mkestner@novell.com>
10206
10207         * ListView.cs: add some index guarding for partial row navigation 
10208         logic.  Fixes #80250.
10209
10210 2006-12-14  Mike Kestner  <mkestner@novell.com>
10211
10212         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
10213         are added or inserted to the collection.  Fixes #81099.
10214
10215 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
10216
10217         * MenuAPI.cs: Closes menu when right click out side of popup
10218         it fix problem in ContextMenu and MainMenu. Fixes #80252.
10219
10220 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10221
10222         * ListViewItem.cs: Fix dumb error.
10223
10224         * ListView.cs: Add Find and ContainsKey methods in 
10225         ListViewItemCollection, and also return true for IsReadOnly
10226         and IsFixedSize (changes for 2.0). 
10227
10228 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
10229
10230         * Control.cs: Allow Region to be set to null.
10231
10232 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10233
10234         * MdiWindowManager.cs: Remove unused (commented out) code.
10235         * Form.cs: When the MdiChild is maximized, the form needs 
10236         WM_NCMOUSELEAVE, so request it.
10237         * InternalWindowManager.cs: 
10238         - Added tooltips to control buttons.
10239         - Removed duplicated control button handling code.
10240         - Removed unused (commented out) code.
10241         
10242 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
10243
10244         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
10245         was used because we must set cursor without trigger ChangeCursor event
10246         and without change Cursor control property. Fixes #79963.
10247
10248 2006-12-12  Andreia Gaita  <avidigal@novell.com>
10249         
10250         * Control.cs: Check if Region setter value is null, and ignore
10251
10252 2006-12-12  Jackson Harper  <jackson@ximian.com>
10253
10254         * TextControl.cs: We were almost always drawing one more line then
10255         needed, since the GetLineByPixel will return the last line found
10256         at that pixel. In most cases though, we were invalidating up to
10257         the junction between two lines.
10258         - Improve debug code.
10259
10260 2006-12-12  Chris Toshok  <toshok@ximian.com>
10261
10262         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
10263         and FillReversibleRectangle.
10264
10265         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
10266         and FillReversibleRectangle.
10267
10268         * XplatUIWin32.cs: add stubs which do nothing for
10269         DrawReversibleFrame, DrawReversibleLine, and
10270         FillReversibleRectangle.
10271
10272         * XplatUIOSX.cs: add stubs which raise NIE for
10273         DrawReversibleFrame, DrawReversibleLine, and
10274         FillReversibleRectangle.
10275
10276         * XplatUIX11.cs: add working implementation for
10277         DrawReversibleFrame, DrawReversibleLine, and
10278         FillReversibleRectangle.
10279         
10280         * ControlPaint.cs: implement DrawReversibleFrame,
10281         DrawReversibleLine, and FillReversibleRectangle, by calling into
10282         the appropriate XplatUI method.
10283
10284 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10285
10286         * Form.cs: Make MdiClient have the focus even if it's
10287         not selectable, since it should receive WM_KEY* and WM_MOUSE 
10288         messages. Fixes #79907.
10289         
10290 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10291
10292         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
10293         queried after the window is created.
10294         
10295         * XplatUIX11.cs: Added SendParentNotify to implement 
10296         WM_PARENTNOTIFY logic. Fixes #79965.
10297         
10298         * Control.cs: Added MakeParam.
10299         
10300 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10301
10302         * MdiClient.cs: Resume Layout before setting window
10303         states (fixes #80201).
10304
10305 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10306
10307         * MenuAPI.cs: Deselect a menu item after performing
10308         the click (fixes #80197).
10309
10310 2006-12-11  Jackson Harper  <jackson@ximian.com>
10311
10312         * TextBoxBase.cs: We need to cap this value, since Maximum -
10313         ViewPortHeight can be less than zero.
10314         - Only do selection with the left mouse button.
10315         * TextBox.cs: Don't tell the world that we have a context menu.
10316         * Control.cs: New method so that we can control whether or not the
10317         context menu is visible outside MWF.
10318
10319 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10320
10321         * ToolBarButton.cs: Fix text positon. 
10322
10323 2006-12-11  Miguel de Icaza  <miguel@novell.com>
10324
10325         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
10326
10327         * Control.cs (DoubleBuffered): Add implementation.
10328
10329         * Application.cs (OpenForms): Add.
10330
10331 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10332
10333         * Form.cs: Use opacity instead of Opactiy to determine if we need
10334         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
10335
10336 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
10337
10338         * Control.cs: Fix NRE if Control.Site was set to null.
10339
10340 2006-12-11  Chris Toshok  <toshok@ximian.com>
10341
10342         * Control.cs: ControlCollection.Remove should return if the arg is
10343         null, and ControlCollection.SetChildIndex should raise a ANE.
10344
10345 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
10346
10347         * Control.cs: Verify value set for Dock property. Code formatting
10348         updates.
10349
10350 2006-12-11  Jackson Harper  <jackson@ximian.com>
10351
10352         * TextControl.cs: Draw the caret and the selection when a flag is
10353         set on the owner.
10354         * TextBoxBase.cs: We want to draw the caret and the selection for
10355         TextBox but not for TextBoxBase.
10356         - If the window is resized and scrolling is no longer needed (the
10357         whole doc is visible) set the scroll position to zero.
10358         - The default SelectWord (the one TextBox uses) should move the
10359         caret to the end of the word.
10360         - SelectAll moves the caret to the end of the selection.
10361         * TextBox.cs: We don't selectall on focus, we just do it when the
10362         control is created.
10363         
10364 2006-12-11  Mike Kestner  <mkestner@novell.com>
10365
10366         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
10367
10368 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10369
10370         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
10371         2.0 support.
10372         * ListViewItem.cs: Add Name 2.0 property.
10373
10374 2006-12-11  Andreia Gaita  <avidigal@novell.com>
10375
10376         * TabControl.cs: Set visibility on selected or default tab 
10377         when tabcontrol handle is created, so that it's contents
10378         actually show up (duh). Fixes #80193
10379         Don't redraw the control if there is no handle created, as
10380         the selected index might be completely invalid. Added some tests
10381         to check for this.
10382
10383 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
10384
10385         * ToolBar.cs: Uses maximun width and height of all buttons as 
10386         button rectangle when ButtonSize specified, it looks strange but
10387         is what happens in Win32. Fixes #80189.
10388
10389 2006-12-11  Jackson Harper  <jackson@ximian.com>
10390
10391         * TextControl.cs: Need to track undo levels ourself, since
10392         compound actions will mess them up.
10393
10394 2006-12-10  Andreia Gaita  <avidigal@novell.com>
10395
10396         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
10397         SelectedIndex value is changed (even if it's not valid).
10398         Reset SelectedIndex to 0 when the handle is created and if
10399         the current index is invalid.
10400         Fixes SelectdeIndex unit tests and #80128
10401
10402 2006-12-08  Chris Toshok  <toshok@ximian.com>
10403
10404         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
10405         calls EndEdit, it needs to be called before we set current_cell to
10406         its new value.  Otherwise, we end up committing the value in the
10407         textbox to the new cell as well.  Fixes bug #80160.
10408
10409 2006-12-08  Chris Toshok  <toshok@ximian.com>
10410
10411         * Form.cs (set_CancelButton): if the button's DialogResult is
10412         None, set it to Cancel.  Fixes bug 80180.
10413
10414 2006-12-08  Jackson Harper  <jackson@ximian.com>
10415
10416         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
10417         to watch ourselves when setting the canvas size and setting the
10418         scrollbar values.
10419
10420 2006-12-08  Chris Toshok  <toshok@ximian.com>
10421
10422         * DataGrid.cs: comment out the two MakeTransparent calls for the
10423         time being so people using trunk (and not 1.2.2) on windows can
10424         actually use the datagrid.  This deals with bug #80151.
10425
10426 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10427
10428         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
10429         Graphics.DrawImage (image, int, int, int, int) overload instead
10430         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
10431         the dpi difference and was blurring images it drew.
10432         [Fixes bug #79960]
10433
10434 2006-12-08  Chris Toshok  <toshok@ximian.com>
10435
10436         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
10437         rowcnt is 0 (such as with an empty datasource), and make sure we
10438         initialize not_usedarea.Y to cells.Y, so we don't draw over the
10439         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
10440
10441 2006-12-08  Chris Toshok  <toshok@ximian.com>
10442
10443         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
10444         grid.
10445
10446 2006-12-08  Chris Toshok  <toshok@ximian.com>
10447
10448         [ Fixes bug #80167 ]
10449         
10450         * ThemeWin32Classic.cs: don't draw the image if the button's flat
10451         style is FlatStyle.System.
10452
10453         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
10454         ButtonBase.flat_style private, and switch uses of it to the public
10455         property.
10456         
10457 2006-12-08  Chris Toshok  <toshok@ximian.com>
10458
10459         [ Fixes bug #80121 ]
10460         
10461         * ThemeWin32Classic.cs: center the caption text in the datagrid
10462         when we draw it.
10463
10464         * DataGrid.cs: lessen the amount we add to the caption height from
10465         6 to 2.  6 was making it huge.
10466
10467 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10468
10469         * UpDownBase: Handle MouseWheel call directly instead of capturing
10470         the inner textbox's OnMouseWheel. Fixes #80166
10471
10472 2006-12-08  Jackson Harper  <jackson@ximian.com>
10473
10474         * TextControl.cs: We need to invalidate the textbox when we empty
10475         it (how had this not been discovered before?)
10476
10477 2006-12-08  Jackson Harper  <jackson@ximian.com>
10478
10479         * TextBoxBase.cs: Reworked the mouse down code so I could get it
10480         to behave like MS, we now ignore the eventargs.Click and just
10481         track state ourself, which we were already doing anyways.
10482         - Constrain the double click handler to the double click size.
10483         
10484 2006-12-08  Chris Toshok  <toshok@ximian.com>
10485
10486         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
10487         direction if that scrollbar isn't shown.  fixes bug #80158.
10488
10489 2006-12-08  Andreia Gaita  <avidigal@novell.com>
10490
10491         * NumericUpDown.cs: Update value on getter. Fixes #79950
10492
10493 2006-12-08  Chris Toshok  <toshok@ximian.com>
10494
10495         * MenuItem.cs: add back in the event cloning code.  I didn't know
10496         how to do it in the face of the EventHandlerList work i'd done
10497         last week.  Fixes bug #80183.
10498
10499 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
10500
10501         * Control.cs: Add an invalidate to the BackgroundImage setter.
10502         [Fixes 80184]
10503
10504 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10505
10506         * ToolStrip*: Add some small properties reported by MoMA, fix event
10507         firing and default properties based off of unit tests, and add some
10508         attributes based off of the class status page.
10509
10510 2006-12-07  Jackson Harper  <jackson@ximian.com>
10511
10512         * TextBoxBase.cs: Take HideSelection into account when determining
10513         whether or not to show the selection.
10514         * RichTextBox.cs: After inserting the RTF into the document move
10515         the cursor to the beginning of the document.
10516
10517 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
10518
10519         * Control.cs: Remove static ArrayList "controls" which maintained
10520         a reference to every control created.
10521         * Application.cs: Create a static FormCollection to maintain a reference
10522         to every form created.  Use it in places that formerly enumerated through
10523         the controls one looking for forms.
10524         * Form.cs: Add and remove self from above FormCollection.
10525
10526 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
10527
10528         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
10529           not libgdk (though it makes me wonder why I didn't have any
10530           problems)
10531
10532 2006-12-07  Chris Toshok  <toshok@ximian.com>
10533
10534         [ you had to know this was coming after that last commit...]
10535         
10536         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
10537         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
10538         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
10539         XCopyArea).
10540
10541 2006-12-07  Chris Toshok  <toshok@ximian.com>
10542
10543         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
10544         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
10545         all the behavior we need for double buffering.
10546
10547         * XplatUIDriver.cs: implement the 3 double buffer methods using a
10548         client side Bitmap, just like the old Control-based double buffer
10549         code did.  The methods are virtual, so each XplatUI driver
10550         subclass can replace the implementation to use a faster, platform
10551         specific approach.
10552
10553         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
10554         double buffer code, and clean things up a bit in the process.
10555
10556 2006-12-06  Chris Toshok  <toshok@ximian.com>
10557
10558         * Control.cs: reindent WndProc.
10559
10560 2006-12-06  Chris Toshok  <toshok@ximian.com>
10561
10562         [ I wanna be like BenM when I grow up ]
10563         
10564         * Hwnd.cs: create a single static Graphics object on the static
10565         Bitmap we create.  use this for our text measurements.
10566
10567         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
10568         This was causing us to allocate a backbuffer for every control,
10569         even when it wasn't flagged as double buffered.  Instead use the
10570         single graphics instance.  This might have implications for
10571         multithreaded applications.  If we run into problems we can switch
10572         to creating 1 Graphics per control, on the static Hwnd bitmap.
10573
10574         this change nets us a 7M savings in private dirty mappings when
10575         running FormsTest.exe.
10576
10577 2006-12-06  Chris Toshok  <toshok@ximian.com>
10578
10579         * ListView.cs: the BackgroundImage override is just to set
10580         attributes.  chain up to base.BackgroundImage.
10581
10582         * RichTextBox.cs: same.
10583
10584         * ToolBar.cs: same, but we need to also redraw the toolbar when it
10585         changes, so instead a handler for BackgroundImageChanged.
10586         
10587         * Control.cs: make background_image private.
10588
10589 2006-12-06  Chris Toshok  <toshok@ximian.com>
10590
10591         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
10592         sure we even need this assignment, but roll with it for now.
10593
10594         * Control.cs: make the cursor field private.
10595
10596 2006-12-06  Chris Toshok  <toshok@ximian.com>
10597
10598         * Form.cs: we don't need to explicitly set ImeMode to
10599         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
10600         behavior in the face of ImeMode.Inherit.
10601
10602         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
10603         change the ctor's assignment to use ImeMode instead of ime_mode.
10604
10605         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
10606         ImeModeInherit.  Only check for the parent's imemode (and return
10607         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
10608         This fixes the button unit test, which sets both ImeMode and
10609         DefaultImeMode to ImeMode.Disable.
10610
10611         also make the ime_mode field private.
10612
10613 2006-12-06  Chris Toshok  <toshok@ximian.com>
10614
10615         * Control.cs: make control_style private.
10616
10617         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
10618         setting the styles to true, then setting them to false instead of
10619         reverting to their previous values.
10620
10621         also, call SetStyle on the scrollbars instead of using
10622         control_style directly.
10623
10624 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
10625
10626         * FormCollection.cs: Implement. [2.0]
10627
10628 2006-12-06  Chris Toshok  <toshok@ximian.com>
10629
10630         * Control.cs: make tab_stop private.
10631
10632         * Label.cs: set TabStop, not tab_stop.  reformat some event
10633         add/remove methods to make them more compact.
10634
10635 2006-12-06  Chris Toshok  <toshok@ximian.com>
10636
10637         * RadioButton.cs: fix TabStop handling.
10638
10639 2006-12-06  Chris Toshok  <toshok@ximian.com>
10640
10641         * TextBox.cs: remove the explicit assignments to has_focus.
10642         Control does that.
10643
10644         * ButtonBase.cs: remove the assignment to has_focus.  Control will
10645         manage that.
10646         
10647 2006-12-06  Chris Toshok  <toshok@ximian.com>
10648
10649         * ButtonBase.cs: remove all uses of is_enabled from this code.
10650         it's always true when any of the code containing the checks is
10651         executed.
10652
10653 2006-12-06  Chris Toshok  <toshok@ximian.com>
10654
10655         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
10656         with different semantics (some are present in both 1.1 and 2.0
10657         profiles) so that we match MS's behavior in our unit tests.
10658
10659 2006-12-06  Jackson Harper  <jackson@ximian.com>
10660
10661         * TextControl.cs: Make this operation undoable.
10662         * TextBoxBase.cs: Factor the border width into the preferred
10663         height.
10664         - implement Modified as per the spec.
10665
10666 2006-12-06  Chris Toshok  <toshok@ximian.com>
10667
10668         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
10669
10670 2006-12-06  Chris Toshok  <toshok@ximian.com>
10671
10672         * Control.cs: make right_to_left and context_menu fields private.
10673
10674 2006-12-06  Chris Toshok  <toshok@ximian.com>
10675
10676         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
10677         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
10678         Control.child_controls private.  switch all uses over to
10679         Control.Controls.
10680
10681 2006-12-06  Chris Toshok  <toshok@ximian.com>
10682
10683         * System.Windows.Forms/GroupBox.cs,
10684         System.Windows.Forms/AccessibleObject.cs,
10685         System.Windows.Forms/ErrorProvider.cs,
10686         System.Windows.Forms/Control.cs,
10687         System.Windows.Forms/UpDownBase.cs,
10688         System.Windows.Forms/ScrollBar.cs,
10689         System.Windows.Forms/DateTimePicker.cs,
10690         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
10691         System.Windows.Forms/ToolTip.cs,
10692         System.Windows.Forms/RadioButton.cs,
10693         System.Windows.Forms/LinkLabel.cs,
10694         System.Windows.Forms/Splitter.cs,
10695         System.Windows.Forms/TextBoxBase.cs,
10696         System.Windows.Forms/ToolStripTextBox.cs,
10697         System.Windows.Forms/ContainerControl.cs,
10698         System.Windows.Forms/ThemeWin32Classic.cs,
10699         System.Windows.Forms/SizeGrip.cs,
10700         System.Windows.Forms/ToolStripDropDown.cs,
10701         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
10702         private.  switch all uses over to Control.Parent.
10703
10704 2006-12-06  Chris Toshok  <toshok@ximian.com>
10705
10706         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
10707         Control does this before calling emitting these events.
10708
10709         * TabControl.cs: same.
10710
10711         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
10712         Control.client_rect.
10713
10714         * ButtonBase.cs: use the ClientSize property instead of the
10715         client_size field.
10716
10717         * ScrollableControl.cs: same.
10718
10719         * Control.cs: another pass at making properties private.  also,
10720         move the initialization of tab_stop to the ctor.
10721
10722 2006-12-05  Andreia Gaita <avidigal@novell.com>
10723
10724         * TabControl.cs: Let the selected index be set freely if the 
10725         control handle is not yet created.
10726
10727 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10728
10729         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
10730         internal until I can rewrite DefaultLayout.
10731         * ToolStrip.cs: Fix build error and some general cleaning.
10732         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
10733         Fix build errors caused by making some of Control's fields private.
10734
10735 2006-12-05  Jackson Harper  <jackson@ximian.com>
10736
10737         * TextControl.cs: Redo Insert a little so that it use IndexOf
10738         instead of Split, this prevents it from messing up on things like
10739         \n\n\n. Also more effecient since the split array doesn't need to
10740         be created.
10741         * TextBoxBase.cs: AppendText doesnt handle multiline and non
10742         multiline text differently, this is the first of many fixes that
10743         will make multiline/non-multiline the same thing as far as the
10744         TextBoxBase is concerned.
10745         - Don't split the text and insert lines, this can lose some line
10746         endings (like is the last line a soft or hard break). Instead use
10747         the new Insert.
10748         - Fix an off by one when combining all the lines in the Text
10749         getter.
10750         - Remove separate multiline handling from the Text getter/setter.
10751
10752 2006-12-05  Chris Toshok  <toshok@ximian.com>
10753
10754         * ButtonBase.cs: a few changes:
10755
10756         - don't reinitialize internal Control fields in the ctor when they
10757         have the same values as Control sets them.
10758
10759         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
10760         this before calling those methods.
10761
10762         - we don't need to call Refresh for anything.  use Invalidate
10763         instead.
10764
10765         - OnEnabledChanged doesn't need to redraw at all - Control.cs
10766         calls Refresh in its OnEnabledChanged.
10767         
10768         - several of the events we were registered for in the ctor to
10769         redraw ourselves already include calls to Invalidate in the
10770         property setters that raise the events.  remove the extra
10771         invalidation.
10772
10773         - reformat a switch statement that was 83274658 columns wide.
10774         
10775 2006-12-05  Mike Kestner  <mkestner@novell.com>
10776
10777         * ComboBox.cs: fix a unit test regression from a TextBox
10778         SelectionLength return of -1 when there's no selection.  
10779
10780 2006-12-05  Chris Toshok  <toshok@ximian.com>
10781
10782         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
10783         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
10784         cleaning up some of the internal Control fields being used by
10785         subclasses.
10786
10787 2006-12-05  Mike Kestner  <mkestner@novell.com>
10788
10789         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
10790         listbox after AddImplicit calls since it defaults to hidden. Add a 
10791         hack to preserve requested heights across DropDownStyle changes.
10792
10793 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
10794
10795         * PropertyGrid.cs: Hide FindFirstItem method from public API.
10796
10797 2006-12-05  Chris Toshok  <toshok@ximian.com>
10798
10799         * DataGridView.cs: fix compiler warnings.
10800
10801         * PrintControllerWithStatusDialog.cs: same.
10802
10803         * ToolBar.cs: same.
10804
10805         * FolderBrowserDialog.cs: same.
10806
10807         * Splitter.cs: same.
10808
10809         * DataGridViewComboBoxCell.cs: same.
10810
10811         * XplatUIWin32.cs: same.
10812
10813         * PictureBox.cs: same.
10814
10815         * Win32DnD.cs: same.
10816
10817         * PageSetupDialog.cs: same.
10818
10819         * FileDialog.cs: same.
10820
10821         * PrintDialog.cs: same.
10822
10823         * DataGridTextBoxColumn.cs: same.
10824
10825         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
10826
10827 2006-12-05  Chris Toshok  <toshok@ximian.com>
10828
10829         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
10830         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
10831         System.ComponentModel.EventHandlerList work.
10832
10833 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
10834
10835         * DrawTreeNodeEventArgs.cs: Added.
10836
10837 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10838         
10839         * InternalWindowManager.cs: Remove an unused field.
10840         
10841 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10842
10843         * InternalWindowManager.cs:
10844         - Save the point where the title bar is clicked.
10845         
10846         * MdiWindowManager.cs:
10847         - Only allow moving of the window as long as the 
10848         clicked point on the title bar does not get out of
10849         MdiClient's rectangle. Fixes #79982.
10850         
10851         * MdiClient.cs:
10852         - Added Horizontal/VerticalScrollbarVisible.
10853         - Simplified the scrollbar sizing algorithm.
10854         - Cache the difference in scrolled value in
10855         H/VBarValueChanged and move the calculation out
10856         of the for loop.
10857
10858 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
10859
10860         * Control.cs: Make the Console.WriteLine in WndProc 
10861         write more info.
10862
10863 2006-12-05  Chris Toshok  <toshok@ximian.com>
10864
10865         * ToolStripManager.cs, ToolStripButton.cs,
10866         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
10867         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
10868         ToolStripSplitButton.cs, ToolStripSeparator.cs,
10869         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
10870         ToolStripProgressBar.cs, ToolStripContainer.cs,
10871         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
10872         to using System.ComponentModel.EventHandlerList.
10873
10874 2006-12-04  Chris Toshok  <toshok@ximian.com>
10875
10876         * LinkLabel.cs: fix up compiler warnings.
10877
10878         * TableLayoutSettings.cs: same.
10879
10880         * TreeView.cs: same.
10881
10882         * ToolBar.cs: same.
10883
10884         * TabControl.cs: same.
10885
10886         * RichTextBox.cs: same.
10887
10888         * ListViewItem.cs: same.
10889
10890         * PropertyGrid.cs: same.
10891
10892         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
10893
10894         * ToolTip.cs same.
10895
10896         * TextRenderer.cs: fix up compiler warnings.
10897
10898         * Label.cs: same.
10899
10900         * Form.cs: corcompare fixes.
10901
10902         * PictureBox.cs: fix up compiler warnings.
10903
10904         * ImageListStreamer.cs: same.
10905
10906         * TrackBar.cs: corcompare fix.
10907
10908         * Control.cs: fix up compiler warnings.
10909
10910         * SplitterPanel.cs: same.
10911
10912         * NumericTextBox.cs: same.
10913
10914         * ImageList.cs: same.
10915
10916         * StatusStrip.cs: same.
10917
10918         * ProgressBar.cs: corcompare fix.
10919
10920         * ToolStripButton.cs: fix up compiler warnings.
10921
10922         * ToolStripStatusLabel.cs: same.
10923
10924         * ToolStripSplitButton.cs: same.
10925
10926         * ToolStripSeparator.cs: same.
10927
10928         * ToolStripProgressBar.cs: same.
10929
10930         * ToolStripDropDownMenu.cs: same
10931
10932         * ToolStripDropDown.cs: same.
10933
10934         * ToolStripDropDownButton.cs: same.
10935
10936         * ToolStrip.cs: same.
10937
10938         * ToolStripControlHost.cs: same.
10939
10940         * ToolStripContentPanel.cs: same.
10941
10942         * ToolStripDropDown.cs: same.
10943
10944         * ToolStripContainer.cs: same.
10945
10946         * ToolStripPanel.cs: same, and add "new" where we need it to work
10947         with the new ArrangedElementCollection.
10948
10949         * ToolStripItemCollection.cs: add "new" where we need it to work
10950         with the new ArrangedElementCollection.
10951
10952 2006-12-04  Andreia Gaita <avidigal@novell.com>
10953
10954         * TabControl.cs: Fix default tab selection to after TabControl
10955         gets focus and not before. Fixes #80128
10956
10957 2006-12-04  Chris Toshok  <toshok@ximian.com>
10958
10959         * DataGridTableStyle.cs: remove the gross calling of
10960         datagrid.Refresh from here.  It's a broken idea and it doesn't
10961         work anyway.
10962
10963         * DataGrid.cs: instead, just register/unregister from the
10964         DataGridTableStyle events in CurrentTableStyle.  we play it
10965         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
10966         even though some would most likely not require it.  Fixes bug
10967         #80115 (and one portion of #80117 as a side effect).
10968
10969 2006-12-04  Chris Toshok  <toshok@ximian.com>
10970
10971         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
10972         so the textbox (if any) goes away.  Fixes bug #80117.
10973
10974 2006-12-04  Chris Toshok  <toshok@ximian.com>
10975
10976         * DataGridColumnStyle.cs: set the column's readonly property
10977         initially based on the property descriptor's IsReadOnly.  Fixes
10978         bug #80044.
10979
10980 2006-12-04  Chris Toshok  <toshok@ximian.com>
10981
10982         * ComboBox.cs: wrap the dropdown style changing work in
10983         SuspendLayout/ResumeLayout.  Fixes bug #79968.
10984
10985 2006-12-04  Jackson Harper  <jackson@ximian.com>
10986
10987         * TextBoxBase.cs: Fix off by one, since these are one-based.
10988         * TextBox.cs: Select all the text when we get focus.  The TextBox
10989         does this but the RTB does not.
10990
10991 2006-12-04  Chris Toshok  <toshok@ximian.com>
10992
10993         * DataGridTextBoxColumn.cs: remove some spew.
10994
10995         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
10996         but some part of me is saying "it shouldn't be here.."  At any
10997         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
10998         setting the value.
10999
11000 2006-12-04  Chris Toshok  <toshok@ximian.com>
11001
11002         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
11003         to reassign the propertydescriptor.
11004
11005 2006-12-04  Jackson Harper  <jackson@ximian.com>
11006
11007         * TextBoxBase.cs:
11008         * TextControl.cs: Remove some unused variables.  Maybe this will
11009         patch things up between mike and I.
11010         - don't split lines less then one char wide, if the viewport is
11011         that small text won't be visible anyways.
11012         
11013 2006-12-04  Jackson Harper  <jackson@ximian.com>
11014
11015         * TextBoxBase.cs: Default selection length is -1, need to do some
11016         more testing on windows to see when this is used for the property.
11017         - Redid the Lines [] property to that we properly remove soft line
11018         breaks
11019         - added support for preserving carriage returns
11020         -  CanUndo is not a variable like 'is undo enabled' it just returns
11021         true if there is undo operations available.
11022         - AppendText doesn't need to grab the last tag itself anymore,
11023         this happens automatically when we move the cursor.
11024         * TextControl.cs: Add CompoundActions to the undo class. This
11025         allows combining the other operations into one big option.  ie a
11026         paste will combine { delete old, insert new, move cursor }
11027         - Add InsertString undo operation
11028         - New method for deleting multiline text
11029         - Add carriage returns to lines. So we can preserve carriage
11030         returns when text is 'roundtripped'
11031
11032 2006-12-04  Chris Toshok  <toshok@ximian.com>
11033
11034         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
11035         minimum 0.  Fixes the scrollbar exception in bug #80136.
11036
11037 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11038
11039         * MdiClient.cs: 
11040         * MdiWindowManager: Removed unused fields and methods.
11041         
11042 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11043         
11044         * StatusBar.cs: Update all panels when a AutoSize=Contents
11045         panel needs updating.
11046         
11047         * StatusBarPanel.cs: Remove twidth and only use initialize.
11048         Fixes #80031.
11049                 
11050 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11051
11052         * Form.cs: When a form's MdiParent is set add it directly
11053         on top of the z-order in stead of relying on MdiClient's
11054         ActivateChild to do it. Fixes #80135.
11055         
11056         * MdiClient.cs: 
11057         - Remove original_order, mdi_child_list is already doing
11058         the same thing.
11059         - Create mdi_child_list on construction in
11060         stead of first use (avoids a few null checks).
11061
11062         * MenuItem.cs: Use an already existing list of mdi children
11063         to get the correct order of children and remove the other
11064         redundant list.
11065
11066 2006-12-04  Chris Toshok  <toshok@ximian.com>
11067
11068         * PropertyGridView.cs: cached_splitter_location is only used in
11069         !DOUBLEBUFFER code.
11070
11071         * PropertyGrid.cs: implement the ComComponentNameChanged event
11072         using Events, hoping that would fix the warning.  Looks like a
11073         compiler bug instead (#80144).
11074
11075         * PropertyManager.cs: remove unused method.
11076
11077 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
11078
11079         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
11080         include parentesis to fix expression evaluation. Fixes #79634.
11081
11082 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
11083         
11084         * MenuAPI.cs:
11085         - Changes to fix behavior in Menu control, some reported in #80097
11086         and other detected during behavior refactory like a select event
11087         problems.
11088         - Remove unneded "if's" conditions.
11089         - Created an internal to flag when popup is active in control, we need 
11090         it because in .NET you can have menu active but without popup active
11091         when you active menu using popup without visible items.
11092         - Mimic win32 behavior for Select and Popup events.  
11093         - Dont open popup menu when you dont have visible subitems.
11094         - Do nothing when click on disabled menu item.
11095         - Some small changes to follow the coding style guidelines.
11096         - Unselect menu only when another control gives focus. Fixes #80097.
11097         - Remove unused code.
11098         
11099         * MenuItem.cs: internal VisibleItems method to check if menu
11100         theres visible subitems, it will be usefull to fix some 
11101         behavior in Menu control.
11102         
11103 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11104         
11105         * Timer.cs: Tag property for 2.0 profile.
11106         
11107 2006-12-01  Chris Toshok  <toshok@ximian.com>
11108
11109         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
11110         
11111         * Win32DnD.cs: comment out some unused fields.
11112
11113         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
11114         some unused properties/methods.
11115
11116         * XplatUIX11.cs: fix MousePosition so we override the base class's
11117         property instead of conflicting with it.
11118
11119         * PictureBox.cs: comment out some unused fields
11120
11121         * OSXStructs.cs: make some struct fields public.
11122
11123         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
11124         MousePosition so we override the base class's property instead of
11125         conflicting with it.
11126
11127         * X11Dnd.cs: comment out some unused fields
11128
11129         * X11DesktopColors.cs: fix some struct field visibility to quiet
11130         the compiler.
11131
11132         * X11Dnd.cs: remove some debug code.
11133
11134         * ThemeClearlooks.cs: comment out unused field.
11135
11136         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
11137
11138         * ThemeGtk.cs: comment out some unused pinvokes.
11139
11140         * Timer.cs: remove some unused fields.
11141
11142         * ThemeClearlooks.cs: comment out unused field.
11143
11144         * UpDownBase.cs: comment out unused field.
11145
11146         * DataObject.cs: comment out unused field.
11147
11148         * DataGridBoolColumn.cs: reomve unused field.
11149
11150         * DataGrid.cs: remove unused field.
11151
11152         * Cursor.cs: remove old ToBitmap code.
11153
11154         * ControlPaint.cs: remove unused method.
11155
11156         * ScrollBar.cs: remove unused fields.
11157
11158         * ComboBox.cs: remove unused field, and chain up to
11159         AccessibleObject ctor.
11160
11161         * ListBox.cs: remove unused field.
11162
11163         * ButtonBase.cs: wrap a couple fields in NET_2_0.
11164
11165         * GridEntry.cs: remove unused fields.
11166
11167         * Binding.cs: remove unused fields.
11168
11169         * AxHost.cs: remove unused method.
11170
11171         * ContainerControl.cs: remove unused field.
11172
11173         * ScrollableControl.cs: remove unused fields.
11174
11175 2006-12-01  Chris Toshok  <toshok@ximian.com>
11176
11177         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
11178         the Where/WhereString stuff.  it's easy enough to CWL
11179         Environment.StackTrace.
11180
11181         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
11182         unused private fields.
11183
11184 2006-12-01  Jackson Harper  <jackson@ximian.com>
11185
11186         * TextControl.cs: Do not update the view while inserting multiline
11187         text. If we update the view we might wrap lines, before entering
11188         the new lines, which causes the new line insertion calculations to
11189         be totally fubared.
11190         - Remove an old TODO
11191         - Make debug output a little nicer
11192         
11193 2006-12-01  Chris Toshok  <toshok@ximian.com>
11194
11195         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
11196
11197 2006-12-01  Chris Toshok  <toshok@ximian.com>
11198
11199         [ fix the majority of the CS0108 warnings we've been suppressing ]
11200         
11201         * TreeView.cs: mark BackgroundImageChanged as 'new'.
11202
11203         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
11204         to "LayoutToolBar" to quiet mcs.
11205         
11206         * TabControl.cs: mark our ControlCollection class as 'new'.
11207
11208         * TextBoxBase.cs: mark some events as 'new'.
11209
11210         * Splitter.cs: TabStop is 'new'.
11211
11212         * ControlBindingsCollection.cs: mark a few methods as new since
11213         they change the visibility from protected to public.
11214
11215         * RadioButton.cs: DoubleClick -> base class, and remove unused
11216         HaveDoubleClick.
11217
11218         * MonthCalendar.cs: ImeMode property -> base class, and mark many
11219         events as new.
11220
11221         * NumericUpDown.cs: TextChanged -> base class.
11222
11223         * CheckedListBox.cs: mark our ObjectCollection class as new to
11224         quiet mcs.
11225
11226         * FolderBrowserDialog.cs: make HelpRequest event new and have it
11227         muck with the base class.
11228
11229         * StatusBar.cs: fix some mcs warnings about Update being the same
11230         name as a base class method.
11231
11232         * RichTextBox.cs: mark some events as new, and make them do things
11233         to the base class impl.
11234
11235         * UserControl.cs: mark TextChanged as new, and have it manipulate
11236         base.TextChanged.
11237
11238         * UpDownBase.cs: mark some things new.
11239
11240         * CheckBox.cs: mark DoubleClick "new", and add some text about
11241         what we need to look at.
11242
11243         * Panel.cs: make the events "new", and manipulate the base
11244         version.  these are just here for attributes.
11245
11246         * AccessibleObject.cs: make owner private.
11247
11248         * Control.cs: deal with AccessibleObject.owner being private.
11249         cache our own copy if we need it.
11250
11251         * Button.cs: add "new" to the DoubleClickEvent.
11252
11253         * ListBox.cs: no need to track our own has_focus here.  let
11254         Control.has_focus do it for us.  Also some other work to clear up
11255         warnings about not overriding base class methods of the same name.
11256         
11257         * ComboBox.cs: clear up some warnings about not override base
11258         class methods of the same name.
11259
11260 2006-12-01  Chris Toshok  <toshok@ximian.com>
11261
11262         * Form.cs: flag a few things as "new" to quiet some of the mcs
11263         warnings.
11264
11265         * AxHost.cs: same.
11266
11267         * PrintPreviewDialog.cs: same.
11268
11269         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
11270         now DGV isn't so horrible on the class status page.  also, move
11271         all events to using System.ComponentModel.EventHandlerList.  my
11272         wrists hurt.
11273
11274 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11275
11276         * MdiWindowManager.cs:
11277         - Set form to active mdi child if shown,
11278         and update the active mdi child to the next 
11279         remaining child in the z-order if the form is hidden.
11280
11281         * Form.cs: 
11282         - Track if the form has been visible and if its 
11283         visibility is beeing changed, so that the MdiClient
11284         can properly decide the ActiveMdiChild. The MdiClient 
11285         cannot track this since the form can change visibility 
11286         before MdiClient is created.
11287
11288         * MdiClient.cs:
11289         - Don't activate anything of the parent form is changing
11290         its visibility.
11291         - Rework ActiveMdiChild to only return visible mdi 
11292         children and take into account several other corner 
11293         cases.
11294
11295 2006-12-01  Chris Toshok  <toshok@ximian.com>
11296
11297         * IBindableComponent.cs: new 2.0 interface.
11298
11299 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
11300
11301         * DataGrid.cs: Font for caption area is bold by default.
11302
11303 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
11304
11305         * Menu.cs: Tag property for 2.0.
11306         
11307 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
11308
11309         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
11310         
11311 2006-12-01  Chris Toshok  <toshok@ximian.com>
11312
11313         * TreeView.cs: doh, the Begin* events should be
11314         TreeViewCancelEventHandler.
11315
11316 2006-12-01  Chris Toshok  <toshok@ximian.com>
11317
11318         * Form.cs: Form.ControlCollection already stores off the
11319         form_owner field.  don't access the base class's internal "owner"
11320         field.
11321
11322         * Control.cs: make all the fields in Control.ControlCollection
11323         private.  there's no need for any internal fields here.
11324
11325 2006-12-01  Chris Toshok  <toshok@ximian.com>
11326
11327         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
11328         OnHandleCreated.  Fixes bug #80109.
11329
11330 2006-12-01  Chris Toshok  <toshok@ximian.com>
11331
11332         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
11333         SplitContainer.cs, Control.cs, StatusStrip.cs,
11334         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
11335         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
11336         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
11337         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
11338         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
11339         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
11340         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
11341         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
11342         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
11343         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
11344
11345         do most of the work to convert our code over to use
11346         System.ComponentModel.Component.Events for
11347         adding/removing/dispatching events.
11348
11349
11350 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11351
11352         * DataGridView.cs: Fix an ArgumentNullException reported 
11353         twice today in IRC.
11354
11355 2006-11-30  Mike Kestner  <mkestner@novell.com>
11356
11357         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
11358         grabbed listbox.  Fixes #80036 and #80101.
11359
11360 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11361
11362         * Message.cs: Changed ToString() to match MS.
11363         
11364 2006-11-30  Jackson Harper  <jackson@ximian.com>
11365
11366         * TextBoxBase.cs: You can still change the selected text on a read
11367         only textbox.
11368         * TextControl.cs: Lower magic number for wrap calculations. This
11369         lets text get closer to the right (far) edge.
11370
11371 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
11372
11373         * Control.cs: Tweak 2.0 layout properties.
11374         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
11375         * TextRenderer.cs: Add a new overload.
11376         * ToolStrip*: Huge amount of changes and new features.
11377
11378 2006-11-30  Mike Kestner  <mkestner@novell.com>
11379
11380         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
11381         scroll range correct.  Fixes #79994.
11382
11383 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
11384
11385         * MdiWindowManager.cs: Update main form's text when
11386         a form is closed. (fixes #80038)
11387         
11388 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
11389
11390         * ToolBar.cs:
11391         - Fix an regression in ButtonSize.
11392         - Get ImeMode default value change to "Disable".
11393         - Get ShowTooltips default value change to true, default value is 
11394         "false" but after make a test in .NET we get "true" result as default.
11395         
11396 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
11397
11398         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
11399
11400 2006-11-29  Chris Toshok  <toshok@ximian.com>
11401
11402         * XplatUIWin32.cs (GetWindowTransparency): check return value of
11403         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
11404         SetWindowTransparency hasn't been called.
11405
11406 2006-11-29  Chris Toshok  <toshok@ximian.com>
11407
11408         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
11409         if it's supported.
11410         (set_AllowTransparency): reorder things a little so that the
11411         WS_EX_LAYERED style is removed properly.
11412
11413 2006-11-29  Chris Toshok  <toshok@ximian.com>
11414
11415         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
11416         
11417         * Form.cs: only call the XplatUI transparency method (get/set) if
11418         SupportsTransparency says it's supported. Otherwise fallback to
11419         doing nothing (in the set case) or returning the instance field we
11420         cache (in the get case).
11421
11422         * XplatUIStructs.cs: add TransparencySupport flag enum.
11423         
11424         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
11425         change to SupportsTransparency.
11426
11427         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
11428         TransparencySupport.None from SupportsTransparency.
11429
11430         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
11431         TransparencySupport.Set from SupportsTransparency.
11432
11433         * XplatUIWin32.cs: implement GetWindowTransparency calling
11434         GetLayeredWindowAttributes, and implement SupportsTransparency by
11435         checking whether or not both
11436         GetWindowTransparency/SetWindowTransparency are available
11437         entrypoints.  We need to do this since SetWindowTransparency is
11438         available as of win2k, but GetWindowTransparency requires winxp.
11439         yay win32 api.
11440
11441         * XplatUI.cs: Add GetWindowTransparency, and change
11442         SupportsTransparency to allow for either/both Get/Set.
11443
11444 2006-11-29  Chris Toshok  <toshok@ximian.com>
11445
11446         * DataGrid.cs: keep from going into an infinite loop redrawing a
11447         datagrid that has no datasource.  Fixes bug #80033.
11448
11449 2006-11-29  Chris Toshok  <toshok@ximian.com>
11450
11451         * MenuItem.cs: fix the NRE when we assign text (and therefore call
11452         Invalidate) before the mainmenu has been assigned to a control.
11453
11454 2006-11-29  Chris Toshok  <toshok@ximian.com>
11455
11456         * DataGrid.cs: detect when we should be double the double click
11457         row/column autosize stuff, although that codepath has yet to be
11458         written.  part of the work for bug #79891.
11459
11460 2006-11-29  Chris Toshok  <toshok@ximian.com>
11461
11462         * Binding.cs (SetControl): fix unit test.
11463
11464 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11465
11466         * PageSetupDialog.cs: Validate the margins and set them in
11467         PageSettings. 
11468         * NumericTextBox.cs: New class to mimic the behavior of the
11469         textboxes used in the printing dialogs.
11470
11471 2006-11-29  Andreia Gaita  <avidigal@novell.com>
11472         
11473         * Form.cs: Revert previous change (remove call UpdateBounds
11474         from form constructor), because it messes with the handle creation
11475         order, and that one needs lots and lots of love.
11476         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
11477         for valid printer and throw InvalidPrinterException if document
11478         is set but printer not valid), adding a MonoTODO. Once 
11479         handle creation is done properly, we can put this back in.
11480
11481 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11482
11483         * MenuItem.cs: Create a invalidate method for menu item, to be
11484         calling from set text, it make text changes to imadiate update
11485         on screen. Fixes #80013. 
11486         
11487 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11488
11489         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
11490         fixes bug #80070 and some other problem on toolbar buttons
11491         layout.
11492
11493 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
11494
11495         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
11496         with dotted brush.      Fixes #79564
11497         
11498 2006-11-28  Andreia Gaita  <avidigal@novell.com>
11499
11500         * Form.cs: Removed call to UpdateBounds on Form
11501         constructor, it was causing a call to CreateHandle
11502         before it was supposed to.
11503         * PrintControllerWithStatusDialog: Applied patch
11504         by Chris Toshok to hide controller when there are
11505         no printers available.
11506         PrintDialog.cs: initialize printer settings to 
11507         null - correct DefaultValues test #5
11508         * PrintPreviewControl.cs: Move PrintController
11509         initialization to GeneratePreview
11510         * PrintPreviewDialog.cs: 
11511         - Remove Preview generation     from Document_set(). It is 
11512         called on OnPaint
11513         - Throw InvalidPrinterException on CreateHandle if
11514         a Document is set but there are no printers or 
11515         printer is not valid.
11516         * ThemeWin32Classic: don't paint PrintPreviewControl
11517         if there is nothing to paint    
11518
11519 2006-11-28  Miguel de Icaza  <miguel@novell.com>
11520
11521         * Form.cs: Add another popular method.
11522
11523         * TabPage.cs: ditto.
11524
11525 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11526
11527         * MenuItem.cs: Fixed a warning.
11528         * InternalWindowManager: Fixed a warning.
11529
11530 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11531
11532         * MenuItem.cs:
11533         - When cloning a menu also clone MdiList and clone the 
11534           window menu items properly (as the forms and menuitems
11535           are kept in an internal hashtable, these need updating 
11536           as well)
11537         - Rewrote the window menu code, menu items are added in the
11538           order the forms were added to their parent, and they are
11539           updated every time the window menu is shown (before the
11540           list was only generated once, in the current order of the
11541           forms, and would never be updated). A checkmark is shown
11542           next to the item corresponding to the active mdi child.
11543
11544 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11545
11546         * XplatUIStructs.cs: 
11547         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
11548         
11549         * XplatUIWin32.cs: 
11550         - Added TME_NONCLIENT to TMEFlags.
11551         - Handles WM_NCMOUSEMOVE in GetMessage to 
11552           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
11553
11554         * MdiWindowManager:
11555         - Now merges mdi child menu to parent menu when maximized.
11556         - Recalculate NC areas of both mdi child and mdi parent. 
11557           Fixes #79757 (4).
11558           on window state and size changes.Fixes #79844 (3).
11559         - Handle WM_NCCALCSIZE to properly calculate borders.
11560
11561         * Form.cs:
11562         - Add/remove to the mdi containers list of mdi children 
11563           in the order they are added.
11564         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
11565           to the maximized mdi child.
11566         
11567         * InternalWindowManager.cs:
11568         - Only execute a click on the control buttons on the mouse up,
11569           not on the mouse down. Show the state of the button 
11570           (was only showing Normal state, never Pressed state). The
11571           pressed button now follows the mouse (if you click the Close 
11572           button and move the mouse over the Maximize button, the 
11573           Maximize button will be shown as pressed). Since Win32 does
11574           not generate WM_NCLBUTTONUP if you release the button outside
11575           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
11576           it as a mouse up.
11577         
11578         * ThemeWin32Classic.cs:
11579         - Draw a missing border around mdi child forms. Fixes #79844 (2).
11580
11581         * MdiClient.cs:
11582         - Added a list of forms which contains the order the forms are
11583           added to the mdi parent.
11584         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
11585         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
11586         - If the active form changes set the scrollbars to the top
11587           of the Z order, otherwise the form could hide them.
11588         - Scrollbars are now sized according to ClientSize, not 
11589           to Size, and they take into account the other scrollbar
11590           to determine maximum.
11591         
11592 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
11593         
11594         * XplatUI.cs:
11595         * XplatUIDriver.cs:
11596         * XplatUIX11.cs:
11597         * XplatUIWin32.cs:
11598         * XplatUIOSX.cs:
11599         - Added RequestAdditionalWM_NCMessages for windows to 
11600           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
11601           Currently only implemented in XplatUIWin32.
11602
11603 2006-11-27  Chris Toshok  <toshok@ximian.com>
11604
11605         * Hwnd.cs: only add the hwnd to the windows hash in
11606         set_WholeWindow and set_ClientWindow if whole_window/client_window
11607         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
11608
11609 2006-11-27  Mike Kestner  <mkestner@novell.com>
11610
11611         * ComboBox.cs: remove redundant OnDropDown call.  It is called
11612         from the ComboListBox.ShowWindow code. Fixes #79969.
11613
11614 2006-11-27  Chris Toshok  <toshok@ximian.com>
11615
11616         * Hwnd.cs: remove the setters for ExposePending and
11617         NCExposePending - noone uses them.
11618
11619 2006-11-27  Jackson Harper  <jackson@ximian.com>
11620
11621         * TextControl.cs: new param for ReplaceSelection which determines
11622         whether we select the new selection, or set the cursor to the end
11623         of the new selection.
11624         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
11625         pasting, select the new text.
11626         * RichTextBox.cs: Use new param for ReplaceSelection.
11627
11628 2006-11-27  Jackson Harper  <jackson@ximian.com>
11629
11630         * TextBoxBase.cs: Set the selection to the caret after the caret
11631         is moved, otherwise they get out of sync.
11632
11633 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11634
11635         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
11636         it fixes #80015
11637
11638 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
11639
11640         * ThemeWin32Classic.cs: 
11641         - Fix toolbar drop down arrow position.
11642         - Fix drop down appearance when ToolBar.Appearance is normal,
11643         it fixes #80018.
11644         
11645 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
11646
11647         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
11648         * Control.cs: Same.
11649         * UpDownBase.cs: Same.
11650         * ButtonBase.cs: Same.
11651         * ScrollBar.cs: Same.
11652         * TrackBar.cs: Same.
11653         * PictureBox.cs: Same.
11654         * UserControl.cs: Same.
11655         * Label.cs: Same.
11656         * ListControl.cs: Same.
11657         * TextBoxBase.cs: Same.
11658         * ListView.cs: Same.
11659         * RichTextBox.cs: Same.
11660         * TreeView.cs: Same.
11661
11662 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
11663
11664         * PrintDialog.cs:
11665         - Text label for where 
11666         - Text label comment was not shown
11667
11668 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
11669
11670         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
11671
11672 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11673
11674         * InternalWindowManager.cs: 
11675         - Handle WM_PARENTNOTIFY to activate the form
11676         if any child control is clicked.
11677         - The form is only sizable if not minimized.
11678
11679         * MdiWindowManager.cs:
11680         - Save the IconicBounds if the form is moved.
11681         - Rework SetWindowState, now the window bounds 
11682         are stored only if the old window state is Normal.
11683         
11684         * MdiClient.cs:
11685         - In SetWindowStates store the old window state if 
11686         the window is maximized and restore window state if
11687         the window looses focus.
11688         - Don't handle any scrollbar value changes if 
11689         initializing the scroll bars. Fixes #79771.
11690         - Reworked ArrangeIconicWindows. Current algorithm
11691         tests bounds agains all other minimized windows, if
11692         any intersections create new bounds (going left to 
11693         right, bottom to top) and then test again. When 
11694         successful the bounds are saved and never computed
11695         again. Fixes #79774.
11696
11697 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11698
11699         * InternalWindowManager.cs: Added HandleTitleBarUp.
11700
11701 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11702
11703         * NumericUpDown.cs: In .NET 1.1, user entered text is still
11704         hexadecimal in ParseUserEdit.
11705
11706         
11707 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
11708
11709         * MdiWindowManager.cs: 
11710         - Handle a click on the form's icon to show the 
11711         system menu (when maximized). Fixes #79775.
11712         - Change the existing click handler for the form's
11713         icon when not maximized to show on MouseUp.
11714         Fixes #79776.
11715
11716         * Form.cs: In OnResize only layout the mdi child's
11717         parent if it actually has a parent. Might not if
11718         the window is closing.
11719
11720
11721 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11722
11723         * MdiClient.cs: Ignore active MDI client for text of parent, if
11724         child has no text set.
11725
11726 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
11727
11728         * ToolBar.cs: Fixed ToString to match MS.
11729
11730 2006-11-22  Andreia Gaita  <avidigal@novell.com>
11731
11732         * NumericUpDown: 
11733         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
11734         update inner values on set. Fixes #79966.
11735         - Override OnLostFocus to update value on NET 2. Fixes #79950.
11736         - Fix hexadecimal parsing.
11737         
11738         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
11739         parent. Fixes #79957
11740
11741 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11742
11743         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
11744         the actual size has to be queried, since if height /
11745         width is negative Win32 changes it to 0. 
11746         Fixes #79999 on Windows.
11747         
11748         * XplatUIX11.cs: Set height / width to 0 if negative
11749         in SetWindowPos. Fixes #79999 on Linux.
11750         
11751 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11752
11753         * ThemeWin32Classic.cs: Fix text redenring when button is
11754         pressed.
11755
11756 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
11757
11758         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
11759         and later navigate by mouse. Fixes #79528.
11760
11761 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11762
11763         * ToolBar.cs: Set default value for TabStop to false in
11764         constructor, it fixes remaining behavior of bug #79863.
11765
11766 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11767
11768         * MdiWindowManager.cs:
11769         * InternalWindowManager.cs:
11770         - Moved a few methods specific to Mdi from 
11771         InternalWindowManager to MdiWindowManager.
11772         Fixes #79996.
11773         
11774 2006-11-21  Chris Toshok  <toshok@ximian.com>
11775
11776         * XplatUIOSX.cs: stub out InvalidateNC.
11777
11778         * XplatUIWin32.cs: implement InvalidateNC using the call I found
11779         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
11780
11781         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
11782
11783         * XplatUIDriver.cs: add InvalidateNC abstract method.
11784
11785         * XplatUI.cs: add InvalidateNC.
11786
11787 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
11788
11789         * ToolBar.cs: Invalidate complete button area when pressed status 
11790         was changed.
11791         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
11792         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
11793         by 1 when button is pressed.
11794
11795 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11796
11797         * ToolButton.cs: Invalidate middle of DropDown button when
11798         ToolBar theres DropDownArrows.
11799         * ThemeWin32Classic.cs: Change position of DropDown arrow and
11800         fix DropDown drawing operations.
11801
11802 2006-11-20  Chris Toshok  <toshok@ximian.com>
11803
11804         * NativeWindow.cs: fix the formatting of functions ('{' on the
11805         following line), and enable the thread exception dialog.
11806
11807         * Application.cs: remove the duplicate exception catching from
11808         here.
11809
11810 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11811
11812         * Toolbar.cs: Triggers button click event when click on icon
11813         of dropdown ToolBarButton. Fixes #79912.
11814         
11815 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11816
11817         * Theme.cs:
11818         * ThemeWin32Classic.cs:
11819         - Added a property WindowBorderFont to enable themeing
11820           of mdi child windows' Text.
11821           
11822 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
11823
11824         * InternalWindowManager.cs:
11825         * Form.cs:
11826         * MdiClient.cs:
11827         * MdiWindowManager.cs: 
11828         - If mdi child is maximized, set mdi parent's
11829           text to "Parent - [Child]". Fixes #79770.
11830         - If there is any maximized mdi child windows, only the active 
11831           window (and any new windows) is maximized, the rest are normal.
11832         - On a WindowState change only save mdi child's window bounds 
11833           if the old window state was normal. Fixes #79774.
11834         - The scroll bars are now calculated on hopefully all
11835           necessary events. Fixed #79771 / #79844->6 / #79906.
11836         - MdiClient.SizeScrollBars() now takes into account docked 
11837           controls in the parent when calculating available space.
11838         - InternalWindowManager now always repaints the entire title
11839           area. Fixes #79844->1/4/5.
11840         - Added RequestNCRecalc on mdi child windowstate changes.
11841           Fixes #79772.
11842
11843 2006-11-20  Mike Kestner  <mkestner@novell.com>
11844
11845         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
11846         in the MouseUp handler of the listbox and move the return handling
11847         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
11848
11849 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
11850
11851         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
11852
11853 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11854
11855         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
11856           working in 1.2.x anymore. So, updated.
11857
11858 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
11859
11860         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
11861         NumberGroupSeparator of current culture instead of assuming en-US.
11862         Fixed bug #79967.
11863
11864 2006-11-17  Mike Kestner  <mkestner@novell.com>
11865
11866         * Control.cs: Add the concept of implicit bounds setting so that
11867         dock/undock round trips preserve explicitly set size/locations.
11868         Fixes #79313.
11869
11870 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
11871
11872         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
11873           can't handle those filters. (Fixes bug #79961)
11874
11875 2006-11-17  Chris Toshok  <toshok@ximian.com>
11876
11877         [ fixes the exit/crashes associated with #79835.  it's clearly
11878         suboptimal though, we need to figure out a better way to solve
11879         this. ]
11880         
11881         * PrintPreviewControl.cs: deal with the new invalid printer
11882         exceptions.
11883
11884         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
11885         and return false (so CommonDialog.ShowDialog doesn't actually show
11886         the form.)
11887
11888         * PrintDialog.cs: enable/disable the Ok button depending on
11889         whether or not the printer is valid.
11890
11891         * CommonDialog.cs (ShowDialog): only actually show the form if
11892         RunDialog returns true.
11893
11894 2006-11-17  Jackson Harper  <jackson@ximian.com>
11895
11896         * TextControl.cs: When soft splitting a line, mark it as a soft
11897         split line. Also carry over the current line break to the next
11898         line.
11899
11900 2006-11-17  Chris Toshok  <toshok@ximian.com>
11901
11902         * XplatUIX11.cs: when scrolling a window with an invalid area, we
11903         only want to shift the part of the invalid area that overlaps the
11904         area we're scrolling.  we also don't want to clear the invalid
11905         area unless the invalid area was entirely contained within the
11906         scrolling area.
11907
11908 2006-11-16  Chris Toshok  <toshok@ximian.com>
11909
11910         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
11911         also make sure to free the memory returned by XGetWindowProperty
11912         in GetText().
11913
11914         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
11915
11916 2006-11-16  Chris Toshok  <toshok@ximian.com>
11917
11918         * XplatUI.cs: add a new super secret way to get at the totally
11919         unsupported X11 backend.
11920
11921 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
11922
11923         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
11924
11925 2006-11-16  Jackson Harper  <jackson@ximian.com>
11926
11927         * TreeView.cs: Allow more explicit setting of top node position
11928         for scrollbars. Slower algo, but more accurate.
11929         - CollapseAll should maintain the current top node.
11930         * TextBoxBase.cs: When positioning the caret, use the line, pos
11931         method, since the x, y method does not grab the correct tag, and
11932         the caret height never gets set correctly. (Maybe I should just do
11933         away with the caret having its own height, and always use the
11934         carets current tag for height).
11935
11936 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
11937
11938         [Fixes 79778, 79923]
11939
11940         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
11941         Parent to the FosterParent instead.
11942
11943 2006-11-16  Jackson Harper  <jackson@ximian.com>
11944
11945         * TreeView.cs: Need to recalc the topnode when we expand or
11946         collapse. The scrolling methods can't handle this on their own,
11947         since they use differences between the last scroll position, and
11948         those difference get completely messed up since we are expanding
11949         nodes.  This problem should probably be fixed in the scrolling
11950         methods, so they can figure out exactly where they are, but this
11951         will slow things down a little.
11952         * ThemeWin32Classic.cs: Special case for groupboxes with empty
11953         strings, makes nunit-gui look a lot nicer.
11954
11955 2006-11-16  Chris Toshok  <toshok@ximian.com>
11956
11957         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
11958         the broken multithreaded event handling we have in here.  File
11959         this entry under "Why we should move to the new X11 backend".
11960
11961         Any thread can make it into UpdateMessageQueue, which gets events
11962         from the X socket - some of which could belong to hwnds being
11963         managed by a different thread.  We can also have multiple threads
11964         in UpdateMessageQueue at the same time, with each one reading from
11965         the X socket.  This leads to many problems, with the following
11966         solutions:
11967
11968         We can't use hwnd.Queue.Enqueue anywhere in here and must use
11969         EnqueueLocked.
11970
11971         The MotionNotify compression we do can't work across threads
11972         (without locking the entire queue, perhaps) since we call
11973         hwnd.Queue.Peek, so we just punt and don't compress motion events
11974         unless the owning thread is the one which got the X event.
11975
11976         ConfigureNotify is another fun one, since it modifies the hwnd's
11977         bounds and then enqueues the event.  We add a lock to Hwnd which
11978         is held when setting configure_pending to true (and enqueuing the
11979         event).
11980
11981         There is a race wrt the wake socket.  we need to make sure that
11982         only 1 thread is waiting on that socket, or else a thread could
11983         sleep waiting for data that never comes.  It's difficult (but not
11984         impossible) to make happen, because it seems to require something
11985         like the following:
11986
11987             1. Thread 1 polls on wake_receive
11988         
11989             2. poll returns saying there's data to be read on
11990                wake_receive.
11991         
11992             3. Thread 2 polls on wake_receive and immediately returns
11993                saying there's data to be read.
11994
11995             4. Thread 2 reads the wakeup byte from wake_receive
11996
11997             5. Thread 1 attempts to read the wakeup byte from
11998                wake_receive.
11999
12000             6. Thread 2 exits (due to a form closing, perhaps).
12001
12002             7. Thread 1 blocks forever.
12003         
12004         Fun, eh?
12005
12006         Fixing the Expose handling isn't done yet, and the races inherent
12007         in that piece of code are responsible for the drawing mistakes you
12008         see when generating expose events in a MT app (like NPlot).  This
12009         one is the likely to be the hardest to bandaid, and it doesn't
12010         appear to cause anything but drawing problems.  The other issues
12011         caused apps to exit or hang.
12012
12013         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
12014         called from a different thread than the one that should be calling
12015         these functions.
12016
12017         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
12018
12019 2006-11-15  Chris Toshok  <toshok@ximian.com>
12020
12021         * Application.cs: null out the context's MainForm when we exit
12022         RunLoop.  Fixes a newly checked in unit test as well as the last
12023         ODE from bug #79933.
12024
12025 2006-11-15  Chris Toshok  <toshok@ximian.com>
12026
12027         * Form.cs (set_Owner): allow a null value so we can clear the
12028         form's owner.
12029         (Dispose): set all our owned_form's Owner properties to null, and
12030         clear the owned_forms collection.
12031         (WM_CLOSE): clean up this a little bit.. still not right though.
12032
12033         * ApplicationContext.cs: OnMainFormClosed should only call
12034         ExitThreadCore if the main form isn't recreating.  Fixes unit
12035         test.
12036
12037 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12038
12039         [Fixes 78346]
12040
12041         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
12042
12043 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12044
12045         [Fixes 79433]
12046
12047         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
12048         keep popup window types from stealing focus from the main form
12049         on Windows.
12050
12051         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
12052
12053         * MenuAPI.cs: Set above flag to true.
12054
12055 2006-11-15  Chris Toshok  <toshok@ximian.com>
12056
12057         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
12058         the button being released is not in wParam.
12059
12060 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
12061
12062         * Form.cs: Add the released button to MouseEventArgs.Button
12063         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
12064         on Win32.
12065
12066 2006-11-15  Chris Toshok  <toshok@ximian.com>
12067
12068         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
12069         GetText().  untested because it's unused in our implementation.
12070         Control.Text always caches the text, even if
12071         ControlStyles.CacheText is not set.
12072
12073         fixes bug #79939.
12074
12075 2006-11-15  Chris Toshok  <toshok@ximian.com>
12076
12077         [ fixes #79933 ]
12078         
12079         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
12080         message.  no hiding, no disposing.
12081
12082         in the WM_CLOSE handler, hide the form if it's modal.
12083
12084 2006-11-15  Chris Toshok  <toshok@ximian.com>
12085
12086         * XplatUIX11.cs: use AddExpose instead of sending a message.
12087         fixes textbox border drawing.
12088
12089 2006-11-15  Chris Toshok  <toshok@ximian.com>
12090
12091         * PropertyGridView.cs: keep from crashing on mouse move/down when
12092         the property grid is empty.
12093
12094 2006-11-14  Jackson Harper  <jackson@ximian.com>
12095
12096         * TextControl.cs: Make PageUp and PageDown more like the MS
12097         versions.
12098         * TextBoxBase.cs: When we set the text property position the
12099         cursor at the beginning of the document.
12100
12101 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12102
12103         * Form.cs: if a mdi child's WindowState has changed
12104         before it's creation, it would display wrong control
12105         buttons.
12106         
12107 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
12108
12109         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
12110           (Fixes bug #79927)
12111
12112 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
12113
12114         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
12115         the window gets to paint its borders even if the window is
12116         getting smaller.
12117         
12118         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
12119         otherwise the old control buttons would still be painted 
12120         if the window gets bigger.
12121         
12122         * PaintEventArgs.cs: add an internal method so that the clip 
12123         rectangle can be changed.
12124         
12125 2006-11-13  Chris Toshok  <toshok@ximian.com>
12126
12127         [ fixes bug #79745 ]
12128         
12129         * NotifyIcon.cs: lots of cleanup.
12130
12131         * X11Structs.cs: add an enum for XEMBED messages.
12132
12133         * XplatUIX11.cs: reindent one of the giant switch statements, it
12134         was taking up an additional tab stop, and this file is already way
12135         too wide for my laptop's screen.
12136
12137         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
12138         we get it, resize the hwnd to the WMNormalHints max_width/height.
12139
12140 2006-11-13  Jackson Harper  <jackson@ximian.com>
12141
12142         * TextBoxBase.cs: Compute the value changes for the mouse wheel
12143         teh simple way.
12144
12145 2006-11-13  Chris Toshok  <toshok@ximian.com>
12146
12147         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
12148         #79898.  force a reference to the Region to stick around so the
12149         unmanaged object isn't collected (rendering our handle in the MSG
12150         stale).
12151
12152 2006-11-13  Chris Toshok  <toshok@ximian.com>
12153
12154         * XplatUIX11.cs: fix #79917 for window managers which support
12155
12156         using XStoreName on the raw utf8, and we need to convert to
12157         COMPOUND_TEXT if it's non-latin1.
12158
12159 2006-11-13  Chris Toshok  <toshok@ximian.com>
12160
12161         * Form.cs (set_DialogResult): we need to set closing to false if
12162         we're setting our result to None.  fixes bug #79908.
12163
12164 2006-11-13  Jackson Harper  <jackson@ximian.com>
12165
12166         * TextControl.cs: When formatting text, compute the adjusted tag
12167         lengths correctly, using FindTag for the end tag instead of trying
12168         to figure it out outselves.
12169         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
12170         the item, ItemHeight doesn't work, because trees with large
12171         imagelists use those for their height
12172         * TreeView.cs: ActualItemHeight factors in the image height
12173         - compute left edge of checkboxes correctly
12174         - when expanding/collapsing move the bottom down one pixel, so we
12175         aren't moving part of the node
12176
12177 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12178
12179         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
12180         stack in PaintEventStart so that it won't get disposed by the gc
12181         before reaching PaintEventEnd.
12182
12183 2006-11-13  Jackson Harper  <jackson@ximian.com>
12184
12185         * TextBoxBase.cs: Don't select the word if we are on a line with
12186         no text.
12187         - We don't need to position the caret on mouse up, since the mouse
12188         move handler should be doing this
12189         - When double clicking a blank line, the caret is advanced to the
12190         next line.
12191
12192 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
12193
12194         * TreeNodeCollection.cs: Avoid duplicating indexer code.
12195
12196 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
12197
12198         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
12199         Fixes part of bug #79910.
12200
12201 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
12202
12203         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
12204           (bug #79903). Some minor string updates to match ms.
12205
12206 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12207
12208         * FileDialog.cs: Don't add an extension if the filename
12209           already ends with that extension.
12210
12211 2006-11-10  Jackson Harper  <jackson@ximian.com>
12212
12213         * TreeView.cs: Use the currently highlighted node for the
12214         BeforeSelect event.
12215         * TextBoxBase.cs: There is no need to expand selection on
12216         MouseMove.
12217         - CanUndo means 'is there any undo operations', not 'is undo
12218         allowed on this textcontrol. Fixed ClearUndo unit test.
12219
12220 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
12221
12222         * Button.cs: only perform click when button is Selectable (so as 
12223         not to activate default buttons when they're disabled)
12224         
12225         * Control.cs: Rewrite of the SelectNextControl and related 
12226         methods. HandleClick now selects next control if the current one
12227         is being disabled.
12228         
12229         * Form.cs: OnActivated selects next active control only if Load 
12230         has already occurred. If Load hasn't run, there's no point in 
12231         selecting here, Load might change the state of controls.
12232         
12233         * FocusTest.cs: Tests marked as working again for these fixes
12234
12235 2006-11-10  Chris Toshok  <toshok@ximian.com>
12236
12237         * XplatUIX11.cs: a couple of fixes.
12238
12239         - use XInternAtoms with almost all the atoms we need to register,
12240         instead of many, many calls to XInternAtom.  should help a bit on
12241         startup time, at the expense of making the code look a little
12242         worse.
12243
12244         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
12245         isn't reparented (which seems to be a clue that we're running fon
12246         compiz) and they have an Owner form.  This fixes the tool windows
12247         in paint.net when running under compiz.
12248
12249         - when setting the opacity of a window, support both the case
12250         where the window has been reparented and also when it hasn't been.
12251         Since compiz/beryl doesn't seem to reparent windows, and these are
12252         the only window managers which support translucency, I'm not sure
12253         why we need the hwnd.reparented case at all.. but leave it in.
12254         now we get translucent windows in paint.net under compiz/beryl.
12255
12256 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12257
12258         * FileDialog.cs: Always return the value for FilterIndex that
12259           was set. Internally convert it to values that make sense.
12260
12261 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12262         
12263         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
12264
12265 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
12266
12267         * Toolbar.cs: Change default value of DropDownArrows to true, the 
12268         signature still using false to make it compatible with MS but the 
12269         initial value is true. Fixes #79855.
12270
12271 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
12272
12273         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
12274           only available on Linux.
12275
12276 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
12277
12278         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
12279         reduce number of calls to redraw method during toolbar creation.
12280
12281 2006-11-09  Mike Kestner  <mkestner@novell.com>
12282
12283         * ListView.cs : raise SelectedIndexChanged when an item is selected
12284         programmatically via the Item.Selected property.  Gert's nice 
12285         ListViewSelectedIndexChanged test fixture now runs clean.
12286
12287 2006-11-09  Mike Kestner  <mkestner@novell.com>
12288
12289         * ListView.cs : raise SelectedIndexChanged when a selected item is
12290         removed from the item collection using Remove or RemoveAt.
12291
12292 2006-11-09  Mike Kestner  <mkestner@novell.com>
12293
12294         * ListView.cs : raise SelectedIndexChanged once per selected item
12295         for compat with MS.  Fixes #79849+.
12296
12297 2006-11-09  Chris Toshok  <toshok@ximian.com>
12298
12299         * TabControl.cs: initialize row_count to 0, and set it to 1 when
12300         we need to (if we have any tab pages).  Fixes unit test.
12301
12302 2006-11-09  Chris Toshok  <toshok@ximian.com>
12303
12304         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
12305         width is 0, not 3.  Fixes a unit test.
12306
12307 2006-11-09  Mike Kestner  <mkestner@novell.com>
12308
12309         * ListView.cs : use Implicit scrollbars so that focus isn't 
12310         stolen from the listview when they are clicked. Fixes #79850.
12311
12312 2006-11-09  Chris Toshok  <toshok@ximian.com>
12313
12314         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
12315         have a root item.  Fixes #79879.
12316
12317 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
12318
12319         * FileDialog.cs:
12320           - Fix ToString ()
12321           - An ArgumentException is now thrown if a wrong filter
12322             is applied (matches ms). The previous filter doesn't change
12323             anymore if an exception is thrown.
12324           - Changing the FileName property also affects FileNames
12325         * ColorDialog.cs: The length of the CustomColors array is always
12326           16. It doesn't matter if we use a smaller array or null to update
12327           or change the custom colors property.
12328         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
12329           for RootFolder if we get a undefined value.
12330
12331 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12332
12333         * StatusBarPanel.cs: 
12334         - Width is set to MinWidth if Width is smaller than
12335         MinWidth. Fixes #79842.
12336         - MinWidth now always overrides Width (MSDN says MinWidth
12337         is set to Width when AutoSize = None, but they do not 
12338         behave like that).
12339         - Style has now the the correct default value.
12340         
12341 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12342  
12343         * TrackBar.cs: 
12344         - The control is completely invalidated on 
12345         Got/LostFocus to draw the focus rectangle correctly.
12346         - When AutoSize then height is always 45 (width for 
12347         vertical controls).
12348         
12349         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
12350         on the mouse when moved and it doesn't move when grabbed
12351         until the mouse moves as well. Also fixed some wrong 
12352         calculations when clicking on the thumb (control thought
12353         click was outside of thumb and didn't grab it).
12354         Fixes some of the issues in #79718.
12355
12356 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
12357
12358         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
12359
12360 2006-11-08  Chris Toshok  <toshok@ximian.com>
12361
12362         * PropertyGridView.cs: only call ToggleValue if the item is not
12363         readonly.
12364
12365 2006-11-08  Jackson Harper  <jackson@ximian.com>
12366
12367         * TextBoxBase.cs: The RichTextBox and textbox have very different
12368         word selection methods.  Implement the textbox's simple word
12369         selection here, and let the RichTextBox override and provide it's
12370         own.
12371         - Don't do extra selection on mouseup
12372         * RichTextBox.cs: Use the documents word selection algorithm, I
12373         think ideally, this function will be pulled into the
12374         RichTextBox.cs code someday.
12375
12376 2006-11-08  Chris Toshok  <toshok@ximian.com>
12377
12378         * RootGridEntry.cs: new class to represent GridItemType.Root.
12379
12380         * CategoryGridEntry.cs: reformat, and add boilerplate.
12381         
12382         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
12383         returns the UI parent anyway, and we need special handling to
12384         implement the GetTarget method in the face of it.  Also, implement
12385         Select().
12386
12387         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
12388         a root grid item, and use that instead of PropertyGrid.grid_items.
12389         Also, make use of TypeConverters (and add limitted support for
12390         ICustomTypeDescriptors) when initially populating the grid.
12391         Arrays now show up more or less properly.
12392
12393 2006-11-08  Chris Toshok  <toshok@ximian.com>
12394
12395         * Application.cs: set the modal dialog to non modal after we close
12396         it.  Fixes bug #79866.
12397
12398 2006-11-08  Jackson Harper  <jackson@ximian.com>
12399
12400         * TextControl.cs: When combining lines carry over the line end
12401         style from the end line.
12402         - Invalidate the selected area when setting it, if it is visible.
12403         * TextBoxBase.cs: Only rich text box can do full line selects.
12404         - Make sure to set the cursor position when there is a click,
12405         otherwise two clicks in separate areas could cause a large chunk
12406         to be selected.
12407
12408 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12409
12410         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
12411         Fixes #79863.
12412
12413 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12414
12415         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
12416         time. Remove tooltips when ToolButton click events.  Fixes #79856.
12417
12418 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12419
12420         * MenuAPI.cs: Ignore right click for menu actions and fixes
12421         menu border when clicked.  Fixes #79846.
12422
12423 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12424
12425         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
12426         MouseState after create wParam for message, this fixes mouse button 
12427         equal none in mouse up events.
12428         
12429 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
12430
12431         * Control.cs : Focus() now calls Select to set the Container's
12432         Active Control and to give it focus. To avoid infinite recursion
12433         (because ActiveControl also calls Focus at one point), a check 
12434         is made in Focus with the help of a new internal variable
12435         is_focusing.
12436
12437 2006-11-07  Mike Kestner  <mkestner@novell.com>
12438
12439         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
12440         if there's a selection.  Fixes #79849.
12441
12442 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
12443
12444         * PropertyGrid.cs: Avoid fixed height of help description label.
12445         Fixes part of bug #79829.
12446
12447 2006-11-07  Chris Toshok  <toshok@ximian.com>
12448
12449         * XplatUIX11.cs: fix #79790 again, by using the
12450         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
12451
12452 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12453
12454         * ToolBar.cs: Fix left click checking.
12455
12456 2006-11-07  Chris Toshok  <toshok@ximian.com>
12457
12458         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
12459
12460 2006-11-07  Chris Toshok  <toshok@ximian.com>
12461
12462         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
12463         PropertyManager unit tests.
12464
12465         * PropertyManager.cs: make property_name internal.
12466
12467 2006-11-07  Chris Toshok  <toshok@ximian.com>
12468
12469         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
12470         pass a unit test.  Also, don't set image_index to anything in
12471         response to setting the ImageList property.
12472
12473 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
12474
12475         * ToolBar.cs: Ignore click events when mouse button is not a
12476         left button, only accepts other button for dropdown menus.  
12477         Fixes #79854.
12478
12479 2006-11-07  Chris Toshok  <toshok@ximian.com>
12480
12481         * DataGrid.cs: make the back and parent row buttons a little less
12482         ugly.
12483
12484 2006-11-07  Jackson Harper  <jackson@ximian.com>
12485
12486         * TextBoxBase.cs: When converting to Text don't put line breaks in
12487         for soft line breaks.
12488         * TextControl.cs: There is an initial "fake" line in the document,
12489         this is now a soft break line, so that an extra line feed doesn't
12490         get added to the end of documents.
12491
12492 2006-11-07  Chris Toshok  <toshok@ximian.com>
12493
12494         [ fix bug #79778 ]
12495         
12496         * CurrencyManager.cs: if the list is readonly, don't bother
12497         checking if IBindingList.AllowNew is true.
12498
12499         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
12500         for non-DataRowView datasources..  or rather, make it not crash.
12501         (DataGridPaintRelationRow): make sure we limit the row painting to
12502         the area not covered by the row header, and make our cell width at
12503         least large enough to cover the relation area.  This allows grids
12504         that have relations but no rows to render correctly.
12505         (DataGridPaintRowContents): same type of changes here.
12506         (SetDataSource): move back to always calling
12507         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
12508         navigating back through relations.
12509         (HitTest): handle the case where we have no cells but have
12510         relations.  Right now we generate a hit in cell 0 of whatever the
12511         row is, not sure if this is strictly correct, but it works for our
12512         purposes.
12513         
12514         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
12515         bother doing anything.
12516
12517 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
12518
12519         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
12520         early version of StatusStrip.  Not responsible for eaten
12521         application or firstborn children.
12522
12523 2006-11-06  Chris Toshok  <toshok@ximian.com>
12524
12525         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
12526         call GetTabRect with a -1 index.  Fixes #79847.
12527
12528 2006-11-06  Jackson Harper  <jackson@ximian.com>
12529
12530         * TreeNodeCollection.cs: Update scrollbars after clearing.
12531
12532 2006-11-06  Chris Toshok  <toshok@ximian.com>
12533
12534         * NumericUpDown.cs: fix the ToString method for some unit test
12535         love.
12536
12537 2006-11-06  Chris Toshok  <toshok@ximian.com>
12538
12539         * PropertyGrid.cs:
12540         - set the initial SelectedGridItem if we can.
12541
12542         - Exclude non-mergable properties only if we're merging > 1
12543         object.  Merging 1 object isn't really merging, obviously.
12544
12545         - Handle PropertySort.NoSort just like Alphabetical, which is
12546         wrong of course, but at least gets things on the screen.
12547         
12548         * PropertyGridView.cs:
12549         - Add method "FindFirstItem" which finds the first property grid
12550         item, so we can select it by default.
12551
12552         - make use of GridEntry.CanResetValue.
12553
12554         - Don't call RedrawBelowItemOnExpansion here anymore, the
12555         individual GridEntry's will do that.
12556
12557         - Remove the ITypeDescriptorContextImpl internal class.
12558         
12559         * GridEntry.cs:
12560         - this class needs to implement ITypeDescriptorContext, as it's
12561         what MS's PropertyDescriptorGridEntry does, which means we can
12562         remove the ITypeDescriptorContextImpl internal class from
12563         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
12564
12565         - keep a reference to our PropertyGridView, and move the call to
12566         RedrawBelowItemOnExpansion here from PGV.  This means
12567         programmaticly setting Expanded actually does something visible.
12568
12569         - add a CanResetValue() function which takes into account our
12570         possibly multiple "selected_objects" in the merged case.  Shifting
12571         PropertyGridView to use this method fixes another unreported
12572         crasher found running the test for #79829.
12573
12574         - when Top or Bounds is updated, make sure the PropertyGridTextBox
12575         is updated to reflect this.
12576
12577         * CategoryGridEntry.cs: the ctor takes the PGV now.
12578         
12579 2006-11-06  Jackson Harper  <jackson@ximian.com>
12580
12581         * TextControl.cs: These are 1 based.
12582         * TextBoxBase.cs: When setting the selected text, don't change the
12583         selected text tags, this is done by ReplaceText, just position the
12584         cursor at the end of the new text.
12585
12586 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12587
12588         * ListView.cs: Allow label edit only when, when LabelEdit is
12589           set to true.
12590
12591 2006-11-06  Jackson Harper  <jackson@ximian.com>
12592
12593         * TextControl.cs: If a suitable wrapping position isn't found,
12594         just wrap right in the middle of a word.
12595
12596 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
12597
12598         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
12599           bug #79820.
12600
12601 2006-11-06  Jackson Harper  <jackson@ximian.com>
12602
12603         * TreeView.cs: Can't use the VisibleCount property when setting
12604         scrollbar heights, because this doesn't take into account whether
12605         or not the horz scrollbar just came visible.
12606
12607 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
12608
12609         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
12610         activated.  Fixes #79369, #79832.
12611
12612 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
12613
12614         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
12615           had to remove support for links that point to a directory. FileInfo
12616           returns no usefull information (means, the directory they point to)
12617           for such links. Replaced some empty string ("") with String.Empty.
12618
12619 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12620
12621         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
12622         NullReferenceException when attempting to remove node that is not in
12623         collection. Throw NullReferenceException when null is passed to 
12624         Remove. Allow first element of the collection to be removed. Fixes
12625         bug #79831.  In GetEnumerator ().Current return null if positioned 
12626         before the first element of the collection. In GetEnumerator ().Reset,
12627         position before first element of the collection.
12628
12629 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
12630
12631         * PropertyGrid.cs: To match MS, remove default title and description
12632         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
12633         buttons.
12634
12635 2006-11-04  Chris Toshok  <toshok@ximian.com>
12636
12637         * Theme.cs: add a Clamp method, just for kicks.
12638
12639         * ThemeWin32Classic.cs: clamp all color components to [0..255].
12640
12641 2006-11-04  Chris Toshok  <toshok@ximian.com>
12642
12643         * Form.cs: if the form isn't visible, Close() does nothing.
12644
12645 2006-11-03  Chris Toshok  <toshok@ximian.com>
12646
12647         * Form.cs (Close): if the form is modal, don't Dispose of it, only
12648         Hide it.
12649         (WndProc): don't Dispose after handling the WM_CLOSE message.
12650
12651         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
12652         them as such, instead of using casts from Control to Form.  Also,
12653         don't Dispose of the modal dialog when we fall out of the loop -
12654         Close() it instead.
12655
12656         fixes bug #79813.
12657
12658 2006-11-03  Chris Toshok  <toshok@ximian.com>
12659
12660         * Control.cs (Dispose): only go through the dispose thing if we're
12661         @disposing, and we haven't already been disposed.  Fixes bug
12662         #79814.
12663
12664         * Form.cs: no reason to call "base.Dispose()" here instead of
12665         "Dispose()".
12666
12667 2006-11-03  Mike Kestner  <mkestner@novell.com>
12668
12669         * ComboBox.cs : use ToString instead of casts in AddItem for
12670         sorting functionality.  Fixes #79812.
12671
12672 2006-11-03  Chris Toshok  <toshok@ximian.com>
12673
12674         * Application.cs: pave the way for actually using the thread
12675         exception dialog.  it's ifdefed out at the moment.
12676
12677 2006-11-03  Chris Toshok  <toshok@ximian.com>
12678
12679         * ThreadExceptionDialog.cs: until we get a better layout, actually
12680         hide the details textbox and label when we shouldn't see them.
12681
12682 2006-11-03  Jackson Harper  <jackson@ximian.com>
12683
12684         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
12685         multiline textboxes anymore.  This method also determines the
12686         width/height of a textboxes canvas area.
12687         - Sorta a revert of the last patch.  For multiline just position
12688         the controls, then bail.  This way the scrollbar width won't be
12689         altered.
12690
12691 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
12692
12693         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
12694         it dont need.  Fixes #79537.
12695
12696 2006-11-02  Jackson Harper  <jackson@ximian.com>
12697
12698         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
12699         send the status after firing the DndOver event.
12700
12701 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12702
12703         * TrackBar.cs: Now orientation only switches height / width if
12704         the control's handle is created (Win32 does it like this). Also 
12705         fixed a typo in ToString() for a test to pass, changed the 
12706         exception thrown in set_LargeChange and set_SmallChange to 
12707         match Win32 behaviour, and added TrackBar tests to the unit 
12708         tests.
12709
12710 2006-11-02  Chris Toshok  <toshok@ximian.com>
12711
12712         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
12713         not _NET_WM_STATE_NO_TASKBAR.
12714
12715 2006-11-02  Jackson Harper  <jackson@ximian.com>
12716
12717         * TextControl.cs: Increment count by one, since in the update view
12718         count - 1 is used.
12719
12720 2006-11-02  Jackson Harper  <jackson@ximian.com>
12721
12722         * TextBoxBase.cs: Use client rectangle not bounds for checking if
12723         the mouse is in the client rectangle (duh).
12724
12725 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12726         
12727         * TrackBar.cs: Fixed trackbar jumping around when clicking
12728         on it - the trackbar was not detecting correctly at which
12729         side of the thumb the click was done. (fixes #79718)
12730
12731 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
12732
12733         * ListBox.cs: scroll visible area when change SelectedIndex to
12734         a non visible area.  Fixes #79481.
12735
12736 2006-11-01  Jackson Harper  <jackson@ximian.com>
12737
12738         * TextControl.cs: When replacing the selection move the selection
12739         start/end/anchor to the end of the new text.
12740
12741 2006-11-01  Jackson Harper  <jackson@ximian.com>
12742
12743         * XplatUIWin32.cs: When setting the parent change the controls
12744         visibility to it's visibility flag, not to it's old parents
12745         visibility (.Visible walks the parent chain).
12746
12747 2006-11-01  Chris Toshok  <toshok@ximian.com>
12748
12749         * XplatUIX11.cs: revert the #79790 fix, as the simple.
12750         XSetTransientForHint fix breaks paint .net's tool windows.  more
12751         work needed for that one.
12752
12753 2006-11-01  Chris Toshok  <toshok@ximian.com>
12754
12755         * ScrollBar.cs: throw ArgumentException instead of Exception in
12756         LargeChange/SmallChange setters.  fixes unit tests.
12757
12758 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12759
12760         * ContainerControl.cs: reverted rev.67183 (which was itself
12761         a reversion of rev.66853... eh).
12762         
12763         * Control.cs: Fixes Reflector hang by changing Focus() call
12764         to what it was before rev.66643 (calling Select() here sets 
12765         ActiveControl, which in some situations calls back Focus and 
12766         eventually does a stack overflow). Temp fix.    
12767         Changes to GetNextControl() to not look for children to select when
12768         parent cannot be selectable (so it looks for siblings instead)  
12769         
12770 2006-10-31  Mike Kestner  <mkestner@novell.com>
12771
12772         * CheckedListBox.cs : off by one error in returned index from
12773         ObjectCollection.Add.  Fixes #79758.
12774
12775 2006-10-31  Chris Toshok  <toshok@ximian.com>
12776
12777         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
12778         calls for the textbox/spinner, to keep from recursing to the point
12779         where we crash.  Fixes #79760.
12780
12781 2006-10-31  Chris Toshok  <toshok@ximian.com>
12782
12783         * ListControl.cs (set_SelectedValue): don't throw exceptions on
12784         null/"" value, just return.  matches ms's behavior and fixes some
12785         failing tests.
12786
12787 2006-10-31  Chris Toshok  <toshok@ximian.com>
12788
12789         * Control.cs (set_Capture): make a logic a little easier to
12790         follow.
12791
12792         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
12793         if it's being destroyed.  A necessary fix surely, but a bandaid
12794         also, to fix the stuck capture problem in bug #78413.
12795
12796 2006-10-31  Chris Toshok  <toshok@ximian.com>
12797
12798         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
12799         convention of clearing hwnd.ClientRect when we set the
12800         width/height (so it'll be recalculated by Hwnd).
12801
12802 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
12803
12804         * ContainerControl.cs: reversed Contains check from
12805         ActiveControl due to hanging problems. This fix
12806         partly regresses #79667 (button does not have
12807         initial focus), so this might be a symptom for 
12808         a larger parenting problem (set_ActiveControl
12809         is being called but the child control does
12810         not have the parent set yet?)   
12811         
12812 2006-10-31  Mike Kestner  <mkestner@novell.com>
12813
12814         * MenuAPI.cs : fix keynav when menu is click activated.
12815
12816 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
12817
12818         * ToolStrip*: Version 0.2.
12819
12820         * MenuStrip.cs: Version 0.1.
12821
12822         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
12823
12824 2006-10-30  Chris Toshok  <toshok@ximian.com>
12825
12826         [ fixes the oversized notify icon issue in bug #79745 ]
12827         
12828         * NotifyIcon.cs: scale the icon down to the size we're given by
12829         the XplatUI layer (this would be faster if we did it once instead
12830         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
12831         since it's never invoked.
12832
12833         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
12834         pixels high by default, so let's hardcode our systray icon to that
12835         size.  The SYSTEM_TRAY protocol should really have a way for
12836         client apps to query for the correct icon size.. but oh well.  A
12837         couple of patches to deal with the screwy client_window ==
12838         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
12839         instance, and also make sure we don't XSelectInput twice).
12840
12841 2006-10-30  Chris Toshok  <toshok@ximian.com>
12842
12843         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
12844         recreating forms.  Control recreation is the bane of my existence.
12845         Fix it in a way that keeps everyone happy.
12846
12847 2006-10-30  Chris Toshok  <toshok@ximian.com>
12848
12849         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
12850         just non-CHILD ones.  otherwise sometimes scrollbars end up with
12851         client_windows not being resized to the proper size (ReportBuilder
12852         shows this extremely well).
12853
12854 2006-10-30  Chris Toshok  <toshok@ximian.com>
12855
12856         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
12857         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
12858         showing up in the gnome taskbar.  Fixes bug #79790.
12859
12860 2006-10-30  Chris Toshok  <toshok@ximian.com>
12861
12862         * ApplicationContext.cs: guard against a NRE.
12863
12864         * Application.cs: null out the old MainForm for the context, so we
12865         don't try to use it again once it's disposed.  Fixes bug #79783.
12866
12867 2006-10-30  Chris Toshok  <toshok@ximian.com>
12868
12869         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
12870         BindingContext, set the data source directly, otherwise do the
12871         lazy approach - the actual ListManager will be created when we get
12872         a BindingContext. Fixes bug #79700.
12873
12874 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12875
12876         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
12877           XplatUIX11.cs: Remove old 2 parameter SetVisible.
12878
12879         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
12880
12881 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
12882
12883         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
12884         of SetVisible that allows a window to be shown, but not activated.
12885         This is needed on Windows for MenuStrip, and can probably be used
12886         with MainMenu and ComboBox to fix the focus stealing issues on
12887         Windows.
12888
12889         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
12890
12891 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
12892
12893         * PictureBox.cs: Fix the output of the ToString method.
12894
12895 2006-10-29  Chris Toshok  <toshok@ximian.com>
12896
12897         * Control.cs (get_TopLevelControl): fix bug #79781.
12898
12899 2006-10-29  Chris Toshok  <toshok@ximian.com>
12900
12901         * ListControl.cs (set_DataSource): throw Exception here, not
12902         ArgumentException, to match MS behavior.
12903
12904 2006-10-29  Chris Toshok  <toshok@ximian.com>
12905
12906         * Form.cs: remove the try-catch's around calls to GetWindowState.
12907         We can just check the return value.
12908
12909         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
12910         Instead return -1.
12911
12912         * XplatUI.cs: Add note about additional return value for
12913         GetWindowState.
12914
12915 2006-10-29  Chris Toshok  <toshok@ximian.com>
12916
12917         * Control.cs (CreateHandle): when we create our handle, we also
12918         create the handles of our child controls.  Fixes one of the
12919         Control unit tests (CH11).
12920
12921 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12922
12923         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
12924
12925 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
12926
12927         * ThemeClearlooks.cs: A little speedup.
12928
12929 2006-10-27  Chris Toshok  <toshok@ximian.com>
12930
12931         * Control.cs: implement Control.FromChildHandle in a way that
12932         matches the docs (and fixes the failed test.)
12933
12934 2006-10-27  Chris Toshok  <toshok@ximian.com>
12935
12936         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
12937         comments).
12938
12939         * DataGrid.cs: implement ResetForeColor such that the tests
12940         succeed.
12941         
12942 2006-10-27  Chris Toshok  <toshok@ximian.com>
12943
12944         * ToolBarButton.cs: setting text/tooltiptext to null results in it
12945         being set to "".  Fixes bug #79759.
12946
12947 2006-10-27  Jackson Harper  <jackson@ximian.com>
12948
12949         * TextControl.cs: We need to clear the entire selection area when
12950         setting the start, otherwise multiline selections are still
12951         visible.
12952
12953 2006-10-26  Chris Toshok  <toshok@ximian.com>
12954
12955         * PropertyGridView.cs: 
12956
12957         - ifdef all the code specific to the double
12958         buffer case, and provide some alternatives in the non-doublebuffer
12959         code, which makes heavy use of XplatUI.ScrollWindow to move things
12960         around without having to invalidate (and cause flicker).  There
12961         are still some drawing problems in the non-doublebuffered case, so
12962         DOUBLEBUFFER is defined by default.
12963
12964         - Fix the way dropdowns are handled.  now we explicitly watch for
12965         the events which might cause the dropdown to close, and break out
12966         of the nested event loop there.  This gets rid of all Capture
12967         code, at the expense of the Msg special casing.  Seems to work,
12968         though, and fixes bug #79743.
12969
12970 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
12971         * Control.cs: SetIsRecreating now recreates implicitly added
12972         child controls as well. Finally fixes #79629. The flag passed to 
12973         SetIsRecreating has also been removed since it wasn't used.
12974         
12975 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12976
12977         * PageSetupDialog.cs: Clean some code, fix some bits, 
12978         add some checks, and add a printer sub-dialog.
12979
12980 2006-10-26  Chris Toshok  <toshok@ximian.com>
12981
12982         * PropertyGrid.cs: make set_SelectedObject call
12983         set_SelectedObjects, and move the duplicate logic to the
12984         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
12985
12986         * PropertyGridView.cs: hide the textbox when we get a
12987         SelectedObjectsChanged event.
12988
12989         Fixes bug #79748.
12990
12991 2006-10-26  Chris Toshok  <toshok@ximian.com>
12992
12993         * PropertyGridView.cs: deal with the type converter not supporting
12994         GetStandardValues() or GetStandardValues() returning null, which
12995         is does in the default case.  Fixes #79742.
12996
12997 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
12998
12999         * CheckedListBox.cs: nunit no longer crashes when selecting 
13000         Project/Edit menu option
13001         
13002 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
13003
13004         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
13005         is no menu selected. fixes #79739
13006
13007 2006-10-25  Chris Toshok  <toshok@ximian.com>
13008
13009         * PropertyGridView.cs: factor out the splitter invalidation code
13010         into the SplitterPercent setter, and for kicks implement the
13011         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
13012         amount in either direction.
13013
13014 2006-10-25  Chris Toshok  <toshok@ximian.com>
13015
13016         * PropertyGridView.cs: do some cleanup of the brush used to draw
13017         text - read only fields should be grayed out.  not sure how to do
13018         this with the textbox, though.  but the textbox's should also be
13019         readonly now at least.  Also, hide/show the textbox when resizing
13020         the control.
13021         
13022         * CursorConverter.cs: use System.Reflection when getting the
13023         properties of Cursors, as TypeDescriptor.GetProperties isn't
13024         returning static properties.
13025
13026 2006-10-25  Chris Toshok  <toshok@ximian.com>
13027
13028         * PropertyGridView.cs: factor out the up/down handling, and reuse
13029         it for page up/down.  also add End/Home support.
13030
13031 2006-10-25  Chris Toshok  <toshok@ximian.com>
13032
13033         * PropertyGridView.cs:
13034
13035         - ensure the selected grid item is visible in the scrolled area,
13036         fixes bug #79572.
13037
13038         - fix Keys.Down handling when you're on the last item in the
13039         propertygrid.
13040
13041 2006-10-25  Mike Kestner  <mkestner@novell.com>
13042
13043         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
13044         clicks too.  Fixes #79725.
13045
13046 2006-10-24  Chris Toshok  <toshok@ximian.com>
13047
13048         * PropertyGrid.cs: use property.Converter instead of
13049         TypeDescriptor.GetConverter(property.PropertyType), so we catch
13050         TypeConverters declared on the property as well as on the
13051         PropertyType.  Fixes bug #79678.
13052
13053 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
13054
13055         * MimeIcon.cs, Mime.cs:
13056           Fallback to the default platform handler if no shared mime info
13057           stuff exists (fixes #79693).
13058
13059 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13060         * ContainerControl.cs: Incorrect contains check in ActiveControl 
13061         from previous fix (duh).
13062
13063 2006-10-20  Chris Toshok  <toshok@ximian.com>
13064
13065         * PropertyGridView.cs: the dropdown should be MIN(number of items
13066         in list, 15).  Fixes #79551.
13067
13068 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
13069         Fixes #79384, #79394, #79652, #79667
13070         * Application.cs: 
13071         
13072         - Modal windows are now destroyed in the proper order for windows
13073         
13074         * ContainerControl.cs:
13075         
13076         - ActiveControl setter has more conditions on when to return:
13077                 - if we're reselecting the active control, but it actually
13078                 didn't have focus (window hidden or some such), it runs
13079                 - if the active control being selected doesn't actually 
13080                 exist in the container, it returns
13081         
13082         * Form.cs
13083         
13084         - The ShowDialog now gets the current form as the owner when
13085         invoking without parameters, and correctly activates the owner 
13086         when returning
13087         
13088         * MessageBox.cs
13089         
13090         - MessageBox now catches the Escape key to exit
13091
13092 2006-10-20  Chris Toshok  <toshok@ximian.com>
13093
13094         * PropertyGridView.cs: fix a number of issues (bug #78565, and
13095         most of bug #79676):
13096
13097         - you can navigate around the property grid with the arrow keys.
13098
13099         - the dropdown is sized properly when the pg has a vertical
13100         scrollbar.
13101
13102         - fix the indentation for subentries, and properly select the
13103         entire label rect.
13104
13105         - fix the gray bar's drawing (only draw it to the last element,
13106         not for the height of the control.  Also make sure we draw that
13107         last horizontal grid line.
13108
13109         - use the same mechanism the datagrid uses wrt the editing textbox
13110         when scrolling/resizing/etc.  Namely, we hide it first, do the
13111         operation, then show it again (if it's still visible).
13112         
13113         - aggressively remove a lot of unnecessary refreshes (and also
13114         calls to Invalidate(). call more limited variants, and only redraw
13115         what we need.)
13116         
13117         * PropertyGrid.cs:
13118
13119         - when we're populating the merged collection, fill in the UI
13120         parent with either the passed in item, or the category item we
13121         create.
13122
13123         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
13124
13125         * GridItem.cs: drop some fully qualified names.
13126         
13127         * GridEntry.cs: add a "UIParent", which is basically the parent
13128         treenode.
13129
13130         * GridItemCollection.cs: add an IndexOf method.
13131
13132 2006-10-20  Mike Kestner  <mkestner@novell.com>
13133
13134         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
13135         a working win32 NC invalidation mechanism, we can't invalidate
13136         menus.  [Fixes #79705]
13137
13138 2006-10-20  Mike Kestner  <mkestner@novell.com>
13139
13140         * ListBox.cs : don't update the VScrollbar if the list is empty,
13141         just hide it.  [Fixes #79692]
13142
13143 2006-10-20  Jackson Harper  <jackson@ximian.com>
13144
13145         * RichTextBox.cs: Handle some special chars better, and don't skip
13146         the entire group when we encounter a special char that we don't
13147         handle correctly.
13148
13149 2006-10-18  Chris Toshok  <toshok@ximian.com>
13150
13151         * PropertyGridView.cs: address a number of issues from bug #79676,
13152         mostly of the cosmetic variety.
13153
13154         - The highlight rectangle for indented items not extends all the
13155         way to the left.
13156
13157         - Indented items aren't indented so much.
13158
13159         - the dropdown is properly sized width-wise if the pg has a
13160         vertical scrollbar.
13161
13162 2006-10-18  Chris Toshok  <toshok@ximian.com>
13163
13164         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
13165         systray stuff is rather convoluted to begin with.
13166
13167         systray icons are a single window for some reason (that I haven't
13168         figured out yet), and for them, client_window == whole_window.
13169         Given the way the tests are structured elsewhere to determine
13170         which paints are pending (client vs. nc), that situation will
13171         always yield PAINT, not NCPAINT.  So, if we have a pending
13172         nc_expose and no pending expose, remove the hwnd from the paint
13173         queue, and also set nc_expose_pending to false, to keep us from
13174         blocking further expose's adding the hwnd to the paint queue.
13175
13176         phew.  like i said, a rather convoluted change.  Fixes the
13177         notifyicon repaint issues in bug #79645.
13178
13179 2006-10-18  Chris Toshok  <toshok@ximian.com>
13180
13181         * Form.cs: when getting the backcolor of the form, don't get
13182         base.BackColor, as this allows parents to influence the background
13183         color.  This breaks mdi forms.  Instead, if the background_color
13184         is empty, return the default.
13185
13186 2006-10-18  Chris Toshok  <toshok@ximian.com>
13187
13188         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
13189         to being private instead of internal static.
13190
13191         * Control.cs: remove all the stupid ParentWaitingOnRecreation
13192         crap, it wasn't working for more deeply nested controls anyway,
13193         and we already have the is_recreating flag - use that instead.
13194         Before calling DestroyHandle in RecreateHandle, recurse through
13195         the control tree setting it to true.  this returns the recreate
13196         code to much of its original simplicity, while now guaranteeing we
13197         actually recreate everything we're supposed to.  This change gets
13198         fyireporting actually showing mdi children.
13199
13200 2006-10-17  Chris Toshok  <toshok@ximian.com>
13201
13202         * Form.cs: remove some debug spew, and collapse some duplicate
13203         code at the end of SetClientSizeCore.
13204
13205         * XplatUIX11.cs: 
13206         - add some more debug spew here too wrt Destroy handling.
13207         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
13208         in Control's handling of WM_DESTROY.
13209         - Remove the handling of zombie window DestroyNotifies from the
13210         event loop - we don't need it.  Now the only DestroyNotifies we
13211         actually handle are ones generated by X.
13212         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
13213         match gtk's (functioning) handling of this. This keep metacity
13214         from leaving droppings in the form of wm borders with no window
13215         contents all over the place.
13216
13217         * Control.cs:
13218         - add a bunch of debug spew wrt control recreation.
13219         - fix a bug where we weren't tracking Visible properly on
13220         recreated hwnds.
13221         - fixed the WM_PAINT double buffer handling to support re-entrant
13222         calls (yes, i know it's gross, but it's happening to us).
13223
13224 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13225         * ThemeWin32Classic.cs: changed drawing of selected days
13226         to make them look better.
13227
13228 2006-10-16  Chris Toshok  <toshok@ximian.com>
13229
13230         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
13231         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
13232
13233         * XplatUIX11.cs: move away from using hwnd.client_dc and
13234         hwnd.non_client_dc and on to a stack of dc's (and in window's
13235         case, PAINTSTRUCT's), so we can deal with nested Paint calls
13236         without puking or not disposing of Graphics objects.
13237
13238         * XplatUIOSX.cs: same.
13239
13240         * XplatUIWin32.cs: same.
13241
13242 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13243
13244         * FileDialog.cs: Don't call on_directory_changed inside
13245           OnSelectedIndexChanged (it changes the SelectedIndex too).
13246           Instead move it to OnSelectionChangeCommitted.
13247
13248 2006-10-13  Chris Toshok  <toshok@ximian.com>
13249
13250         * XplatUIX11.cs: more Destroy work.  the current code does the
13251         following things, in order:
13252
13253         1. Enumerates all handles of all controls at or below the one
13254         being destroyed, in pre-order.  As it is doing this, it marks the
13255         handles as zombie and clears all references to them.
13256         
13257         2. calls XDestroyWindow on the window passed in.
13258
13259         3. SendMessage's WM_DESTROY to all he handles in the accumulated
13260         list.
13261
13262 2006-10-13  Chris Toshok  <toshok@ximian.com>
13263
13264         * XplatUIX11.cs: set hwnd.zombie to true before calling
13265         SendMessage (WM_DESTROY).  this keeps us from marking the new
13266         window a zombie, and also keeps us from calling sendmessage at
13267         all.
13268
13269 2006-10-13  Jackson Harper  <jackson@ximian.com>
13270
13271         * TextControl.cs: Do not show the caret and selection at the same
13272         time.  Reduces ugliness by 35%.
13273
13274 2006-10-13  Chris Toshok  <toshok@ximian.com>
13275
13276         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
13277         zombie after we do the recursive call, so we actually do call
13278         SendMessage on the children controls.
13279         (GetMessage): if we find a pending paint event for a zombie hwnd,
13280         remove the hwnd from the paint queue, or else it will always be
13281         there (and we'll effectively loop infinitely)
13282
13283 2006-10-13  Mike Kestner  <mkestner@novell.com>
13284
13285         * MenuItem.cs : add Selected format under keynav too.
13286         Fixes #79528.
13287
13288 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
13289
13290         * PropertyGrid.cs: Fixed some NRE's and small difference between our
13291         implementation and that of MS.
13292
13293 2006-10-13  Chris Toshok  <toshok@ximian.com>
13294
13295         * Control.cs (OnInvalidated) only futz with the invalid_region if
13296         the control is double buffered.  this fixes the apparent hang in
13297         the ListView unit tests.  Someone needs to make the
13298         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
13299
13300 2006-10-13  Chris Toshok  <toshok@ximian.com>
13301
13302         * PropertyGridView.cs:
13303
13304         - do a little refactoring so that only one place calls
13305         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
13306         else call that.  Also make it Refresh, since there are redraw bugs
13307         otherwise (we should take a look at that...)
13308
13309         - do a little more refactoring work to share the body of code
13310         involved with the drop down.  it was duplicated in the code
13311         dealing with the listbox handling and in the code dealing with the
13312         UITypeEditors.
13313
13314         - add a Capture to the dropdown form's control once it's
13315         displayed, and add a MouseDown handler that checks to make sure
13316         the position is inside the control.  If it's not, close the
13317         dropdown.  This fixes #78190.
13318
13319         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
13320         if the value is different than the initial value.
13321         
13322 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
13323
13324         * Control.cs: see #78650
13325         - Fixed GetNextControl for several cases:
13326                 - Changed FindFlatForward to return 
13327                 correct sibling control when more than one
13328                 control has same TabIndex as the currently 
13329                 focused one.
13330                 - Changed FindFlatBackward to loop children
13331                 from last to first and apply same logic as in
13332                 FindFlatForward
13333                 - Changed FindControlForward to search for
13334                 children when control is not a container
13335                 but has children, or search for siblings if
13336                 control is a container...
13337                 - Changed FindControlBackward   to continue
13338                 searching for child controls when hitting 
13339                 Panel-like parents
13340                 
13341         - Fixed Focus method to update ActiveControl
13342         (FocusTest.FocusSetsActive failure)
13343         
13344         * TabControl.cs:
13345         - Focus rectangle now refreshes when gaining
13346         or losing focus
13347         - Removed grab for Tab key on IsInputKey that 
13348         was keeping tab navigation from working (#78650)
13349
13350 2006-10-13  Chris Toshok  <toshok@ximian.com>
13351
13352         * PropertyGridView.cs:
13353         - Rewrite SetPropertyValue to loop over SelectedGridItem's
13354         SelectedObjects.
13355
13356         - Deal with GridItem.Value == null a few places.
13357
13358         * PropertyGrid.cs: 
13359         - replace the PopulateGridItemCollection with a pair of methods
13360         which compute the intersection of all the properties in the
13361         SelectedObjects array.  Fixes #79615.
13362
13363         - Throw ArgumentException from set_SelectedObjects if there's a
13364         null in the array.
13365
13366         - Add GetTarget method which can be used to traverse up the
13367         GridItem.Parent chain.  It depends on the assumption that
13368         selected_objects for different GridEntries are always in the same
13369         order (a safe assumption).  Use this method and loop over all the
13370         selected objects in the entry when calling RemoveValueChanged and
13371         AddValueChanged.
13372         
13373         * GridEntry.cs: Make this handle multiple selected objects.
13374         .Value returns null if not all the selected objects share the same
13375         value.
13376
13377 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
13378         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
13379           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
13380           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
13381           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
13382           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
13383         add additional functionality.
13384
13385 2006-10-12  Mike Kestner  <mkestner@novell.com>
13386
13387         * ErrorProvider.cs : new ToolTipWindow ctor sig.
13388         * HelpProvider.cs : new ToolTipWindow ctor sig.
13389         * ToolTip.cs : remove ToolTip param from Window sig since it is
13390         not used.
13391         * ToolBar.cs : add tooltip support.  Fixes #79565.
13392
13393 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13394
13395         * ComboBox.cs: move the events in set_SelectedIndex to 
13396         after the call to HighlightIndex in order to avoid 
13397         possible recursion and subsequent problems with the call
13398         to HighlightIndex and include a range check in 
13399         set_HighlightIndex. Fixes #79588
13400         
13401 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13402
13403         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
13404         to ui thread's settings instead of sunday. 
13405         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
13406
13407 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
13408
13409         * DateTimePicker.cs
13410         * MonthCalendar.cs
13411         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
13412         and implement missing functionality (selecting different parts 
13413         of the date and edit them individually with the keyboard).
13414         
13415 2006-10-11  Chris Toshok  <toshok@ximian.com>
13416
13417         * Control.cs (OnInvalidated): fix NRE relating to last change.
13418
13419 2006-10-11  Chris Toshok  <toshok@ximian.com>
13420
13421         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
13422         atoms in _NET_WM_STATE here if the window is maximized.  We need
13423         to do this because we're *replacing* the existing _NET_WM_STATE
13424         property, so those atoms will be lost otherwise, and any further
13425         call to GetWindowState will return Normal for a window which is
13426         actually maximized.  Fixes #79338.
13427
13428 2006-10-11  Jackson Harper  <jackson@ximian.com>
13429
13430         * TextControl.cs: Special case for setting selection end to
13431         selection start, we basically kill the anchor.
13432         - some todo comments.
13433
13434 2006-10-11  Chris Toshok  <toshok@ximian.com>
13435
13436         * Control.cs: switch to using an "invalid_region" to track which
13437         parts of the image buffer need updating.  This is more code than
13438         the simple fix from r66532.  That version just attempted to always
13439         fill the entire buffer on redraw, which turns out to be
13440         inefficient when invalidating small rectangles.  This version
13441         simply adds the invalid rectangle to the invalid region.  When we
13442         get any WM_PAINT message we see if it can be filled using the
13443         image buffer, and if it can't (if the paint event's clip rectangle
13444         is visible in the invalid region) we first fill the image buffer.
13445         So, the image buffer is still a cache, we just fill it lazily.
13446
13447         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
13448         need it any longer.
13449
13450 2006-10-11  Chris Toshok  <toshok@ximian.com>
13451
13452         * XplatUIX11.cs (SetWindowPos): we need to update both position as
13453         well as size after calling XMoveResizeWindow.  This keeps us from
13454         ignoring future SetWindowPos calls.  Fixes the disappearing
13455         DateTimePicker in the ToolBarDockExample from bug #72499.
13456
13457 2006-10-11  Chris Toshok  <toshok@ximian.com>
13458
13459         * TextBoxBase.cs: reorder things a bit when it comes to
13460         resizing-causing-recalculation.  we were recalculating the
13461         document when our position was changed, which shouldn't happen.
13462         We only care about size changes.  Clear up some more redundant
13463         recalculation calls while I'm at it.  This makes the toolbar dock
13464         example snappy when you're just dragging toolbars around (since it
13465         causes a relayout whenever you move one.)
13466
13467 2006-10-11  Chris Toshok  <toshok@ximian.com>
13468
13469         * ToolBarButton.cs (get_Rectangle): this only returns
13470         Rectangle.Empty if Visible == false, or Parent == null.
13471         Parent.Visible doesn't matter.
13472
13473 2006-10-10  Chris Toshok  <toshok@ximian.com>
13474
13475         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
13476         by .net 1.1, so switch to an internal method instead.
13477
13478 2006-10-10  Chris Toshok  <toshok@ximian.com>
13479
13480         * Control.cs (WM_PAINT): when a control is double buffered we draw
13481         initially to the ImageBuffer and then copy from there.  But when a
13482         parent control which has child controls is double buffered, the
13483         initial drawing doesn't encompass the entire ClientRectangle of
13484         the parent control, so we end up with uninitialized bits (this is
13485         easily seen by dragging the top toolbar in
13486         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
13487         manually set the ClipRectangle of the paint_event (only the one we
13488         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
13489         of the nastiness in bug #72499.
13490
13491         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
13492         which we use in Control.cs's WM_PAINT handling.
13493
13494 2006-10-10  Jackson Harper  <jackson@ximian.com>
13495
13496         * TextBoxBase.cs: Finish off the autoscrolling stuff.
13497
13498 2006-10-10  Chris Toshok  <toshok@ximian.com>
13499
13500         * Cursor.cs: Apply a slightly different patch to the one suggested
13501         in #79609.
13502
13503 2006-10-10  Jackson Harper  <jackson@ximian.com>
13504
13505         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
13506         not the parent form.
13507         * TextControl.cs: use difference in old line count vs new count to
13508         calculate how many lines were added, this takes into account soft
13509         line breaks properly.
13510
13511 2006-10-10  Chris Toshok  <toshok@ximian.com>
13512
13513         * LinkLabel.cs: don't call MeasureCharacterRanges against a
13514         rectangle located at 0,0 and the size of the text.  Use
13515         ClientRectangle instead.  This fixes rendering of non-left aligned
13516         link labels.
13517
13518 2006-10-10  Jackson Harper  <jackson@ximian.com>
13519
13520         * TextBoxBase.cs: When we set the selection start position the
13521         caret.
13522         * TextControl.cs: Need to update the caret when we decrement it to
13523         zero.
13524         - Make sure that the selection_visible flag gets reset to false if
13525         the selection isn't visible.  Before this you could get it set to
13526         visible by changing the selection start, then changing the end to
13527         equal the start.
13528
13529 2006-10-09  Jackson Harper  <jackson@ximian.com>
13530
13531         * TreeView.cs: Don't update scrollbars when we aren't visible.
13532         * TreeNodeCollection.cs: Only need to update scrollbars if being
13533         added to an expanded visible node or the root node.
13534
13535 2006-10-09  Chris Toshok  <toshok@ximian.com>
13536
13537         * XplatUIX11.cs (SendMessage): fix NRE.
13538
13539 2006-10-09  Jackson Harper  <jackson@ximian.com>
13540
13541         * TextBoxBase.cs: Implement horizontal autoscrolling.
13542         * TextControl.cs: Add a movement types that allows moving forward
13543         and backwards without wrapping.
13544
13545 2006-10-09  Mike Kestner  <mkestner@novell.com>
13546
13547         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
13548         with focus "expansion" of labels.  Fixes #79532 and then some.
13549         * ThemeWin32Classic.cs : add LineLimit to ListView label format
13550         when wrapping.
13551
13552 2006-10-09  Jackson Harper  <jackson@ximian.com>
13553
13554         * TextBoxBase.cs: Set the default max values to MaxValue since
13555         we use the scrollbar for autoscrolling and the default value is
13556         100.  If we don't do this the caret won't keep up with typing
13557         after about 18 characters.
13558         * TextControl.cs: Make sure the selection is offset by the
13559         viewport x.  This fixes selection when using auto scrolling.
13560
13561 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
13562         
13563         * Form.cs: The active control should be selected after the 
13564         OnLoad so that any child control initialization that affects
13565         the selection is done. Fixes #79406
13566
13567 2006-10-06  Chris Toshok  <toshok@ximian.com>
13568
13569         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
13570         to have no evil effects.
13571
13572         - Stop selecting StructureNotifyMask on non-toplevel windows.
13573
13574           The only way children should be resized is by using the SWF api,
13575           and we already send WM_WINDOWPOSCHANGED messages in those cases.
13576           Toplevel windows can be interacted with via the window manager,
13577           and so we keep the input mask there.
13578
13579           The other event StructureNotifyMask gives us (that we care
13580           about) is DestroyNotify.  The code is already structured such
13581           that it assumes we won't be getting a DestroyNotify event for
13582           the window we pass to XDestroyWindow (which is what
13583           StructureNotifyMask is supposed to guarantee.)  So, that code
13584           shouldn't be affected by this either.
13585
13586         - Stop selecting VisibilityChangeMask altogether.
13587
13588           We weren't doing anything with the resulting events anyway.
13589         
13590         This vastly reduces the number of X requests and events we see
13591         when resizing/laying out a large ui.
13592
13593 2006-10-06  Chris Toshok  <toshok@ximian.com>
13594
13595         * ScrollableControl.cs (DisplayRectangle): we need to take into
13596         account the DockPadding regardless of whether or not auto_scroll
13597         == true.  rework this slightly to this effect, and fix bug #79606,
13598         and part of #72499 (you can now see the drag handles and drag
13599         toolbars around).
13600
13601 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
13602
13603         * ListViewItem.cs: Collections of selected and checked items are now
13604         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
13605         we mark the collection "dirty".
13606         * ListView.cs: Marked collections readonly. Modified UpdateSelection
13607         to only clear SelectedItems when a new item is selected and MultiSelect
13608         is enabled. CheckedItems and SelectedItems now subscribe to Changed
13609         event of ListViewItemCollection, and mark its list dirty whenever
13610         that event is fire. This allows us to return selected/checked items 
13611         in the same order as they are in the Items collection. This matches
13612         the MS behavior.
13613
13614 2006-10-06  Chris Toshok  <toshok@ximian.com>
13615
13616         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
13617         right mouse clicks.  Fixes bug #79593.
13618
13619 2006-10-06  Chris Toshok  <toshok@ximian.com>
13620
13621         * Splitter.cs: doh, fix splitters that don't want to cancel the
13622         movement when you drag them.  Also, impose the limits on the
13623         values we send to the SplitterMovingEvent.  Fixes #79598.
13624
13625 2006-10-06  Jackson Harper  <jackson@ximian.com>
13626
13627         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
13628         since we use this for auto scrolling also.
13629
13630 2006-10-05  Chris Toshok  <toshok@ximian.com>
13631
13632         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
13633         beginning to think that most datagrid column types don't need this
13634         method.  Fixes bug #79392.
13635
13636 2006-10-05  Chris Toshok  <toshok@ximian.com>
13637
13638         * DataGrid.cs: move back to a more lazy scheme for creating the
13639         CurrencyManager, so we aren't updating it every time you set
13640         either DataSource or DataMember.  Also, don't call
13641         RecreateDataGridRows if the currency manager hasn't changed.
13642
13643 2006-10-05  Chris Toshok  <toshok@ximian.com>
13644
13645         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
13646         emitted, SelectedIndex should already be updated.  Fixes bug
13647         #78929.
13648
13649 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
13650
13651         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
13652           ToolStripTextBox.cs: Initial commit.
13653         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
13654
13655 2006-10-05  Jackson Harper  <jackson@ximian.com>
13656
13657         * TabControl.cs: We need to invalidate the tab control area when
13658         new ones are added (duh).
13659
13660 2006-10-03  Chris Toshok  <toshok@ximian.com>
13661
13662         * Form.cs (ProcessDialogKey): if the focused control is in this
13663         form and is a button, call its PerformClick method here.  Fixes
13664         #79534.
13665
13666 2006-10-04  Jackson Harper  <jackson@ximian.com>
13667
13668         * TabPage.cs: Ignore setting of Visible, and add an internal
13669         method for setting the controls visibility.  TabPage's Visible
13670         property is a little strange on MS, this seems to make us
13671         compatible, and fixes cases where people set all the tab pages to
13672         visible.
13673         * TabControl.cs: Use the new internal setting on tab pages
13674         visibility.
13675
13676 2006-10-03  Mike Kestner  <mkestner@novell.com>
13677
13678         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
13679
13680 2006-10-03  Mike Kestner  <mkestner@novell.com>
13681
13682         * ListView.cs : use is_visible instead of Visible to check if 
13683         scrollbars should be placed/sized.  Also some max_wrap_width
13684         love for LargeIcon view.  [Fixes #79533]
13685
13686 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
13687
13688         * TextControl.cs :
13689           Make set_TextAlign() do actually update the align. Fixed #78403.
13690
13691 2006-10-03  Chris Toshok  <toshok@ximian.com>
13692
13693         * DataGrid.cs: fix a crash when switching datasources if the
13694         vertical scrollbar is at someplace other than Value = 0.  Also,
13695         reduce the number of recalculation passes we do in SetDataSource
13696         from 2 to 1.
13697
13698 2006-10-03  Jackson Harper  <jackson@ximian.com>
13699
13700         * TextBoxBase.cs: Move the if value the same bail check up, we
13701         don't want to empty the document if it is already empty, this
13702         seems to severly mess up the caret.  TODO: I should probably fix
13703         the empty statement to update teh caret somehow.
13704
13705 2006-10-03  Chris Toshok  <toshok@ximian.com>
13706
13707         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
13708         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
13709         reflection, an internal row type, properties on said type, etc.)
13710         will work with our datagrid.  Fixes #79531.
13711
13712 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
13713
13714         * FileDialog.cs: Don't crash if a path is not accessible
13715           (System.UnauthorizedAccessException). Fixes #79569.
13716         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
13717           a ':' too. Return unknown icon for those paths/files.
13718
13719 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
13720
13721         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
13722         GetContainerControl returns null.
13723
13724 2006-10-02  Chris Toshok  <toshok@ximian.com>
13725
13726         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
13727         call to XGetWindowAttributes instead of "handle".  fixes an X
13728         error using notifyicon after the NotifyIconWindow to Form base
13729         class switch.
13730
13731 2006-10-02  Chris Toshok  <toshok@ximian.com>
13732
13733         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
13734         server grab and looping we need to do to get down to the most
13735         deeply nested child window.
13736         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
13737         QueryPointer again after the WarpPointer so we can generate a
13738         proper (fake) MotionNotify event to be enqueued in the destination
13739         window's queue.
13740         (GetCursorPos): call QueryPointer.
13741
13742         Fixes #79556.
13743
13744 2006-10-02  Jackson Harper  <jackson@ximian.com>
13745
13746         * NotifyIcon.cs: Derive the notify icon from a form, so things
13747         like FindForm work on it.
13748         - Swallow the WM_CONTEXTMENU message, since that is generated on
13749         mouse down, and context menu is a mouse up kinda guy.  I believe
13750         the correct fix here is probably to make the notify icon entirely
13751         NC area, but this seems to work fine for anyone not manipulating
13752         WndProc.
13753
13754 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
13755
13756         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
13757           ToolStripItemCollection.cs, ToolStripLabel.cs,
13758           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
13759           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
13760           Initial implementation.
13761         * TextRenderer.cs: Provide padding to MeasureText.
13762
13763 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
13764
13765         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
13766         of ButtonBaseAccessibleObject. Fix bug #79552.
13767
13768 2006-10-02  Jackson Harper  <jackson@ximian.com>
13769
13770         * MdiWindowManager.cs: When maximizing use the containers client
13771         rect, not it's bounds, so nc area is accounted correctly.
13772         - Use the parent form's size for the menu position, since the
13773         client isn't always the full form size.
13774
13775 2006-10-01  Chris Toshok  <toshok@ximian.com>
13776
13777         * ScrollableControl.cs: make sure neither right_edge or
13778         bottom_edge are < 0, since they're used as LargeChange for the
13779         horiz/vert scrollbars respectively.  Fixes #79539.
13780
13781 2006-10-01  Chris Toshok  <toshok@ximian.com>
13782
13783         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
13784         the xplatuix11 code can cause us to destroy/recreate our handle.
13785
13786         * XplatUIX11.cs
13787         (SystrayAdd):
13788         - this code can be invoked many times for the same Hwnd.  Make
13789           sure we only destroy the client window once (the first time this
13790           method is called).  This fixes bug #79544.
13791         - Remove the call to the improperly bound XSync.  why we had two
13792           bindings to this, I will never know, but this call resulted in
13793           events being discarded from the queue(!).
13794         - correct a misunderstanding of _XEMBED_INFO - the second atom is
13795           not our current state but the state we wish to be in.  So, 0 if
13796           we don't want to be mapped.  Change it to 1.
13797         (SystrayRemove): The XEMBED spec makes mention of the fact that
13798         gtk doesn't support the reparent of client windows away from the
13799         embedder.  Looking at gtksocket-x11.c seems to agree with this.
13800         The only avenue we have for removing systray icons is to destroy
13801         them.  We don't want the handle to go away for good, though, so
13802         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
13803         #79545.
13804         
13805 2006-10-01  Chris Toshok  <toshok@ximian.com>
13806
13807         * Form.cs (WndProc): inline the native_enabled variable usage into
13808         the cases in which it's used.  Fixes #79536.
13809
13810 2006-09-29  Mike Kestner  <mkestner@novell.com>
13811
13812         * ListView.cs : toggle the selection state for ctrl clicks in 
13813         multiselect mode. [Fixes #79417]
13814
13815 2006-09-29  Mike Kestner  <mkestner@novell.com>
13816
13817         * ListView.cs : kill CanMultiSelect and refactor the selection
13818         code to support multiselection in the absence of mod keys. Steal
13819         arrow/home/end keys by overriding InternalPreProcessMessage to
13820         restore regressed keynav behavior.
13821         [Fixes #79416]
13822
13823 2006-09-29  Jackson Harper  <jackson@ximian.com>
13824
13825         * MdiClient.cs: Repaint the titlebars when the active window is
13826         changed.
13827
13828 2006-09-29  Chris Toshok  <toshok@ximian.com>
13829
13830         * Application.cs: when entering a runloop with a modal, make sure
13831         the hwnd is enabled.  Fixes #79480.
13832
13833 2006-09-29  Chris Toshok  <toshok@ximian.com>
13834
13835         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
13836         when ListManager.CanAddRows == false, bump us back one.
13837
13838         * DataGridColumnStyle.cs (ParentReadOnly): remove the
13839         listmanager.CanAddRows check.  This makes ArrayLists uneditable
13840         using a datagrid, which is not right.
13841         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
13842         is an IEditable, but call property_descriptor.SetValue regardless.
13843         fixes #79435.
13844
13845 2006-09-29  Chris Toshok  <toshok@ximian.com>
13846
13847         * DataGridBoolColumn.cs: we need to test equality in the face of
13848         possible null values (as is the case with the default NullValue).
13849         This patch keeps us from crashing in that case.
13850
13851 2006-09-29  Jackson Harper  <jackson@ximian.com>
13852
13853         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
13854         here, since it will get called for every node collection in the
13855         tree. This is now done in the treeview once the sorting is
13856         finished.
13857         * TreeView.cs: Recalculate the visible order, and update the
13858         scrollbars after sorting, set the top nope to the root so that the
13859         recalc actually works.
13860
13861 2006-09-29  Chris Toshok  <toshok@ximian.com>
13862
13863         * LinkLabel.cs: more handling of the default link collection in
13864         the face of LinkArea manipulation.  The default link collection
13865         contains 1 element (start=0,length=-1).  If the user sets LinkArea
13866         to anything and the links collection is the default, clear it.
13867         Then only add the link if its nonempty.  Fixes #79518.
13868
13869 2006-09-29  Chris Toshok  <toshok@ximian.com>
13870
13871         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
13872         piece correctly when we hit a '\n'.  Fixes #79517.
13873
13874 2006-09-29  Chris Toshok  <toshok@ximian.com>
13875
13876         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
13877         change the binding of gdk_init_check to take two IntPtr's, and
13878         pass IntPtr.Zero for both of them.  Fixes #79520.
13879
13880 2006-09-29  Mike Kestner  <mkestner@novell.com>
13881
13882         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
13883         [Fixes #78779]
13884
13885 2006-09-28  Jackson Harper  <jackson@ximian.com>
13886
13887         * XplatUIX11.cs: When translating NC messages make sure we go from
13888         whole window to screen, not client window to screen.
13889         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
13890         method doesn't exist
13891         - Skip over controls that aren't forms when arranging.
13892
13893 2006-09-28  Jackson Harper  <jackson@ximian.com>
13894
13895         * XplatUIWin32.cs: Clip the rect to the parent window.
13896         * XplatUIStructs.cs: Add clipping modes struct.
13897         * InternalWindowManager.cs: New private method that factors title
13898         bar heights in when calculating the pos of an NC mouse message.
13899         - Use SendMessage to force a paint when the form's size is changed
13900         instead of painting the decorations immediately.
13901         - Don't let the NC button click messages get to DefWndProc,
13902         because they will attempt to handle windowing themself, and this
13903         messes up z-order (it will put them in front of the scrollbars).
13904         * XplatUIX11.cs: Make sure that we don't reset window managers if
13905         we already have one (ie the window is an MDI window).
13906
13907 2006-09-28  Chris Toshok  <toshok@ximian.com>
13908
13909         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
13910         menu code really needs going over.
13911
13912 2006-09-27  Chris Toshok  <toshok@ximian.com>
13913
13914         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
13915         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
13916         window is maximizable.  So, we need to make sure that even if we
13917         clear the border/wm frame of those functions, they're still
13918         available (basically, we remove the decoration without removing
13919         the function).  Half the fix for #79338.
13920
13921 2006-09-27  Chris Toshok  <toshok@ximian.com>
13922
13923         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
13924         Fixes bug #79515.
13925
13926 2006-09-27  Chris Toshok  <toshok@ximian.com>
13927
13928         * Splitter.cs: reorder things a bit so that we don't actually
13929         draw/move the splitter until after calling OnSplitterMoving.  This
13930         lets users cancel/disallow the movement by explicitly setting
13931         event.SplitX/SplitY.  Fixes #79372.
13932
13933 2006-09-27  Jackson Harper  <jackson@ximian.com>
13934
13935         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
13936         because it is most likely on a window being destroyed, and that
13937         will give us an X11 error.
13938
13939 2006-09-27  Chris Toshok  <toshok@ximian.com>
13940
13941         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
13942         the dropdown button now toggles between showing and hiding the
13943         dropdown.  Also, get rid of dropdown_form_showing and just use
13944         dropdown_form.Visible.  We still don't do a grab, but I'll leave
13945         that part to someone who has handled Capture-fu before.
13946
13947 2006-09-27  Chris Toshok  <toshok@ximian.com>
13948
13949         * DataGrid.cs: return false if alt isn't pressed when '0' is
13950         pressed.  this keeps the '0' key from being swallowed, and fixes
13951         bug #79350.
13952
13953 2006-09-27  Chris Toshok  <toshok@ximian.com>
13954
13955         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
13956         Calling Refresh (in response to a scrollbar event) screws up the
13957         scrollbar painting.  Fixes bug #78923.
13958
13959 2006-09-27  Chris Toshok  <toshok@ximian.com>
13960
13961         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
13962         then insert into hashtable" blocks threadsafe.
13963
13964 2006-09-27  Chris Toshok  <toshok@ximian.com>
13965
13966         * MessageBox.cs (CreateParams): the styles should be |'ed with our
13967         baseclass's, since otherwise the
13968         ControlBox/MinimizeBox/MaximizeBox assignments above have no
13969         effect.  This gets the close button back in messageboxes.
13970
13971 2006-09-27  Chris Toshok  <toshok@ximian.com>
13972
13973         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
13974         flag, not just != 0.  this makes flags that are actually multiple
13975         bits (like WS_CAPTION) work.  fixes bug #79508.
13976
13977 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
13978
13979         * PageSetupDialog.cs: add support for getting and settings the 
13980         paper size, source and orientation.
13981
13982 2006-09-26  Chris Toshok  <toshok@ximian.com>
13983
13984         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
13985         and caption == "", we need to remove the resize handles as well as
13986         the title bar.
13987
13988         * Control.cs (set_Text): turns out that setting Text on a form
13989         should change the WM styles on the window, since if ControlBox ==
13990         false, the only way to get a window border is to have a non-""
13991         Text property.  check winforms/forms/text.cs for an example.  so,
13992         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
13993         update both window styles and title.  This fixes a lot of dialogs
13994         (including the preferences dialog in MonoCalendar.)
13995
13996 2006-09-26  Chris Toshok  <toshok@ximian.com>
13997
13998         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
13999         control isn't a Form), call Win32ShowWindow to hide the window,
14000         but don't update the control Visible property.  When we reparent
14001         back to a parent control, call SetVisible in order for the
14002         window's visibility to be reinstated.
14003
14004         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
14005         the FosterParent.
14006
14007         * Control.cs (ControlCollection.Remove): remove that value.Hide()
14008         call for good, since it breaks MonoCalendar (and other things I'm
14009         sure.) Also, set all_controls to null *after* the owner calls,
14010         which end up regenerating it.
14011         (ChangeParent): allow new_parent to be == null, passing
14012         IntPtr.Zero down to XplatUI.
14013
14014         this fixes #79294 the right way.
14015
14016 2006-09-26  Mike Kestner  <mkestner@novell.com>
14017
14018         * GridEntry.cs : internal SetParent method.
14019         * PropertyGrid.cs : attach to property changed on the proper
14020         target if we have a hierarchical grid with subobjects. Setup
14021         GridItem.Parent for hierarchical items.
14022         * PropertyGridView.cs : Set value on the correct target for
14023         hierarchical grids. [Fixes #78903]
14024
14025 2006-09-26  Chris Toshok  <toshok@ximian.com>
14026
14027         * Control.cs (ChildNeedsRecreating): this should return true if
14028         either we're being recreated and the child is in our list, or our
14029         parent is waiting for our recreation.
14030
14031 2006-09-26  Chris Toshok  <toshok@ximian.com>
14032
14033         * Control.cs (ControlCollection.Remove): reinstate the
14034         value.Hide() call as suggested in bug #79294.
14035
14036 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
14037
14038         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
14039         coordinates (versus a relative move).
14040
14041 2006-09-26  Chris Toshok  <toshok@ximian.com>
14042
14043         * Control.cs: rework child recreation a little bit.  It turns out
14044         that we race between the DestroyNotify the WM_DESTROY message.  If
14045         the parent gets its DestroyNotify before the child gets the
14046         WM_DESTROY message, the child ends up not recreating (since the
14047         parent finishes its recreation on DestroyNotify, and the child
14048         checks ParentIsRecreating.)
14049
14050         So, instead we store off a list of all the child controls which
14051         need to be recreated when the parent control starts to recreate
14052         itself.  Then, when child controls get their WM_DESTROY message we
14053         check to see if they're in the parent's pending recreation list,
14054         and if so, we recreate.  This removes all dependency on ordering
14055         from the code and fixes the initial MonoCalendar upgrade dialog.
14056         
14057 2006-09-26  Jackson Harper  <jackson@ximian.com>
14058
14059         * TextControl.cs: Use the Line to get the length of the line,
14060         since soft line breaks can change the end line.
14061
14062 2006-09-26  Chris Toshok  <toshok@ximian.com>
14063
14064         * Control.cs (ControlCollection.AddImplicit): don't add the
14065         control again if it's already in one of our lists.  This keeps us
14066         from adding controls over and over again for comboboxes when their
14067         handle gets recreated (as the combobox adds implicit controls in
14068         OnHandleCreated).  Fixes the X11 errors in bug #79480.
14069
14070 2006-09-26  Jackson Harper  <jackson@ximian.com>
14071
14072         * TextControl.cs: When deleting characters make sure that any
14073         orphaned zero lengthed tags get deleted.
14074         - Fix ToString for zero lengthed tags.
14075
14076 2006-09-25  Jackson Harper  <jackson@ximian.com>
14077
14078         * TextControl.cs: When getting a tag at the location there can be
14079         multiple tags at the same spot, these are 0-lengthed tags that
14080         appear when extra formatting has been stuck in a location.  We
14081         need to pull out the last of these 0 lengthed tags.
14082
14083 2006-09-25  Jackson Harper  <jackson@ximian.com>
14084
14085         * TextControl.cs: Fix print out in debug method.
14086         * TextBoxBase.cs: When text is set bail if we are setting to the
14087         previous value.
14088         
14089 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
14090
14091         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
14092           It is now possible to change the selected index in a FontXXXListBox
14093           with the up and down arrow keys from the FontXXXTextBoxes.
14094           Also, send the FontXXXTextBox mouse wheel event to the corresponding
14095           FontXXXListBoxes to match ms.
14096
14097 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
14098
14099         * SystemInformation.cs: Return a clone of the theme's MenuFont because
14100         anyone can dispose it, anytime. All other properties returns enums, 
14101         structs or basic types so they don't need such tricks.
14102
14103 2006-09-22  Jackson Harper  <jackson@ximian.com>
14104
14105         * XplatUI.cs:
14106         * XplatUIWin32.cs:
14107         * Clipboard.cs:
14108         * DataFormats.cs:
14109         * XplatUIOSX.cs:
14110         * XplatUIDriver.cs: Update interface to add a primary selection
14111         flag, so the driver can use the primary selection buffer if
14112         needed.
14113         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
14114
14115         * RichTextBox.cs: We need to supply the data object to paste now
14116         (so we can choose to supply CLIPBOARD or PRIMARY).
14117         * TextBoxBase.cs: Supply data object to paste (see above).
14118         - Middle click uses the primary selection data object.
14119         
14120 2006-09-21  Chris Toshok  <toshok@ximian.com>
14121
14122         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
14123         of SetWMStyles.  It's still a rat's nest and is largely
14124         order-dependent which I dislike immensely.  This also fixes the X
14125         button disappearing from toplevel forms.
14126
14127 2006-09-21  Mike Kestner <mkestner@novell.com>
14128
14129         * ListBox.cs: move Jordi's click/dblclick raising code to the
14130         mouse up handler.
14131
14132 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14133
14134         * ListBox.cs: Fixes 79450
14135
14136 2006-09-21  Mike Kestner <mkestner@novell.com>
14137
14138         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
14139         to deal with people updating the TreeNodeCollection after the tree
14140         is disposed.  "Fixes" 79330.
14141
14142 2006-09-20  Jackson Harper <jackson@ximian.com>
14143
14144         * TextControl.cs: Push the cursor record onto the undo stack
14145         before the delete action. This fixes 78651.
14146
14147 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
14148
14149         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
14150         CreateParams. Fixes 79329.
14151
14152 2006-09-19  Chris Toshok  <toshok@ximian.com>
14153
14154         * XplatUIX11.cs: a couple of blanket code massage passes to clean
14155         things up a bit.  First, get rid of the NetAtoms array (and the NA
14156         enum), and just embed the atoms as static fields.  Also, add a
14157         couple of functions (StyleSet and ExStyleSet) to clean up all the
14158         bitmask testing of styles.
14159
14160         * X11Structs.cs: remove the NA enum, not needed anymore.
14161         
14162 2006-09-19  Chris Toshok  <toshok@ximian.com>
14163
14164         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
14165         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
14166         added cleanup to get MessageBox titles appearing again, which were
14167         broken by my earlier fix for caption-less/ControlBox-less windows.
14168
14169 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
14170
14171         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
14172           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
14173           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
14174           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
14175           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
14176           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
14177           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
14178           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
14179           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
14180           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
14181           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
14182             Inital import.
14183         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
14184           ToolStripButton.cs: Stubs needed for above.
14185         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
14186
14187 2006-09-15  Chris Toshok  <toshok@ximian.com>
14188
14189         * XplatUIX11.cs:
14190         - make the MessageQueues hashtable Synchronized.
14191         
14192         - SendMessage: if the Hwnd is owned by a different thread, use the
14193         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
14194         thread.  Fixes bug #79201.
14195
14196 2006-09-15  Chris Toshok  <toshok@ximian.com>
14197
14198         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
14199         ControlBox == false, we disallow maximize/minimize/close.  If the
14200         form Caption is "" we also disallow move (and get rid of the Title
14201         decoration).  Unfortunately, regardless of how things are set,
14202         we're stuck with the Title and WM menu.
14203
14204 2006-09-15  Chris Toshok  <toshok@ximian.com>
14205
14206         * Application.cs: add locking around the static message_filters
14207         ArrayList, part of #79196.
14208
14209 2006-09-15  Chris Toshok  <toshok@ximian.com>
14210
14211         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
14212         Form.ControlBox == false, the window has no titlebar nor resize
14213         handles.  fixes bug #79368.
14214
14215 2006-09-15  Chris Toshok  <toshok@ximian.com>
14216
14217         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
14218         >= 0.  Fixes bug #79370.
14219
14220 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
14221         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
14222         * Control.cs:
14223             Add properties: LayoutEngine, Margin, DefaultMargin.
14224             Add method: GetPreferredSize.
14225             Move layout logic from PerformLayout to layout engines. 
14226
14227 2006-09-13  Chris Toshok  <toshok@ximian.com>
14228
14229         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
14230         fix for #79326 broke #78718, so this change addresses that.
14231
14232         - in SendWMDestroyMessages remove the call to
14233         CleanupCachedWindows, since we might be recreating the control and
14234         need to maintain the references to right Hwnd handles.  Also, set
14235         the zombie flag to true for each of the children in the hierarchy
14236         instead of calling hwnd.Dispose.  This will cause GetMessage to
14237         ignore all events for the window except for DestroyNotify.
14238
14239         - In GetMessage, ignore messages except for DestroyNotify for
14240         zombie hwnds.
14241         
14242         * Control.cs: revert the is_recreating fix from the last
14243         ChangeLog.  It's definitely "right", but it breaks switching from
14244         an MDI form to a non-MDI form.  Will need to revisit that.
14245
14246         * Hwnd.cs: add a zombie flag, which means "the
14247         client_window/whole_window handles are invalid, but we're waiting
14248         for the DestroyNotify event to come in for them".  Set the flag to
14249         false explicitly if setting WholeWindow/ClientWindow, and also
14250         when Disposing.
14251         
14252 2006-09-13  Chris Toshok  <toshok@ximian.com>
14253
14254         * XplatUIX11.cs: rework window destruction slightly.
14255
14256         - when destroying the windows associated with a control, we don't
14257         need 2 separate XDestroyWindow calls.  Just the one for the
14258         whole_window (or for client_window if whole_window is somehow
14259         IntPtr.Zero -- can this happen?) is enough.
14260
14261         - reworked SendWMDestroyMessages slightly, so we always dispose
14262         the child control hwnd's after sending the messages.
14263         
14264         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
14265         the two places it was used (one was even using hwnd.Handle and the
14266         other hwnd.client_window.  ugh), adding another call in
14267         SendWMDestroyMessages.  We need this new call because now the
14268         DestroyNotify events in the queue will be ignored for the child
14269         controls (as their hwnd's were disposed, and the window id's
14270         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
14271
14272         - this fixes bug #79326.
14273
14274 2006-09-13  Chris Toshok  <toshok@ximian.com>
14275
14276         * Control.cs: don't always set is_recreating to false at the end
14277         of RecreateHandle, since sometimes we're not done (and won't be
14278         until WndProc handles the WM_DESTROY message).  Also, set
14279         is_recreating to false in the WM_DESTROY handling code.  Part of
14280         the fix for bug #79326.
14281
14282 2006-09-13  Miguel de Icaza  <miguel@novell.com>
14283
14284         * X11DesktopColors.cs: Start the droppage of debugging messages.
14285
14286         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
14287
14288 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
14289
14290         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
14291
14292 2006-09-12  Chris Toshok  <toshok@ximian.com>
14293
14294         * DataGrid.cs (get_ListManager): if the list_manager is null, try
14295         to create it using SetDataSource.  Fixes bug #79151.
14296
14297 2006-09-11  Chris Toshok  <toshok@ximian.com>
14298
14299         * XEventQueue.cs: add a DispatchIdle property.
14300
14301         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
14302         either the queue is null, or the queue has DispatchIdle set to
14303         true.
14304         (DoEvents): set queue.DispatchIdle to false around the
14305         peek/translate/dispatch message loop in this method.  This keeps
14306         Application.Doevents from emitting idle events.  Part of the fix
14307         for #78823.
14308
14309 2006-09-11  Chris Toshok  <toshok@ximian.com>
14310
14311         * DataGrid.cs (set_DataSource): make this work for both the
14312         winforms/datagrid test and ReportBuilder.  It seems as though when
14313         we've created a ListManager (or maybe it's if we have a
14314         BindingContext?), when we set the DataSource it clears the
14315         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
14316         #79333.
14317
14318 2006-09-11  Chris Toshok  <toshok@ximian.com>
14319
14320         * XplatUIX11.cs: deal with queue being null, which happens in all
14321         the Clipboard functions.  Fixes one of the two problems mentioned
14322         in #78612.
14323
14324 2006-09-11  Chris Toshok  <toshok@ximian.com>
14325
14326         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
14327         button on various spots (including outside the menu) works closer
14328         to MS, and doesn't crash.  Fixes #79343.
14329
14330 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
14331
14332         * ListView.cs: Do not initialize item_sorter in init. To match MS,
14333         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
14334         and the internal comparer is set. When a new ListViewItemSorter is set,
14335         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
14336         was specified. No further processing is necessary if SortOrder is set
14337         to it's current value. If Sorting is modified to None, and View is
14338         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
14339         (either custom or our internal ItemComparer) to null, on 1.0 profile
14340         only set item_sorter to null if its our internal IComparer. If Sorting
14341         is modified to Ascending or Descending, then use our internal IComparer
14342         if none is set, and if the current IComparer is our internal one then:
14343         on 2.0 profile always replace it with one for new Sorting, and on 1.0
14344         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
14345         Enum.IsDefined to verify whether a valid View value is specified in
14346         its setter. Automatically sort listview items when listview is
14347         created. In Sort, do nothing if ListView is not yet created, or if
14348         no item_sorter is set (no Sorting was set, Sorting was explicitly set
14349         to None or ListViewItemSorter was set to null). Added Sort overload
14350         taking a bool to indicate whether the ListView should be redrawn when
14351         items are sorted (we use this in ListViewItemCollection to avoid double
14352         redraws). Modified our internal IComparer to take the sort order into
14353         account. In Add and AddRange methods of ListViewItemCollection, also
14354         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
14355         view), but use overload with noredraw option to avoid double redraw.
14356         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
14357         true when View is Tile, and do the same when attempting to set View to
14358         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
14359         for selected/checked indices, as it involves overhead when sorting is
14360         done while these collections are not used all that often. Instead
14361         we'll build the indices on demand. Modified IList implementation of
14362         CheckedIndexCollection to use public methods if object is int.
14363         Modified CheckedListViewItemCollection to hide checked items if
14364         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
14365         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
14366         IList implementation in SelectedIndexCollection to use public methods
14367         if object is int. Modified SelectedListViewItemCollection to hide
14368         selected items if listview is not yet created.
14369         * ListViewItem.cs: CheckedIndices list no longer needs to be
14370         maintained separately (see ListView changes). Also clone font, fixes
14371         test failure.
14372
14373 2006-09-11  Mike Kestner  <mkestner@novell.com>
14374
14375         * ComboBox.cs: if we are updating the contents of the currently
14376         selected index, refresh the control or the textbox selection.
14377         [Fixes #79066]
14378
14379 2006-09-11  Mike Kestner  <mkestner@novell.com>
14380
14381         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
14382         the 'specified' logic has been moved there.  This seems like a bug 
14383         in Control.cs, since our current SetBoundsCore completely ignores 
14384         the specified parameter.  Peter's commit seems to indicate that is 
14385         the way the MS control implementation works.  [Fixes #79325]
14386
14387 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
14388
14389         * XplatUI.cs: Set default_class_name to be composed
14390         of current domain id. This allows MWF to be loaded in multiple
14391         domains on Win32.
14392
14393 2006-09-09  Miguel de Icaza  <miguel@novell.com>
14394
14395         * X11Keyboard.cs: If we are unable to obtain the input method, do
14396         not call CreateXic to create the input context.   Should fix
14397         #78944/79276.
14398
14399 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
14400
14401         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
14402           Simplified gnome support by adding more pinvokes to get the
14403           icon for a file or mime type.
14404
14405 2006-09-08  Jackson Harper  <jackson@ximian.com>
14406
14407         * MenuAPI.cs: Deslect popup context menu items before closing the
14408         window, so that you don't see the previously selected item
14409         selected when you reopen the menu.
14410         * TextControl.cs: Update the cursor position even if we don't have
14411         focus.  This fixes typing in things like the ComboBox.  I'm not
14412         totally sure we should always set the visibility if we don't have
14413         focus, but couldn't find any corner cases where the cursor showed
14414         up when it shouldn't.
14415
14416 2006-09-08  Chris Toshok  <toshok@ximian.com>
14417
14418         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
14419         our arrays are length 256.  & 0xff before indexing.  Fixes the
14420         crash in bug #78077.
14421         
14422 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14423
14424         * ThemeWin32Classic.cs: 
14425         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
14426         is true. Handle that check box too.
14427
14428 2006-09-07  Chris Toshok  <toshok@ximian.com>
14429
14430         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
14431         79244.
14432
14433 2006-09-07  Chris Toshok  <toshok@ximian.com>
14434
14435         * Control.cs: in set_BackColor only do the work if
14436         background_color != value.
14437
14438         * XplatUIX11.cs: move the clearing of invalid areas (both client
14439         and nc) to the same block of code where we set (nc_)expose_pending
14440         to false.  That is, move it from PaintEventEnd to PaintEventStart,
14441         so things that cause invalidates from within OnPaint will trigger
14442         another call to OnPaint.  Fixes bug #79262.
14443
14444 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
14445
14446         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
14447         * FileDialog.cs: Fix typo
14448
14449 2006-09-07  Jackson Harper  <jackson@ximian.com>
14450
14451         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
14452         for tab pages if they have any.
14453
14454 2006-09-06  Mike Kestner  <mkestner@novell.com>
14455
14456         * Splitter.cs: use the "current" rect when finishing drag handle
14457         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
14458
14459 2006-09-06  Mike Kestner  <mkestner@novell.com>
14460
14461         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
14462         support offset splitters. [Fixes #79298]
14463
14464 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
14465
14466         * Mime.cs: Fixed a bug that could override the global mime type
14467           result.
14468
14469 2006-09-05  Jackson Harper  <jackson@ximian.com>
14470
14471         * TabControl.cs: Better calculation method for setting the slider
14472         pos. Prevents crashes on really wide tabs.
14473         - Draw Image on tab pages if an image list is used.
14474
14475 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14476
14477         * MonthCalendar.cs: When Font changes, the Size should be
14478         updated to fit the new font's space requirements.
14479
14480 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
14481
14482         * ListBox.cs: If the items are cleared with Items.Clear set
14483           top_index to 0.
14484
14485 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14486
14487         * MonthCalendar.cs: Handle arrow keys as input keys. Also
14488         fire DateChanged event instead of DateSelected event when
14489         the date was changed by keyboard interaction.
14490
14491 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14492
14493         * DateTimePicker.cs: Handle DateChanged for the associated
14494         month_calendar control, and set month_calendar.Font from 
14495         OnFontChanged method, as well as resize the height of the
14496         control when needed. Make PreferredHeight proportional.
14497
14498 2006-09-01  Chris Toshok  <toshok@ximian.com>
14499
14500         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
14501         properties.
14502
14503         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
14504
14505 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
14506
14507         * FileDialog.cs: Set ClientSize instead of window size, to allow space
14508           for decorations (Fixes #79219)
14509
14510 2006-09-01  Mike Kestner  <mkestner@novell.com>
14511
14512         * ComboBox.cs: first stab at sorting plus some selection handling
14513         fixes to bring us more in line with MS behavior.  Also switches back
14514         to index based selection.  Alternative patches for index-based 
14515         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
14516         and latency@gmx.de on bug 78848.  I assume they were similar to this
14517         code I've had simmering in my tree forever.
14518         [Fixes #78848]
14519
14520 2006-09-01  Chris Toshok  <toshok@ximian.com>
14521
14522         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
14523         when setting list position guard against ending up with a -1 index
14524         (the other part of the fix for #78812).  Should probably make sure
14525         we don't need the analogous fix in the ItemDeleted case.
14526
14527         * DataGrid.cs:
14528         - in SetDataSource, work around the fact that the way
14529         OnBindingContextChanged is invoked will cause us to re-enter this
14530         method.  I'll remove the hack once I investigate
14531         OnBindingContextChanged.
14532
14533         - fix the logic in set_DataSource and set_DataMember (basically
14534         what to do if the other of the two is null.)
14535         
14536         - in OnListManagerItemChanged, we need to take into account the
14537         edit row when deciding whether or not to call RecreateDataGridRows
14538         (part of the fix for #78812).
14539
14540 2006-09-01  Jackson Harper  <jackson@ximian.com>
14541
14542         * Splitter.cs: Don't do anything if there is no control to affect
14543         (prevents us from crashing in weird tet cases).
14544         * TreeView.cs: Bounding box for the mouse movement reverting
14545         focus/selection back to previously selected node.  This matches
14546         MS, and makes the tree a lot more useable.
14547         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
14548         use clipping so they are not drawn.  This fixes when the control
14549         is set to have a transparent background, or if it was over an
14550         image.
14551
14552 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
14553
14554         * MimeIcon.cs: Improved handling for reading default icons when
14555           using gnome (2.16 made it necessary). Check and read svg icons
14556           first, then 48x48 and then 32x32 icons.
14557
14558 2006-08-31  Chris Toshok  <toshok@ximian.com>
14559
14560         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
14561         visible.
14562
14563         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
14564         ProcessKeyPreview.  Fixes part of #77806.
14565
14566         * DataGrid.cs: big patch.
14567
14568         - revert the queueing up of DataSource/DataMember if inside
14569         BeginInit/EndInit calls.  That's not the way the datagrid achieves
14570         its delayed databinding.  Instead, call SetDataSource in
14571         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
14572         #78811.
14573
14574         - Also, it wasn't mentioned in #78811, but the test case exhibits
14575         behavior that was lacking in our datagrid implementation - Columns
14576         that have mapping names that don't exist in the datasource's
14577         properties aren't shown.  Yuck.  To fix this I added the bound
14578         field to the column style, and basically any calculation to figure
14579         out anything about columns uses a loop to find the bound columns.
14580         still need to investigate if I can cache an array of the bound
14581         columns or if the indices must be the same.
14582
14583         - When setting CurrentCell, we no longer abort if the cell being
14584         edited was in the add row.  This fixes the other part of #77806.
14585
14586         - The new code also fixes #78807.
14587         
14588         * ThemeWin32Classic.cs: perpetrate the same disgusting
14589         column.bound field hack, and only render bound fields.
14590
14591 2006-08-31  Chris Toshok  <toshok@ximian.com>
14592
14593         * DataGridColumnStyle.cs: add bound field.  this field is true if
14594         the datasource has a property corresponding to the mapping name.
14595
14596         * DataGridTableStyle.cs: set the bound field on the column styles
14597         depending on whether or not we have a column for that property.
14598
14599 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
14600
14601         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
14602           splitter control (fixes #79228)
14603
14604 2006-08-31  Chris Toshok  <toshok@ximian.com>
14605
14606         * DataGridColumnStyle.cs: we need to delay the assignment of
14607         property descriptor until the last possible moment due to the lazy
14608         databinding stuff in the datagrid.  Also, fix the exceptions
14609         thrown by CheckValidDataSource to match MS.
14610
14611 2006-08-31  Jackson Harper  <jackson@ximian.com>
14612
14613         * Form.cs: When activated select the active control, if there is
14614         no active control, we select the first control.
14615         * XplatUIX11.cs: If there is no focus control when we get a
14616         FocusIn event, find the toplevel form and activate it.  This
14617         occurs when you popup a window, it becomes the focus window, then
14618         you close that window, giving focus back to the main window.
14619
14620 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14621
14622         * MonthCalendar.cs: 
14623         * ThemeWin32Classic.cs: Cache Font in bold style, as well
14624         as StringFormat with Center alignments in MonthCalendar,
14625         instead of creating new ones when drawing the control. 
14626         Also, draw the month name in bold style.
14627
14628 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14629
14630         * Control.cs:
14631           - PerformLayout(): It would seem MS performs the fill even if the 
14632             control is not visible (part of #79218 fix)
14633           - ResetBackColor(): Use the setter to reset the color, to allow
14634             overriders to catch the change.
14635         * Form.cs:
14636           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
14637           - CreateHandle(): dito (part of $79218 fix)
14638           - Don't set an icon if we have a dialog
14639         * ScrollableControl.cs:
14640           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
14641           - ScrollIntoView(): No need to scroll if control is already visible
14642             (resolves fixme and fixes #79218)
14643
14644 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14645
14646         * MonthCalendar.cs: Change proportions in SingleMonthSize
14647         to match the aspect of the original control.
14648
14649 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
14650
14651         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
14652           get updated when they get maximized.
14653
14654 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14655
14656         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
14657
14658 2006-08-29  Chris Toshok  <toshok@ximian.com>
14659
14660         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
14661
14662 2006-08-29  Jackson Harper  <jackson@ximian.com>
14663
14664         * TreeView.cs: Need to track selected node and highlighted node,
14665         they aren't always the same thing, when the mouse is down on a
14666         node it is hilighted, but not selected yet.
14667         - Do the HideSelection stuff right
14668         - Need to focus on rbutton mouse down. And redraw selection when
14669         right click is mouse upped.
14670
14671 2006-08-29  Mike Kestner  <mkestner@novell.com>
14672
14673         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
14674         when SubItems.Count < Columns.Count.  [Fixes #79167]
14675
14676 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
14677
14678         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
14679
14680 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
14681
14682         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
14683           from X. Only send based on ConfigureNotify if we don't have the
14684           correct location in hwnd (if the window manager moved us)
14685
14686 2006-08-28  Mike Kestner  <mkestner@novell.com>
14687
14688         * ListView.cs: remove a TODO. 
14689         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
14690         [Fixes ListView part of #79166]
14691
14692 2006-08-28  Mike Kestner  <mkestner@novell.com>
14693
14694         * ListView.cs: move wheel handler to parent since it is focused
14695         instead of the item_control now.  [Fixes #79177]
14696
14697 2006-08-28  Mike Kestner  <mkestner@novell.com>
14698
14699         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
14700         when the control is focused. [Fixes #79171]
14701
14702 2006-08-28  Mike Kestner  <mkestner@novell.com>
14703
14704         * ListView.cs: size the item and header controls for empty and
14705         unscrollable views.
14706         * ThemeWin32Classic.cs: draw disabled backgrounds.
14707         [Fixes #79187]
14708
14709 2006-08-28  Chris Toshok  <toshok@ximian.com>
14710
14711         * Form.cs: remove unused "active_form" static field.
14712
14713         * Hwnd.cs: lock around accesses to static windows collection.
14714
14715         * Application.cs: lock threads in Exit ().
14716
14717 2006-08-28  Chris Toshok  <toshok@ximian.com>
14718
14719         * NativeWindow.cs: lock around accesses to window_collection.
14720         
14721 2006-08-28  Chris Toshok  <toshok@ximian.com>
14722
14723         * Control.cs: err, fix this the right way, by locking on controls
14724         when using it.  not by making it synchronized.
14725
14726 2006-08-28  Chris Toshok  <toshok@ximian.com>
14727
14728         * Control.cs: make the static "controls" field synchronized, as it
14729         gets updated from multiple threads.
14730
14731 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14732
14733         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
14734           Prevent other threads from exiting when calling thread sets quit state.
14735         * XEventQueue.cs: Added PostQuitState property
14736
14737 2006-08-27  Chris Toshok  <toshok@ximian.com>
14738
14739         * AsyncMethodData.cs: add a slot for the window handle.
14740
14741         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
14742         window (the destination control's window, not the foster window).
14743
14744         * Control.cs (BeginInvokeInternal): store the window's handle in
14745         the AsyncMethodData.
14746         
14747
14748 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
14749
14750         * XplatUIX11.cs:
14751           - PostQuitMessage: Removed resetting S.D display handle, we might have
14752             another loop started after calling PostQuitMessage (Fixes #79119)
14753           - Created destructor to reset S.D handle
14754
14755 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
14756
14757         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
14758
14759 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14760
14761         * TextControl.cs (Insert): Update the caret position even if we don't
14762           have a handle yet, just don't call the driver in that case.
14763         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
14764           to the end of the new selection text (Fixes #79184)
14765
14766 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14767
14768         * Form.cs (Activate): Only activate if the handle is created)
14769         * Control.c:
14770           - Mark window as invisible when it's disposed
14771           - Check if window handle is created when setting window visible, 
14772             instead of relying just on the is_created variable
14773           - Check if object is disposed when creating the control (Fixes #79155)
14774
14775 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14776
14777         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
14778           when allowing layout again. Otherwise we re-generate the anchoring 
14779           distance to the border again and actually alter what the user wanted
14780           This is ugly, it'd be better if we used DisplayRectangle instead of
14781           ClientRectangle for Control.UpdateDistances, but that causes us to
14782           have other problems (initial anchoring positons would be wrong)
14783           (Fixes #78835)
14784
14785 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14786
14787         * Control.cs:
14788           - The size and location setters shouldn't go directly to 
14789             SetBoundsCore, but to SetBounds, which triggers layout on the
14790             parent, then calls SetBoundsCore. (Related to fix for #78835)
14791           - SetBounds: Moved actual location update code into this function
14792             from SetBoundsCore, to match MS. Added call to PerformLayout if
14793             we have a parent (to trigger resizing of anchored parents if the 
14794             child size has changed (see testcase for #78835) 
14795         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
14796           new control code
14797         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
14798
14799 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14800
14801         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
14802           System.Drawing when a toplevel window gets closed; there might
14803           be other toplevel windows belonging to the same app (Fixes #78052)
14804
14805 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
14806
14807         * FileDialog.cs: After reading FileDialog settings from mwf_config
14808           use Desktop prefix only if a real folder doesn't exist anymore.
14809         * FontDialog.cs: Added char sets.
14810           It is now possible to select the font, size or style with the
14811           textboxes.
14812
14813 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
14814
14815         * PrintPreviewDialog.cs: Use assembly name constants.
14816
14817 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14818
14819         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
14820           scrollbar from whacking it's buttons)
14821
14822 2006-08-24  Chris Toshok  <toshok@ximian.com>
14823
14824         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
14825         in this patch (aggregating setting Left/Top/Width/Height to
14826         setting Bounds on the scrollbars), but the crux of the fix is in
14827         Recalculate, where we scroll by the remaining scroll_position if
14828         we're hiding a scrollbar.  The 2*$5 reward in the comment is
14829         serious.
14830
14831 2006-08-24  Jackson Harper  <jackson@ximian.com>
14832
14833         * MdiClient.cs:
14834         * MdiWindowManager.cs: If the form is made a non-mdi window we
14835         need to remove the form closed event so that closing forms works
14836         correctly.
14837
14838 2006-08-24  Jackson Harper  <jackson@ximian.com>
14839
14840         * Control.cs: Make IsRecreating internal so that the driver can
14841         check it
14842         - Temporarily remove the Hide when controls are removed, its
14843         making a whole bunch of things not work because visibility isn't
14844         getting reset elsewhere correctly
14845         * Form.cs: Need to do a full handle recreation when the mdi parent
14846         is set.
14847         * XplatUIX11.cs: If we are recreating handles don't dispose the
14848         HWNDs.  What was happening is the handles were being recreated in
14849         SendWMDestroyMessages, but then flow continued on in that method
14850         and destroyed the new handles.
14851
14852 2006-08-23  Jackson Harper  <jackson@ximian.com>
14853
14854         * Form.cs: MdiClient is always at the back of the bus
14855         * Control.cs: When the order of items in the collection is changed
14856         we need to reset the all_controls array
14857         - do the same sorta setup thats done when adding a control when a
14858         control is set on the collection.
14859
14860 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
14861
14862         * TextBoxBase.cs (get_Text): Return an empty array if our document
14863           is empty (fixes #79052)
14864
14865 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14866
14867         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
14868           on WM_SYSCHAR messages (fixes #79053)
14869
14870 2006-08-23  Chris Toshok  <toshok@ximian.com>
14871
14872         * DataGrid.cs: fix flickering when scrolling vertically.
14873
14874 2006-08-23  Chris Toshok  <toshok@ximian.com>
14875
14876         * DataGrid.cs (EndEdit): only invalidate the row header when we
14877         need to.
14878
14879 2006-08-23  Chris Toshok  <toshok@ximian.com>
14880
14881         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
14882         methods.  fixes the flicker when scrolling around.
14883
14884 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14885
14886         * FileDialog.cs: Making sure the control is created before we get a 
14887           chance to use it with BeginInvoke (Fixes #79096)
14888
14889 2006-08-23  Chris Toshok  <toshok@ximian.com>
14890
14891         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
14892         width to use when painting the rows.
14893
14894 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14895
14896         * TextBoxBase.cs:
14897           - Throw ArgumentException if a negative value is passed to SelectionLength
14898           - Update the selection end if start is moved. end needs to be always
14899             after start. (Fixes #79095)
14900           - Track selection length; MS keeps the selection length even if start
14901             is changed; reset on all other operations affection selection
14902
14903 2006-08-22  Jackson Harper  <jackson@ximian.com>
14904
14905         * TreeView.cs: Make sure both scrollbars get displayed and sized
14906         correctly when the other bar is visible.
14907         - Use the original clip rectangle for checking if the area between
14908         the two scrollbars is visible, not the viewport adjusted clipping
14909         rectangle.
14910
14911 2006-08-22  Jackson Harper  <jackson@ximian.com>
14912
14913         * Binding.cs: We don't use IsBinding because it requires the
14914         control to be created, which really shouldn't be necessary just to
14915         set a property on the control.
14916
14917 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14918
14919         * ComboBox.cs: Some CB.ObjectCollection methods must throw
14920         ArgumentNullReferenceException when the argument is null.
14921
14922 2006-08-21  Jackson Harper  <jackson@ximian.com>
14923
14924         * Timer.cs: Track the thread that the timer is started in (NOT
14925         CREATED), this way messages for it will only be triggered on its
14926         queue.
14927         * XEventQueue.cs: Track the timers here, this makes timers per
14928         thread, like MS.
14929         * XplatUIX11.cs: The timers are moved to the XEventQueue.
14930
14931 2006-08-19  Chris Toshok  <toshok@ximian.com>
14932
14933         * XplatUIX11.cs: after further communication with pdb, we get the
14934         best of both worlds.  SetZOrder working for un-Mapped windows, and
14935         no X errors for un-mapped windows.
14936
14937 2006-08-19  Chris Toshok  <toshok@ximian.com>
14938
14939         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
14940         as it was causing pdn toolbars to not have the correct stacking.
14941
14942 2006-08-18  Mike Kestner  <mkestner@novell.com> 
14943
14944         * ListView.cs : guard against negative ClientArea.Width in scrollbar
14945         calculation.  Not sure why control should ever be setting a negative
14946         width though.  Fixes #78931.
14947
14948 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
14949
14950         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
14951         null items in ObjectCollection class.
14952         * ListBox.cs.: Likewise.
14953
14954 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
14955
14956         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
14957           as the base method in ThemeWin32Classic should work fine.
14958           Fixed bug #78607.
14959
14960 2006-08-18  Jackson Harper  <jackson@ximian.com>
14961
14962         * Binding.cs: When validating if the value entered doesn't convert
14963         properly reset to the old value.
14964         * RadioButton.cs: Don't fire click when we get focus.
14965
14966 2006-08-18  Jackson Harper  <jackson@ximian.com>
14967
14968         * FileDialog.cs: Paint the selection on the directory combobox the
14969         same way as on MS. 
14970
14971 2006-08-17  Jackson Harper  <jackson@ximian.com>
14972
14973         * ErrorProvider.cs: Don't allow the error control to be selected.
14974         * Control.cs: Don't send the SetFocus messages, the control
14975         activation will do this, and if we do it blindly here validation
14976         does not work.
14977
14978 2006-08-17  Jackson Harper  <jackson@ximian.com>
14979
14980         * Control.cs:
14981         * ContainerControl.cs: Make validation events fire in the correct
14982         order.  TODO: For some reason the first validation event is not
14983         getting fired.
14984
14985 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14986
14987         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
14988
14989 2006-08-17  Mike Kestner  <mkestner@novell.com> 
14990
14991         * ComboBox.cs : implement scroll wheel support for popped-down
14992         state. Fixes #78945. 
14993
14994 2006-08-17  Jackson Harper  <jackson@ximian.com>
14995
14996         * TreeView.cs: Specify treeview actions (old patch that didn't get
14997         committed for some reason).
14998         - Don't let the mouse wheel scroll us too far.  Just want to make
14999         the bottom node visible, not scroll it all the ways to the top.
15000
15001 2006-08-17  Jackson Harper  <jackson@ximian.com>
15002
15003         * XplatUIX11.cs: Mouse wheel events go to the focused window.
15004
15005 2006-08-17  Mike Kestner  <mkestner@novell.com> 
15006
15007         * ComboBox.cs : don't do mouseover selection in simple mode.
15008
15009 2006-08-16  Jackson Harper  <jackson@ximian.com>
15010
15011         * Form.cs: Fire the closing events for all the mdi child windows
15012         when a window is closed.  If the cancel args are set to true, the
15013         main window still gets the event fired, but it doesn't not close.
15014         * MdiWindowManager.cs: Do this closing cleanup in a Closed
15015         handler, instead of when the button is clicked, so cancelling the
15016         close works correctly.
15017         * ComboBox.cs: Send the mouse down to the scrollbar.
15018
15019 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15020
15021         * ListBox.cs: When passing 'null' to SelectedItem,
15022         set SelectedIndex to -1, to unselect items. This is the
15023         observed behaviour in .Net.
15024
15025 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
15026
15027         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
15028           MS flags saying there won't be any. (fixes #78800)
15029         * Control.cs (HandleClick): Made virtual
15030
15031 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
15032
15033         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
15034           cultures. Fixed bug #78399.
15035
15036 2006-08-16  Jackson Harper  <jackson@ximian.com>
15037
15038         * Form.cs: Use the MdiClients MdiChildren property to access
15039         MdiChildren instead of creating the array from the child controls.
15040         * MdiClient.cs: Maintain a separate array of the mdi children, so
15041         that insertion order is maintained when the Z-order is changed.
15042
15043 2006-08-16  Mike Kestner  <mkestner@novell.com> 
15044
15045         * ListView.cs : add an ItemComparer and default to it for sorting.
15046         Fixes #79076, but sorting needs a complete overhaul to be compat with
15047         MS.
15048
15049 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15050
15051         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
15052
15053 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15054
15055         * Hwnd.cs (Mapped): Properly traverse the tree
15056
15057 2006-08-15  Chris Toshok  <toshok@ximian.com>
15058
15059         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
15060         pass manager.Current.GetType() to ParseData.  It has to be the
15061         property type.  So, hold off doing the ParseData until we're in
15062         SetPropertyValue where we know the type.  This fixes the crash in
15063         #78821 but the textbox is still empty.
15064
15065 2006-08-15  Chris Toshok  <toshok@ximian.com>
15066
15067         * DataGrid.cs:
15068         - when we're scrolling, only call Edit() again if the
15069         current cell is still unobscured. Fixes bug #78927.
15070         - when handling mousedown on a cell, ensure the cell is visible
15071         before calling Edit.
15072         - remove the properties from DataGridRow, and remove the
15073         DataGridParentRow class altogether.
15074         
15075
15076 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15077
15078         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
15079           fire OnTextChanged by ourselves. There's no point calling base,
15080           we don't set the base value anywhere else. Fixes #78773.
15081
15082 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15083
15084         * ListBox.cs: Call CollectionChanged when modifying
15085         an item from Items indexer, to update the actual items
15086         in the list box.
15087
15088 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15089
15090         * PrintDialog.cs: Small fixes for focus and a pair of checks,
15091         to match .Net behaviour.
15092
15093 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15094
15095         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
15096
15097 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
15098
15099         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
15100
15101 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
15102
15103         * MessageBox.cs: Prevent potential NRE exception.
15104         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
15105
15106 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15107
15108         * MessageBox.cs: Calculate the owner of a messagebox, also make
15109           it topmost. Fixes #78753
15110
15111 2006-08-14  Chris Toshok  <toshok@ximian.com>
15112
15113         * XplatUIX11.cs: A couple of fixes so that metacity will let us
15114         programmatically move windows.  first, set the PPosition hint as
15115         well as the USPosition hint.  Second include some code from pdb
15116         that sets the window type to NORMAL when we set the transient for
15117         hint.  This is because, in the absence of a window type, metacity
15118         thinks any window with TransientFor set is a dialog, and refuses
15119         to let us move it programmatically.  fascists.
15120
15121 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
15122
15123         * XplatUIX11.cs: When setting normal hints, take into consideration
15124           an different hints previously set so we don't delete them (fixes #78866)
15125
15126 2006-08-12  Chris Toshok  <toshok@ximian.com>
15127
15128         * ToolBarButton.cs: make Layout return a boolean, if something to
15129         do with the button's layout changed.
15130
15131         * ToolBar.cs:
15132         - add another parameter to Redraw, @force, which all existing
15133           calls set to true.
15134         - make the Layout function return a boolean which is true if the
15135           layout has actually changed.  Redraw now uses this (and @force)
15136           to determine when to invalidate.  At present the only place
15137           where @force can be false is the call from OnResize, when
15138           background_image == null.  So, resizing a toolbar when the
15139           layout doesn't change results in no drawing.
15140
15141 2006-08-12  Chris Toshok  <toshok@ximian.com>
15142
15143         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
15144         the VScrollBar and HScrollbar reversed.  oops.
15145
15146         * DataGrid.cs: fix the logic that assigns sizes to the implicit
15147         scrollbars.  we were assigning them twice (once in
15148         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
15149         therefore causing two scrollbar resizes (and redraws?) to happen
15150         per grid resize.
15151
15152 2006-08-12  Chris Toshok  <toshok@ximian.com>
15153
15154         * ToolBarButton.cs: redraw the entire button if the theme tells us
15155         to.
15156
15157         * Theme.cs: add ToolBarInvalidateEntireButton.
15158
15159         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
15160         buttons, just the border.
15161
15162         * ThemeNice.cs: redraw the entire toolbar button since we need to
15163         draw the highlight image.
15164
15165         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
15166         we need to redraw the entire button (not just the border).
15167
15168 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15169
15170         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
15171           for vertical bars. Fixes the mismatches shown by #78513
15172
15173 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
15174
15175         * FileDialog.cs: If a saved/remembered path doesn't exist
15176           anymore, fall back to "Desktop".
15177
15178 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
15179
15180         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
15181           parent. It's apparently legal to not have one
15182         * XplatUIX11.cs:
15183           - SetZOrder: Don't try to set Z-Order on an unmapped window
15184           - CreateWindow: 0,0 are legal coordinates for a window. don't move
15185             it unless the coordinates are negative
15186
15187 2006-08-10  Mike Kestner  <mkestner@novell.com>
15188
15189         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
15190         when setting to null per msdn docs.  Fixes #78854.
15191
15192 2006-08-10  Chris Toshok  <toshok@ximian.com>
15193
15194         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
15195         flickering by setting a clip rectangle on the Graphics when we
15196         need to redraw just a particular menuitem.  Also, rename "OnClick"
15197         to "OnMouseDown" to reflect what it actually is.
15198         
15199         * Form.cs: track the OnMouseDown change.
15200
15201 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
15202
15203         * CommonDialog.cs: Properly inherit the CreateParams from the form
15204           and only change what we need. Fixes #78865
15205
15206 2006-08-10  Chris Toshok  <toshok@ximian.com>
15207
15208         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
15209         flickering in flat mode (and most of the flickering in general) by
15210         only invalidating the button border (and not the entire rectangle)
15211         when the state changes.  A couple of cases still flicker:
15212         ToggleButtons, and the dropdown arrow case when the user mouse
15213         ups.
15214
15215 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
15216
15217         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
15218           for german keyboards. Numlock state shouldn't affect the behaviour
15219           of the Del key. Fixes bug #78291.
15220
15221 2006-08-10  Chris Toshok  <toshok@ximian.com>
15222
15223         * ListControl.cs: remove the items.Clear line from BindDataItems,
15224         as this is the first thing done by both subclasses in their
15225         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
15226         passed -1, refresh the list.  This gets databinding working when
15227         the datasource is set on the list before the datasource is
15228         populated (as in wf-apps/ReportBuilder.)
15229
15230         * ComboBox.cs: remove the argument to BindDataItems.  This call
15231         should really go away, and be initiated by the ListControl code.
15232
15233         * ListBox.cs: same.
15234
15235 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15236
15237         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
15238           if no data is in the document when the control is displayed
15239
15240 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
15241
15242         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
15243           yes (fixes #78806)
15244         * TextControl.cs: 
15245           - PositionCaret: Allow positioning of caret but don't call methods 
15246             requiring a handle if the window isn't created yet
15247           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
15248           - owner_HandleCreated: Don't position the caret, just update it's 
15249             location. User might have already set a different position
15250
15251 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
15252
15253         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
15254           windows. Screws up the returned coordinates for child windows. 
15255           Fixes #78825. I'm hoping this doesn't break something, since the
15256           code was explicitly put in 8 months ago, but no bug was attached.
15257           Menus still seem to work properly.
15258
15259 2006-08-08  Chris Toshok  <toshok@ximian.com>
15260
15261         * DataGrid.cs: make BeginInit/EndInit actually do what they're
15262         supposed to do - delay data binding until the EndInit call.  Also,
15263         make the table style collection's CollectionChangeAction.Refresh
15264         work properly.
15265
15266         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
15267         (with action = Refresh) when a consituent table's MappingName is
15268         changed.
15269
15270 2006-08-08  Chris Toshok  <toshok@ximian.com>
15271
15272         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
15273         Invalidate, since changing the text can change the size of the all
15274         toolbar buttons.
15275
15276 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15277
15278         * Form.cs (AddOwnedForm): Still need to add the form to our listif
15279           we don't have it yet
15280
15281 2006-08-08  Chris Toshok  <toshok@ximian.com>
15282
15283         * PrintControllerWithStatusDialog.cs: don't .Close() the status
15284         dialog, as this causes X errors later on, since we actually
15285         destroy the window.  Instead, .Hide() it.
15286
15287 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
15288
15289         * ComboBox.cs: Added focus reflection for popup window
15290         * XplatUIX11.cs: 
15291           - Removed transient setting for non-app windows for now, not sure it
15292             was needed
15293           - Fixed logic checking if we have captions when deciding 
15294             override_redirect, WS_CAPTION is two bits and a 0 check was not
15295             sufficient
15296           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
15297             complicated
15298         * Form.cs: 
15299           - AddOwnedForm: Don't just add the form to the list, call the property
15300             to ensure the driver is informed about the ownership as well
15301           - CreateHandle: Set the TopMost status in the driver if we have an owner
15302         * XplatUI.cs: Fixed debug statement
15303
15304 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
15305         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15306           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
15307           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
15308           TrackBarRenderer.cs: Make constructor private.
15309         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
15310         * ProfessionalColorTable.cs: Make properties virtual.
15311
15312 2006-08-06  Duncan Mak  <duncan@novell.com>
15313
15314         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
15315         is not changing.
15316
15317 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15318         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
15319           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
15320           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
15321           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
15322           Initial import of new 2.0 classes.
15323
15324 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15325         * Application.cs: Add 2.0 VisualStyles properties.
15326
15327 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
15328         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15329           XplatUIX11.cs: Create property to allow access to existing private
15330           variable "themes_enabled"
15331
15332 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15333
15334         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
15335         file size, as otherwise our class libraries fail using windows. Fixes
15336         bug #78759.
15337
15338 2006-08-04  Jackson Harper  <jackson@ximian.com>
15339
15340         * Form.cs:
15341         * XplatUIX11.cs: Move the toolwindow window manager creation into
15342         the X11 driver, this way on win32 we can let windows create/handle
15343         the toolwindows.
15344
15345 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15346
15347         * PrintDialog.cs: Remove some redundant checks, add some others,
15348         clean some code, and move the focus to the text boxes when the
15349         values are incorrect.
15350
15351 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
15352
15353         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
15354
15355 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15356
15357         * NumericUpDown.cs: Setting the Minimum and Maximum is now
15358           handled correctly. Fixes bug #79001.
15359
15360 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15361
15362         * PrintDialog.cs: The "Copies" numeric up down must have
15363         set the Minimum property to 1; only if the value is bigger
15364         than 1, activate "Collate" check box. This is the behaviour of .Net.
15365         Also modify the Document elements only if it is not null.
15366
15367 2006-08-03  Jackson Harper  <jackson@ximian.com>
15368
15369         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
15370         length. (We have a larger array then actual node count).
15371                 
15372 2006-08-03  Jackson Harper  <jackson@ximian.com>
15373
15374         * ComboBox.cs: Don't show selection by default.
15375         - The SelectAll isn't needed here, since the focus code should do
15376         that
15377         - DDL style lists to manual selection drawing, so when they
15378         get/lose focus they have to invalidate.
15379
15380 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
15381
15382         * TextBoxBase.cs: Don't always show all selections by default.
15383
15384 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
15385         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
15386           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
15387           Fixed various typos.
15388
15389 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
15390
15391         * Control.cs: Removing the controls in a ControlCollection with
15392           Clear now hides the controls as expected. Fixes bug #78804. 
15393
15394 2006-08-03  Jackson Harper  <jackson@ximian.com>
15395
15396         * Control.cs: Revert previous focus patch, it breaks reflector.
15397
15398 2006-08-03  Jackson Harper  <jackson@ximian.com>
15399
15400         * ComboBox.cs: Cleanup selection and focus with the combobox.
15401         This also eliminates some duplicated keyboard code, since now
15402         everything is handled by the main class.
15403         - Make list selection work on mouse up instead of down, to match
15404         MS.
15405
15406 2006-08-02  Jackson Harper  <jackson@ximian.com>
15407
15408         * Control.cs: Setting focus needs to go through the whole
15409         selection mechanism.
15410
15411 2006-08-02  Chris Toshok  <toshok@ximian.com>
15412
15413         * PrintPreviewDialog.cs: change MinimumSize to use
15414         base.MinimumSize so it works.
15415
15416 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
15417
15418         * TextControl.cs:
15419           - UpdateCaret: Added sanity check in case caret isn't defined yet
15420           - Line.Delete: Now updating selection and caret markers if we're
15421             transfering a node (Properly fixes #78323)
15422           - SetSelectionEnd: Added sanity check
15423         * TextBoxBase.cs: Removed broken attempt to fix #78323
15424
15425 2006-08-01  Chris Toshok  <toshok@ximian.com>
15426
15427         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
15428         Close() call is handled in Form, not here.
15429
15430 2006-08-01  Chris Toshok  <toshok@ximian.com>
15431
15432         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
15433         layout/rendering.
15434
15435         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
15436         for sizes < 100% zoom.  The code now aggressively attempts to keep
15437         from calling document.Print (), and tries not to use the scaling
15438         g.DrawImage whenever possible (it still does if you scale to >
15439         100%, since usually that involves huge images).
15440
15441         * PrintPreviewControl.cs: hook up the close button.
15442
15443 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
15444         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
15445           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
15446           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
15447           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
15448           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
15449           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
15450           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
15451           Removed [Serializable] for 2.0 Event Handlers.
15452
15453 2006-07-31  Jackson Harper  <jackson@ximian.com>
15454
15455         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
15456         * TextControl.cs: Uncomment out the body of this method.
15457
15458 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
15459
15460         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
15461           standard cursors.
15462
15463 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15464
15465         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
15466           that embed TextBox and need selections visible even if textbox is not
15467           focused to enforce that behaviour.
15468         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
15469           selection drawing
15470
15471 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15472
15473         * TextControl.cs:
15474           - Added new SetSelectionStart/SetSelectionEnd overloads
15475           - Fixed viewport width assignment to be accurate
15476           - Adjusted alignment line shift calculations to allow cursor on right
15477             aligned lines to be always visible at the right border (like MS)
15478         * TextBoxBase.cs:
15479           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
15480           - TextBoxBase_SizeChanged: recalculating canvas on size changes
15481           - CalculateScrollBars: Use ViewPort size instead of window size, to
15482             properly consider space occupied by the border and scrollbars 
15483             (Fixes #78661)
15484           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
15485             calculations; no longer leaves artifacts
15486           - CaretMoved: Adjusted window scrolling to match MS and fixed several
15487             calculation bugs (Still missing right/center align calculations)
15488
15489 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
15490
15491         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
15492           use of both scroll rect and clip rect, as they do the same.
15493
15494 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
15495
15496         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
15497           in the event handler (fixes #78912)
15498
15499 2006-07-31  Chris Toshok  <toshok@ximian.com>
15500
15501         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
15502         grid.ListManager.Count, since grid.ListManager might be null.
15503         This of course begs the question "why are we drawing rows for a
15504         grid with no list manager (and therefor no rows)?"  Fixes the
15505         crash in bug #78929.
15506
15507 2006-07-31  Chris Toshok  <toshok@ximian.com>
15508
15509         * RelatedPropertyManager.cs: Don't always chain up to the parent
15510         ctor.  instead, call SetDataSource if the parent's position is !=
15511         -1.  Fixes the crash in #78822.
15512
15513 2006-07-31  Chris Toshok  <toshok@ximian.com>
15514
15515         * DataGrid.cs (get_ListManager): use field instead of property
15516         accessors for datasource and datamember.
15517         (RowsCount): make internal again.
15518         (OnMouseDown): end edits before resizing columns/rows.
15519         (OnMouseUp): restart edits after resizing columns/rows.
15520
15521 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
15522
15523         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
15524           This fixes the situation where the last set cursor is displayed
15525           whenever the mouse is over scrollbars.
15526
15527 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15528
15529         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
15530         Document properties, as well as initial values.
15531
15532 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
15533
15534         * XplatUIWin32.cs (SetBorderStyle): Setting both border
15535           and ClientEdge results in a 3-pixel border, which is
15536           wrong.
15537
15538 2006-07-28  Jackson Harper  <jackson@ximian.com>
15539
15540         * TreeNodeCollection.cs: Fix the clear method.
15541         - Fix the Shrink also
15542
15543 2006-07-27  Jackson Harper  <jackson@ximian.com>
15544
15545         * TreeView.cs: Make sure the visible order is computed when we
15546         attempt to size the scrollbars (for trees that mess with the
15547         scrolling when they shouldn't.
15548         - Make sure to give the scrollbars valid values.
15549
15550 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15551
15552         * XplatUIX11.cs: Move motion compression code to where it
15553           has less performance impact
15554
15555 2006-07-26  Jackson Harper  <jackson@ximian.com>
15556
15557         * UpDownBase.cs: When the control is selected make the child
15558         controls non selectable, so that a click on them won't do a
15559         focus/unfocus cycle.
15560         - Don't give focus to the text box when the spinner is selected.
15561         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
15562
15563 2006-07-26  Chris Toshok  <toshok@ximian.com>
15564
15565         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
15566         satisfied with this solution.  If the bitmaps are small, we should
15567         just cache them in the PrintPreviewDialog and draw them here.
15568         Also, the layout is broken for the 2-up and 3-up cases.
15569
15570         * Theme.cs: add PrintPReviewControlPaint.
15571
15572         * PrintPreviewDialog.cs: first pass implementation.
15573
15574         * PrintPreviewControl.cs: first pass implementation.  No
15575         scrollbars yet.
15576
15577         * PrintDialog.cs: only validate fields if that particular portion
15578         of the UI is enabled.  Also, set the document's controller to a
15579         PrintControllerWithStatusDialog wrapping the document's print
15580         controller.
15581
15582         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
15583         bring up a SaveFileDialog (i hope we don't want to match the
15584         behavior of the crappy windows file entry) and set the
15585         PrinterSettings.PrintFileName accordingly.
15586
15587 2006-07-26  Jackson Harper  <jackson@ximian.com>
15588
15589         * ContainerControl.cs: Add a field that disables auto selecting
15590         the next control in a container when the container is activated.
15591         * UpDownBase.cs: Don't select the text box when the up down is
15592         selected.
15593
15594 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
15595
15596         * XEventQueue.cs: Added methods for peeking (used for compression
15597           of successive events)
15598         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
15599           mouse move events (fixes #78732)
15600
15601 2006-07-25  Jackson Harper  <jackson@ximian.com>
15602
15603         * UpDownBase.cs: Use an internal class for the textbox so that we
15604         can control focus.  the updown control should always have focus,
15605         if either the text area or the buttons are clicked.
15606         - Send the key messages to the textbox, since it never actually
15607         has focus
15608         - Activate and decativate the textbox caret.
15609
15610 2006-07-24  Jackson Harper  <jackson@ximian.com>
15611
15612         * Control.cs: Use the directed select when selecting a control,
15613         this way the container controls override will get called and the
15614         whole ActiveControl chain will get triggered.  TODO: probably need
15615         to make sure this gets done everywhere instead of the old
15616         Select(Control).
15617         * ContainerControl.cs: Implement the directed Select method to
15618         find and activate the correct child control.    
15619         
15620 2006-07-22  Mike Kestner  <mkestner@novell.com>
15621
15622         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
15623         menu handling code so that clicks without a grab work too.
15624         [Fixes #78914]
15625
15626 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
15627
15628         * FileDialog.cs: Enable the BackButton when dirstack has one element.
15629           Added some small optimizations.
15630
15631 2006-07-21  Matt Hargett  <matt@use.net>
15632
15633         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
15634
15635 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
15636
15637         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
15638           tests pass and match MS in some strange border cases.
15639
15640 2006-07-21  Chris Toshok  <toshok@ximian.com>
15641
15642         * ThemeWin32Classic.cs: handle drawing of the relation links and
15643         parent row buttons.
15644
15645         * Theme.cs: change args to DataGridPaintParentRow.
15646
15647         * DataGrid.cs: Don't use controls for the relation links and
15648         parent buttons, so we have to handle all their interactions in
15649         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
15650         when we're navigating through child tables, so we can reinstate
15651         selection, expanded state, current cell, etc.
15652
15653 2006-07-20  Chris Toshok  <toshok@ximian.com>
15654
15655         * ToolBar.cs: When we redraw a button, for whatever reason,
15656         there's no reason to redraw the entire toolbar.  Also, don't call
15657         Control.Refresh from within Redraw, as it's much heavier than
15658         Invalidate (which is really what we want).
15659
15660 2006-07-20  Chris Toshok  <toshok@ximian.com>
15661
15662         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
15663         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
15664         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
15665         traces from within a debug IBindingList datasource
15666         (in mono/winforms/datagrid) for *days*, I've finally gotten things
15667         to work in a similar fashion.
15668
15669 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15670
15671         * ListBox.cs: Don't call Sort () when setting 
15672         the Sorted property to false (avoid an unnecessary sort).
15673
15674 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15675
15676         * ListControl.cs: DataSource should throw an ArgumentException
15677         instead of a normal exception when the argument is not of the 
15678         correct type.
15679
15680 2006-07-20  Mike Kestner  <mkestner@novell.com>
15681
15682         * Control.cs: add InternalPreProcessMessage to allow us to steal
15683         key events before MWF gets its paws on them.  Adapted from a
15684         suggestion by eno.
15685         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
15686         up/down/left/right navigation. Override the new internal control
15687         method to steal the events since they never make it to WndProc.
15688         * ToolBarButton.cs: don't worry about pushed when setting hilight
15689         since the drawing code prefers pushed to hilight. Invalidate on 
15690         Hilight changes. Fixes #78547 and #78525.
15691
15692 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15693
15694         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
15695           the canvas size. Fixes #78868
15696
15697 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
15698
15699         * Splitter.cs: Track requested split position until first layout
15700           is performed. Fixes #78871
15701
15702 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
15703
15704         * Application.cs: Removed code that forces 1.x for the version
15705           number if the version started with 0. Not sure why that code was
15706           there and I couldn't find any bugs that indicated we needed it.
15707           Fixes #78869
15708
15709 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
15710
15711         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
15712           ResetDefaults(), just write some output to the console until it's
15713           implemented. Fixes bug #78907 for now. Eliminated two warnings.
15714
15715 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
15716
15717         * PropertyGridView.cs: set StartPosition of drop down forms
15718         so they appear in correct initial spot.  Fixes #78190.
15719
15720 2006-07-19  Mike Kestner  <mkestner@novell.com>
15721
15722         * ThemeWin32Classic.cs: use parent background color when drawing
15723         flat toolbars.  Restructure the conditionals to make sure non-flat
15724         non-Divider toolbars are filled too.  Fixes #78837.
15725
15726 2006-07-19  Mike Kestner  <mkestner@novell.com>
15727
15728         * ListBox.cs: Sort on collection changes even if the handle
15729         isn't created yet.  Fixes #78813.
15730
15731 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
15732
15733         * ListControl.cs: DisplayMember should never be null,
15734         and now we assign String.Empty when null is passed to it (this
15735         is the .Net way).
15736
15737 2006-07-17  Mike Kestner  <mkestner@novell.com>
15738
15739         * ListViewItem.cs: restructure Font and subitem Font handling 
15740         to hold a specific font and refer back to owner on null.
15741         Fixes #78761.
15742
15743 2006-07-17  Mike Kestner  <mkestner@novell.com>
15744
15745         * ToolBar.cs: bandaid for side-effect of previous patch which was
15746         discarding explicit heights for non-AutoSize toolbars.  Need to
15747         extend my format tester to deal with AutoSize=false. Fixes #78864.
15748
15749 2006-07-15  Jackson Harper  <jackson@ximian.com>
15750
15751         * LabelEditTextBox.cs:
15752         * TreeView.cs: Use a new LabelEdit class for node editing, this
15753         class automatically 'closes' itself when it gets the enter key or
15754         loses focus.
15755         - Use the client rectangle when setting the trees scrollbars, so
15756         border style is taken into account.
15757         
15758 2006-07-14  Jackson Harper  <jackson@ximian.com>
15759
15760         * TreeNode.cs:
15761         * TreeView.cs: Make the editing work similar to MSs, firing the
15762         events correctly and ending edits correctly.
15763
15764 2006-07-14  Mike Kestner  <mkestner@novell.com>
15765
15766         * ToolBarButton.cs:
15767         * ToolBar.cs: layout restructuring and redraw enhancements to support
15768         formatting changes gracefully, like setting TextAlign, ImageList, 
15769         ButtonSize, and Appearance.  Handles explicit button sizing quirks
15770         of the MS controls.  Things like flat toolbars ignoring button size
15771         but becoming constant sized at the largest button's size.  Normal
15772         toolbars with an image set cannot be shrunk smaller than the image,
15773         but text can be clipped/ignored.
15774         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
15775         is zero.  Seems like DrawString should be smart enough to not put
15776         anything on screen though. Also trim labels and ellipsize at the char
15777         boundary, not word.
15778         Fixes #78711 and #78483.
15779
15780 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15781
15782         * FolderBrowserDialog.cs: Disable "New Folder" button and
15783           "New Folder" contextmenu menuitem if a folder like "My Computer"
15784           is selected.
15785
15786 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15787
15788         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
15789         * FolderBrowserDialog.cs:
15790           - Use MWFConfig to store and read size and position settings
15791           - Added code to create a new folder (button or context menu).
15792             Use TreeView labeledit to change the name of the new folder.
15793
15794 2006-07-14  Jackson Harper  <jackson@ximian.com>
15795
15796         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
15797         when the tree is scrolled we end editing.
15798
15799 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
15800
15801         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
15802           Down arrows
15803
15804 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
15805
15806         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
15807         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
15808         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
15809         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
15810         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
15811         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
15812         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
15813         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
15814         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
15815         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
15816         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
15817         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
15818         ListViewItemSelectionChangedEventHandler.cs,
15819         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
15820         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
15821         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
15822         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
15823         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
15824         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
15825         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
15826         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
15827         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
15828         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
15829         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
15830         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
15831         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
15832         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
15833         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
15834         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
15835         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
15836         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
15837         WebBrowserNavigatingEventHandler.cs, 
15838         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
15839
15840 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
15841
15842         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
15843         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
15844         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
15845         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
15846         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
15847         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
15848         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
15849         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
15850         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
15851         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
15852         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
15853         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
15854         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
15855         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
15856         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
15857         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
15858         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
15859         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
15860         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
15861         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
15862         ListViewItemStates.cs, MaskFormat.cs: Added
15863
15864 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
15865
15866         * PropertyGridView.cs: Fix keyboard navigation of drop down.
15867         Patch from eno for bug 78558.
15868         
15869 2006-07-13  Jackson Harper  <jackson@ximian.com>
15870
15871         * TreeView.cs: When an edit is finished make sure that the
15872         selected node is visible.
15873         - When setting the top/bottom use the scrollbars is_visible, so
15874         everything will be set correctly even if the tree isn't visible
15875         yet.
15876
15877 2006-07-13  Jackson Harper  <jackson@ximian.com>
15878
15879         * ComboBox.cs: Revert the item->index part of my previous patch.
15880         * TreeView.cs: Use LostFocus instead of Leave for detecting when
15881         the edit box has lost focus (duh).
15882         - Just make the edit box not visible when we get return, that will
15883         take the focus, which will call EndEdit
15884         * TreeNode.cs When we start editing, notify the treeview.
15885
15886 2006-07-12  Jackson Harper  <jackson@ximian.com>
15887
15888         * ComboBox.cs: Clear out old items before setting the item list.
15889         This prevents databound controls from having their items added
15890         twice.
15891         - Switch the combobox to use indices whereever possible instead of
15892         using Item's.  This allows usto navigate through lists that have
15893         more then one item with the same string value (ie a, b, b, a).
15894         - Scroll the listboxes scrollbar when a non visible item is
15895         highlighted
15896         - Allow keypress to cycle through all the possible values. For
15897         example if you have b1, b2, b3 and hold down the B key all the
15898         values will be cycled through.
15899         
15900 2006-07-12  Jackson Harper  <jackson@ximian.com>
15901
15902         * TextBoxBase.cs:
15903         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
15904         this using the internal methods.
15905         * Control.cs: Add OnGotFocusInternal.  A new method that allows
15906         controls to "override" OnGotFocus and change focus behavior if
15907         needed.
15908         - Same thing for LostFocus
15909         * ComboBox.cs: Pass off focus to the text control properly.
15910
15911 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
15912
15913         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
15914         * FolderBrowserDialog.cs: Almost a complete rewrite.
15915           - Better support for Environment.Specialfolders
15916           - Added support for MWFVFS
15917           - Made setting SelectedPath work
15918
15919 2006-07-12  Jackson Harper  <jackson@ximian.com>
15920
15921         * Control.cs: Optimze getting all the controls.
15922
15923 2006-07-11  Jackson Harper  <jackson@ximian.com>
15924
15925         * ContainerControl.cs: Override SETFOCUS in the container control,
15926         so that it is not selected on mouse click.
15927
15928 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
15929
15930         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
15931           Hopefully we will have a better way once all of focus is complete.
15932
15933 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
15934
15935         * ThemeWin32Classic.cs: Commented out some debug code and fixed
15936           a compile error with csc.
15937
15938 2006-07-11  Jackson Harper  <jackson@ximian.com>
15939
15940         * Control.cs: When hiding a control only select the next control
15941         if the current control was focused.
15942         - Don't handle enter/leave when setting/killing focus, this is
15943         done by the container control.
15944         - Remove is_selected, it's not needed anymore.
15945         - Add utility methods for selecting a child control, and for
15946         firing the Enter/Leave events.
15947         * ContainerControl.cs: When a control is activated fire the
15948         enter/leave events.
15949         - Don't wrap when processing the tab key, so that focus can be
15950         moved outside of the container.
15951         - Use the correct active control
15952
15953 2006-07-11  Jackson Harper  <jackson@ximian.com>
15954
15955         * ComboBox.cs: Remove some debug code that was blinding me.
15956         * UpDownBase.cs: These controls actually aren't implicit, they are
15957         visible to the user.
15958
15959 2006-07-10  Chris Toshok  <toshok@ximian.com>
15960
15961         * DataGrid.cs: move back to the is_adding boolean field.  god i
15962         hate this is_editing/is_adding/is_changing stuff.
15963
15964 2006-07-10  Chris Toshok  <toshok@ximian.com>
15965
15966         * DataGridTableStyle.cs: just check if the property type is bool.
15967         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
15968         Don't use CanRenderType.
15969
15970         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
15971         if our text == NullText.  Remove CanRenderType.
15972
15973         * DataGridBoolColumn.cs: nuke CanRenderType.
15974
15975         * DataGrid.cs: reenable some code to end the current edit inside
15976         of set_CurrentCell.  This fixes the other 1.1.16 regression.
15977         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
15978         Also, remove the visible_row_count arg from CalcRowHeaders, since
15979         we don't need to worry about the actual height of the area.
15980
15981 2006-07-10  Chris Toshok  <toshok@ximian.com>
15982
15983         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
15984         mode, just return.
15985
15986         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
15987         the real sense of the IsInEditOrNavigateMode property (true =
15988         navigate, false = edit).  Also, update OnKeyPress to reflect this.
15989
15990         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
15991         column style exists, we still need to set its property descriptor
15992         to match up with our list manager.
15993
15994 2006-07-10  Chris Toshok  <toshok@ximian.com>
15995
15996         * ThemeWin32Classic.cs: implement the new row/header painting
15997         approach.  The parent row painting will likely go away and
15998         replaced with label controls, but the rest seems to work ok (and
15999         efficiently).
16000
16001         * Theme.cs: change the way we draw datagrid rows.  we don't draw
16002         the row headers as a block now.  Instead we draw them in the
16003         normal draw-row loop.  Add some calls for drawing parent rows and
16004         relation rows.
16005
16006         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
16007         a default table style.  Set the defaults from ThemeEngine.Current,
16008         not SystemColors.  Fix lots of misc issues with property setters.
16009
16010         * DataGrid.cs: move loads of style information out of this class
16011         as it's being duplicated with DataGridTableStyle.  keep track of a
16012         special DataGridTableStyle for the properties we used to mirror
16013         here.  Switch all the style properties to access this table style
16014         instead of instance fields of this class.  Also add a internal
16015         class to represent parent rows (more needs to be stored here, like
16016         the selection state from the parent table, as well as the
16017         expansion state.)  Also, for datasources with relations, do the
16018         right thing for collapse/expand, and add support for the
16019         navigation/parent row buttons.
16020
16021         Lastly, fix the crash in the 1.1.16 build.
16022
16023         * GridTableStylesCollection.cs: make the explicit interface
16024         implementations call the class's methods as opposed to duplicating
16025         them.
16026
16027         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
16028         0 so the text doesn't jump around when we move the cursor.
16029
16030 2006-07-10  Jackson Harper  <jackson@ximian.com>
16031
16032         * TextBoxBase.cs:
16033         * ListBox.cs: Match MS's ToString (this makes debugging focus
16034         stuff infinitely easier).
16035
16036 2006-07-10  Jackson Harper  <jackson@ximian.com>
16037
16038         * Control.cs (SelectNextControl): When checking the control's
16039         parent use this instead of ctrl.parent so that null can be passed
16040         to SelectNextControl. (I have unit tests for this).
16041         - Remove unused var.
16042
16043 2006-07-10  Chris Toshok  <toshok@ximian.com>
16044
16045         * CurrencyManager.cs: correct one regression, the removal of the
16046         finalType field.  Also, add a MonoTODO on CanAddRows, implement
16047         Refresh() correctly, and fix some event emission in
16048         ListChangedHandler.
16049
16050 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16051
16052         * FileDialog.cs: Don't use brackets for new folders if they exist
16053           under *nix. Instead use -(number of existing folders +1).
16054
16055 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
16056
16057         * FileDialog.cs:
16058           - Fixed really nasty bug #78771
16059           - Don't block the whole GUI when reading directories with a lot of
16060             entries. Use an other thread instead and call BeginInvoke to
16061             update the ListView in MWFFileView
16062
16063 2006-07-07  Chris Toshok  <toshok@ximian.com>
16064
16065         * Control.cs (Dispose): release any Capture when disposing.
16066
16067 2006-07-07  Chris Toshok  <toshok@ximian.com>
16068
16069         * LinkLabel.cs (Select): if we chain up to the parent, set
16070         focused_index to -1 so we'll search for the first available link
16071         the next time the user tabs into us.  Also, if the direction is
16072         backward and focused_index == -1, start the search from the last
16073         element.
16074
16075 2006-07-07  Chris Toshok  <toshok@ximian.com>
16076
16077         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
16078         is beyond the end of the text, don't do anything.
16079         (CreateLinkPieces): set our ControlStyles.Selectable based on
16080         whether or not we have any links.
16081         (Link.Invalidate): use a loop instead of foreach.
16082         (Link.set_Start): null out owner.sorted_links so it'll be
16083         recreated by CreateLinkPieces.
16084
16085 2006-07-06  Chris Toshok  <toshok@ximian.com>
16086
16087         * LinkLabel.cs: revert the SetStyle change.
16088
16089 2006-07-06  Chris Toshok  <toshok@ximian.com>
16090
16091         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
16092         (OnEnableChanged): s/Refresh/Invalidate
16093         (OnGotFocus): if we have a focused index already, refocus it (so
16094         if we mouse out/in to the window it'll focus the right link).
16095         (OnKeyDown): move the tab handling out of here.
16096         (OnLostFocus): don't set focused_index to -1, so we can refocus it
16097         when we lose focus.
16098         (OnMouseDown): don't Capture here - Control handles it.  Also,
16099         focus the active link.
16100         (OnMouseUp): don't deal with Capture.
16101         (OnPaintBackgroundInternal): remove.
16102         (OnTextAlignChanged): CreateLinkPieces before calling the
16103         superclass's method.
16104         (OnTextChanged): call CreateLinkPieces before calling superclass's
16105         method.
16106         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
16107         move around.
16108         (Select): implement this, moving the selection between different
16109         links, and call parent.SelectNextControl if we don't have another
16110         link to focus in the given direction.
16111         (CreateLinkPieces): call Invalidate instead of Refresh.
16112         
16113 2006-07-06  Chris Toshok  <toshok@ximian.com>
16114
16115         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
16116         new LinkLabel internals.
16117
16118         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
16119         over pieces looking for active/focused/etc links.  also, deal with
16120         runs of text (and links) with embedded \n's in them, and use
16121         MeasureCharacterRanges instead of MeasureString to figure out the
16122         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
16123         two-step.
16124
16125 2006-07-04  Jackson Harper  <jackson@ximian.com>
16126
16127         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
16128         XKB or key auto repeat, do it manually.  Without key auto repeat,
16129         when a key is held down we get key press, key release, key press,
16130         key release, ... with auto repeat we get key press, key press, key
16131         press ..., and then a release when the key is actually released.
16132
16133 2006-07-03  Jackson Harper  <jackson@ximian.com>
16134
16135         * TabControl.cs:
16136         * ThemeWin32Classic.cs: Tabs do not obey normal background color
16137         rules, they are always control color regardless of the background
16138         color.
16139
16140 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
16141
16142         * FileDialog.cs: Added internal class MWFConfig.
16143           Removed Registry support and replaced it with support for the new
16144           MWFConfig class. See MWFConfig comments for more information.
16145
16146 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
16147
16148         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
16149           rectangle. Added some patches from eno from bug #78490 and fixed
16150           the arrow position for small up and down CPDrawScrollButtons.
16151
16152 2006-06-30  Jackson Harper  <jackson@ximian.com>
16153
16154         * InternalWindowManager.cs: Remove some debug code.
16155         * Form.cs: When an MdiParent is set to null, the window is
16156         "detatched" and becomes a normal window.
16157         * MdiClient.cs: Don't bring the new child form to the front until
16158         it is activated (setting it as active does this), this makes the
16159         previously active forms titlebar get redrawn as inactive.
16160
16161 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
16162
16163         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
16164           with later controls
16165
16166 2006-06-29  Mike Kestner  <mkestner@novell.com>
16167
16168         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
16169         arrow in keynav state.  Fixes #78682.
16170
16171 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16172
16173         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
16174           order (fixes #78393)
16175
16176 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
16177
16178         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
16179           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
16180           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
16181           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
16182           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
16183           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
16184           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
16185           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
16186           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
16187           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
16188           enumerations (FlagsAttribute, SerializableAttribute, added/removed
16189           values)
16190
16191 2006-06-28  Mike Kestner  <mkestner@novell.com>
16192
16193         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
16194
16195 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
16196
16197         * PropertyGrid.cs,
16198           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
16199           item lines from other area (It also makes BackColor consistent and
16200           compatible with .NET). Fixed bug #78564.
16201
16202 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
16203
16204         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
16205         Patch from Eno for #78555.
16206
16207 2006-06-27  Chris Toshok  <toshok@ximian.com>
16208
16209         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
16210
16211         * DataGridColumnStyle.cs: same.
16212
16213         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
16214         
16215         * DataGridDrawingLogic.cs: nuke.
16216
16217 2006-06-27  Chris Toshok  <toshok@ximian.com>
16218
16219         * DataGridTableStyle.cs: clean up the constructors, and build the
16220         list of child relations for this table.  I have no idea if this is
16221         where we should be doing it (it probably isn't), but since we're
16222         already iterating over the properties..
16223
16224         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
16225         struct and array for keeping track of row information, similar to
16226         what's shown in a hack on
16227         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
16228
16229         * Theme.cs: be consistent about the naming of DataGrid methods,
16230         prefering ColumnWidths and RowHeights over columnsWidths and
16231         RowsHeights.
16232
16233         * ThemeWin32Classic.cs: same, and also add support for variable
16234         sized rows (and the +/- expansion icons for related rows).
16235
16236 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16237
16238         * TextBoxBase.cs: Applied Eno's patch from #78660
16239
16240 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16241
16242         * Form.cs (ScaleCore): We don't want to scale our form if it's
16243           state is minimized or maximized, but we still need to scale our
16244           child windows. Also, added try/finally block to ensure layout
16245           gets reset (Fixes #78697)
16246
16247 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
16248
16249         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
16250
16251 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
16252
16253         * Form.cs: Fixed c+p error and added check to resize form if minimum
16254           size is bigger than current size (Fixes #78709)
16255
16256 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
16257
16258         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
16259
16260 2006-06-26  Mike Kestner  <mkestner@novell.com>
16261
16262         * ComboBox.cs: only do Keypress handling in the combo when there  
16263         are items in the collection. Fixes #78710.
16264
16265 2006-06-26  Chris Toshok  <toshok@ximian.com>
16266
16267         * Binding.cs: make this work bi-directionally.  also, clear up
16268         other mixups between Push/Pull Data (e.g. we're supposed to pull
16269         data when validating).
16270
16271         * BindingManagerBase.cs: trim some fully qualified collection
16272         types.
16273
16274         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
16275
16276 2006-06-23  Chris Toshok  <toshok@ximian.com>
16277
16278         * PropertyManager.cs: It appears (according to the unit tests)
16279         that PropertyManager doesn't use
16280         PropertyDescriptor.AddValueChanged to track propery value changes
16281         in its datasource, but uses the same scheme as Binding, where it
16282         looks for a <Property>Changed event and binds to it.
16283
16284         Also, according to the docs, IsSuspended always returns false for
16285         a property manager with a non-null datasource.
16286
16287 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
16288
16289         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
16290           need to update the actual DialogResult. (Fixes #78613)
16291
16292 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
16293
16294         * Form.cs (ShowDialog): Release any captures before running the
16295           new message pump (fixes #78680)
16296
16297 2006-06-22  Mike Kestner  <mkestner@novell.com>
16298
16299         * ListView.cs: Layout column widths properly in details mode even 
16300         if HeaderStyle.None is set.  Fixes #78691.
16301
16302 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
16303
16304         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
16305
16306 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
16307
16308         * Control.cs (ContainsFocus): Using new driver method to get focused
16309           window, instead of trying to use internal tracking var, which can
16310           recursion issues (Fixes #78685)
16311         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
16312           XplatUIWin32.cs: Added GetFocus method to return focused window
16313
16314 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16315
16316         * ColorDialog.cs: when the mouse button is pressed inside the color
16317         matrix, don't let the cursor move out of it until the button is
16318         released, which is the behavior on windows. Changed 'colours' by
16319         'colors' to use the same word consistently.
16320
16321 2006-06-21  Chris Toshok  <toshok@ximian.com>
16322
16323         * DataGrid.cs: add in some basic navigation stuff (navigating to a
16324         child relation and back, using a stack).  Also, remove
16325         GetDataSource and the code that calls it - it's not needed.  Also,
16326         track CurrencyManager.ListName's removal.
16327
16328 2006-06-21  Chris Toshok  <toshok@ximian.com>
16329
16330         * CurrencyManager.cs: push some of the original type checking from
16331         BindingContext.CreateBindingManager to here, and remove some of
16332         the finalType stuff.  Need more tests to make sure I've got the
16333         ListName part right, and we might need more in SetDataSource.
16334
16335         * PropertyManager.cs: add a ctor that takes just the datasource,
16336         and no property name.  Make SetDataSource work with a null
16337         property_name, and make Current return the data_source if the
16338         property descriptor is null.  this makes 'string foo = "hi";
16339         BindingContext[foo].Current' return "hi" as it should.
16340
16341         * RelatedCurrencyManager.cs: make this code more generic - there's
16342         no reason the parent manager has to be CurrencyManager, and
16343         there's no reason to pass the DataRelation.  It suffices to use a
16344         BindingManagerBase and PropetyDescriptor.
16345
16346         * RelatedPropertyManager.cs: make a similar change here.
16347         
16348         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
16349         flower I knew it could be.
16350
16351 2006-06-20  Chris Toshok  <toshok@ximian.com>
16352
16353         * PropertyManager.cs: the PropertyChangedHandler is invoked when
16354         data in the source has changed and we need to update the control,
16355         so s/PullData/PushData.
16356
16357         * CurrencyManager.cs: Refresh is meant to update the control from
16358         data in the datasource.  So, s/PullData/PushData.
16359
16360         * BindingContext.cs: add more ugliness (we weren't handling the
16361         case where data_source = DataTable and data_member = column_name).
16362
16363         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
16364         from the perspective of the datasource.  PullData pulls from the
16365         control, PushData pushes to the control.
16366
16367 2006-06-20  Chris Toshok  <toshok@ximian.com>
16368
16369         * BindingContext.cs: rewrite the CreateBindingManager code to
16370         handle navigation paths more or less properly.  This could
16371         definitely stand some more work, in particular to push the
16372         recursion up to the toplevel.  But that relies on fixes in other
16373         places (System.Data comes to mind).
16374
16375         Also, move to a flat hashtable (and encode the twolevel nature of
16376         the dictionary into the hash key).  This lets us implement the
16377         IEnumerable.GetEnumerator method.
16378
16379         * RelatedCurrencyManager.cs: new class.  Update our view based on
16380         our relation and our parent CurrencyManager's position.
16381
16382         * CurrencyManager.cs: split out some logic from the ctor into
16383         SetView, so it can be called from the new RelatedCurrencyManager
16384         subclass.
16385
16386         * RelatedPropertyManager.cs: new class.  Update our datasource
16387         based on the position of our parent CurrencyManager.
16388
16389         * PropertyManager.cs: split out some logic from the ctor into
16390         SetDataSource, so it can be called from the new RelatedDataSource
16391         subclass.  Also, make the Current getter return the value
16392         of the PropertyDescriptor, not the data_source.
16393
16394         * Binding.cs: no need to duplicate the string splitting code here.
16395
16396 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16397
16398         * Control.cs:
16399           - set_Enabled: OnEnabledChanged is not called if the inherited state 
16400             of the control is not altered, even though  we might be changing the
16401             internal state of the control (#78458)
16402           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
16403             OnEnabledChanged, to allow easy altering of any child window state
16404           - OnEnabledChanged: Added code to enable/disable driver window state
16405           - OnParentEnabledChanged: Instead of firing the event, call 
16406             OnEnabledChanged, which will fire the event and also a) set driver
16407             window state and pass the enabled state to any grandchildren (#78458)
16408
16409 2006-06-19  Jackson Harper  <jackson@ximian.com>
16410
16411         * InternalWindowManager.cs: We don't set the cursor explicitly
16412         thats done via the response to NCHITTESTs.
16413         - Don't need to adjust for titlebar heights anymore, the
16414         coordinates are coming in the correct coordinates now (see peters
16415         last patch).
16416
16417
16418 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
16419
16420         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
16421           being translated relative to whole window, instead of client window.
16422           That caused broken offsets on mouseclick (and caused gas for our
16423           InternalWindowManager)
16424
16425 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16426
16427         * TextControl.cs:
16428           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
16429           - Undo(): Added replay of cursor move on DeleteChars action; added
16430             calling Undo() again if a recorded cursor move is invalid (to
16431             ensure that some action is performed on Undo)
16432         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
16433
16434 2006-06-16  Jackson Harper  <jackson@ximian.com>
16435
16436         * MdiClient.cs: Instead of just sizing maximized windows when
16437         there is a resize we also have to adjust the Y of minimized
16438         windows, so they stay pinned to the bottom of the mdi container.
16439         - Eliminate separate tracking of the active control, we can just
16440         get this from the controls collection.
16441         - Paint the decorations for the newly activated titlebar so we get
16442         a pretty blue bar.
16443         * InternalWindowManager.cs:
16444         * ThemeWin32Classic.cs: Minimized windows get all three buttons
16445         even if they are a tool window.
16446         
16447 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
16448
16449         * TextControl.cs (Undo): Handle non-existent cursor locations in the
16450           undo buffer, these can happen when text was deleted and the cursor
16451           was recorded first. Since we will also have a recorded cursor
16452           after the delete this is not an issue. (Fixes #78651)
16453
16454 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
16455
16456         * AccessibleObject.cs: Remove dependence on Control.is_selected;
16457           instead properly track control states internally (allows us to
16458           remove is_selected from Control)
16459
16460 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16461
16462         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
16463         whose width is not a multiple of 8.
16464
16465 2006-06-13  Jackson Harper  <jackson@ximian.com>
16466
16467         * MdiClient.cs:  Only maximize the next child if the current one
16468         is maximized.
16469
16470 2006-06-13  Chris Toshok  <toshok@ximian.com>
16471
16472         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
16473         modified.  Also, guard against grid or grid_drawing being null in
16474         Invalidate.
16475
16476         * DataGrid.cs: Reformat tons of getters/setters.  In the
16477         DataMember setter, just call SetNewDataSource instead of
16478         duplicating some of its functionality.  In SetNewDataSource, don't
16479         check ListManager for null, since the property getter creates the
16480         object if needed.
16481
16482         * DataGridTableStyle.cs: don't set TableStyle or call
16483         SetDataGridInternal on the column here, it's done in
16484         GridColumnStylesCollection.Add.
16485
16486         * GridColumnStylesCollection.cs: fix all the explicit interface
16487         implementations to just call our methods.  Nuke AddInternal() and
16488         move the body of it to Add().  Also, add a call to
16489         column.SetDataGridInternal to Add().
16490
16491         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
16492         base()+duplicate code.  Also, use the Format property instead of
16493         format to generate an Invalidate ala MS.  Lastly, create the
16494         textbox here, unconditionally.
16495         (set_Format): call Invalidate.
16496         (get_TextBox): no need to call EnsureTextBox.
16497         (Commit): remove the message box.
16498         (Edit) remove the call to EnsureTextBox.
16499         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
16500         (EnterNullValue): no need to check textbox for null.
16501         (HideEditBox): no need to check textbox for null.
16502         (SetDataGridInColumn): add the textbox to the grid's controls.
16503         (EnsureTextBox): nuke.
16504         
16505 2006-06-13  Jackson Harper  <jackson@ximian.com>
16506
16507         * MdiWindowManager.cs: Hook up to the maximized menus paint event
16508         and redraw the buttons when needed. Unhook when the window is
16509         unmaximized.
16510         * MainMenu.cs: Add an internal Paint event, the mdi window manager
16511         needs this so that it can redraw its buttons when the menu is
16512         repainted.
16513         * InternalWindowManager.cs:
16514         * Form.cs: The method order has changed for DrawMaximizedButtons,
16515         so that it can be a PaintEventHandler.
16516         
16517 2006-06-13  Jackson Harper  <jackson@ximian.com>
16518
16519         * MdiClient.cs: When we close a maximized mdi window, the next mdi
16520         window is activated and maximized, even if it wasn't before.
16521         - When  a new window is activated repaint the decorations of the
16522         old one, so that it no longer has the Active "look" (the blue
16523         titlebar).
16524         * InternalWindowManager.cs: Open up CreateButtons to base classes
16525         so they can recreate the buttons on state changes.
16526         - If a window is maximized give it all three buttons
16527         * MdiWindowManager.cs: Create the titlebar buttons when the state
16528         is changed, this is needed because a toolwindow will not have all
16529         three buttons until it is maximized.
16530
16531 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
16532
16533         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
16534           Fixed bug #78609.
16535
16536 2006-06-12  Jackson Harper  <jackson@ximian.com>
16537
16538         * KeysConverter.cs: Make sure we handle the Ctrl special case
16539         if its the only key.
16540         
16541 2006-06-12  Jackson Harper  <jackson@ximian.com>
16542
16543         * Theme.cs: Add a method to get the size of a managed window
16544         toolbar button.
16545         * InternalWindowManager.cs: Remove the ButtonSize property, this
16546         should be retrieved from the theme.
16547         * MdiWindowManager.cs: Get the button size from the theme
16548         * ThemeWin32Classic.cs: Make the method to get the managed window
16549         titlebar button size public.
16550         - Handle the different button sizes of maximized toolwindows
16551         (should match any maximized window).
16552         - Get the titlebar height from the theme, not the WM (which gets
16553         it from the theme).
16554
16555 2006-06-12  Jackson Harper  <jackson@ximian.com>
16556
16557         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
16558         event down to the mdi window manager.
16559         - Expose some extra stuff to base classes
16560         - Make sure to end the Capture on an NC Mouse up, so that we can
16561         get double clicks properly, and the sizing doens't stick.
16562         - When doing PointToClient contain it in the workable desktop
16563         area, this prevents windows from changing size when the cursor is
16564         pulled outside of the working area while sizing.
16565         * MdiWindowManager.cs: When we get a double click maximize the
16566         window.
16567         - Reset the cursor after handling mode changes.
16568
16569 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
16570
16571         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
16572           current desktop, instead of just assuming a 0, 0 origin. This
16573           is needed for our internal window manager, to know the top
16574           margin of the desktop
16575
16576 2006-06-12  Chris Toshok  <toshok@ximian.com>
16577
16578         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
16579         we need this to get rid of the selected background in the bool
16580         column.
16581         (CancelEditing): move the ConcedeFocus call to above the Abort
16582         call.  Also, set is_changing to false and invalidate the row
16583         header if we were changing before.
16584         (ProcessKeyPreviewInternal): remove, since noone outside this
16585         class calls it anymore.  Roll the code into ProcessKeyPreview.
16586         (EndEdit): remove the internal version.
16587         (InvalidateCurrentRowHeader): make private.
16588
16589         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
16590         Keys.Escape handling (and with it the last call to
16591         DataGrid.EndEdit from outside the class.)
16592
16593
16594 2006-06-12  Chris Toshok  <toshok@ximian.com>
16595
16596         * DataGridTextBox.cs (.ctor): isedit defaults to false.
16597         (OnKeyPress): set isedit to true.
16598         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
16599         already handled by the grid.
16600
16601         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
16602         right.  ugh.
16603         (set_DataSource): SetDataSource always returns true, so stop
16604         putting it in an if statement.
16605         (EndEdit): get rid of some {}'s
16606         (ProcessGridKey): return true in case Keys.Escape.
16607         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
16608         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
16609         PositionChanged, stopped connecting to CurrentChanged.
16610         (GetDataSource): simplify this a bunch.
16611         (SetDataSource): change return type from bool to void.
16612         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
16613         to this, and make sure we don't set ListManager.Position inside
16614         set_CurrentCell.
16615         (OnListManagerItemChanged): if we're passed an actual index,
16616         redraw that row.
16617
16618         * CurrencyManager.cs (set_Position): don't call PullData here.
16619
16620 2006-06-09  Jackson Harper  <jackson@ximian.com>
16621
16622         * TreeNode.cs:  Recalculate the visible order before doing the
16623         Expand/Collapse Below calls, because those calls generate an
16624         expose.
16625         - Reduce calls to the TreeView property, which is mildly expensive
16626         by using a local var.
16627         * Form.cs: Layout the MDI child windows when creating the parent
16628         form.
16629         - Don't use the internal constructor anymore
16630         * MdiClient.cs: use the parent form width/height (if available)
16631         when laying out the child windows, we do this because the
16632         mdiclient isn't docked yet when the initial layout is done.
16633         - Don't need an internal constructor anymore.
16634
16635 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16636
16637         * FileDialog.cs: handle access errors when trying to create a folder
16638         or changing to a directory. No need to initialize out parameters.
16639
16640 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16641
16642         * FileDialog.cs: Append a number when creating a new folder if the
16643           folder already exists (use parenthesis instead of square brackets)
16644
16645 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16646
16647         * FileDialog.cs:
16648           - Disabled registry support for windows and added better registry
16649             error checking for other systems (need to investigate why it
16650             works perfectly on my system)
16651           - If a folder already exist show an error MessageBox instead of
16652             trying to create an indexed name.
16653           - Fixed a non intentional typo.
16654
16655 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16656
16657         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
16658
16659 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16660
16661         * FileDialog.cs: When creating a new folder don't crash if the
16662           folder already exists.
16663
16664 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16665
16666         * FileDialog.cs: Allmost a complete rewrite.
16667           - added a "virtual" file system that handles the differences
16668             between unix and windows file systems (especially the directory
16669             structure). Moved most of the directory and file handling code
16670             into the vfs.
16671             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
16672             UnixFileSystem and FSEntry.
16673           - Recently used folder/directory, size, location and used file names
16674             (file name ComboBox) are now stored in the registry and get read
16675             before the dialog shows up (fixes part 6 of bug #78446).
16676           - Creation of new folders/directories is now possible (context menu
16677             or ToolBar). Added TextEntryDialog for this that fills in the gap
16678             until ListView.LabelEdit works.
16679           - Fixed cursor handling (bug #78527) and focus handling for
16680             PopupButtonPanel
16681           - Various "Search in" ComboBox enhancements. The content of the
16682             dropdown listbox now almost matches ms.
16683           - Changed the behaviour when the user switches to SpecialFolder
16684             Recent to show the ListView in View.Details.
16685           - Beside using the ToolBar to change the View property of the
16686             file ListView it is now possible to use the context menu too.
16687
16688 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
16689
16690         * ComboBox.cs: Don't create a new ObjectCollection when an item
16691           gets inserted. Just insert the item in the existing object_items
16692           ArrayList.
16693
16694 2006-06-08  Jackson Harper  <jackson@ximian.com>
16695
16696         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
16697         that the treeview and root node checks are done also, this fixes a
16698         regression i caused in the unit tests.
16699
16700 2006-06-07  Wade Berrier <wberrier@novell.com> 
16701
16702         * RichTextBox.cs: More ISO8859-1 -> unicode
16703
16704 2006-06-07  Mike Kestner  <mkestner@novell.com>
16705
16706         * ComboBox.cs : use items to hold highlight/selection so that
16707         collection insertions don't require synchronization.
16708
16709 2006-06-07  Jackson Harper  <jackson@ximian.com>
16710
16711         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
16712         routine.  We now always keep the sized edge at the cursor instead
16713         of computing movement and adjusting rects.  There is one buglet
16714         with this method though when the cursor is moved over area that
16715         the window can not expand too (such as the toolbars on the desktop).
16716
16717 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16718
16719         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
16720         here. Fixes crash on startup in AlbumSurfer.
16721
16722 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
16723
16724         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
16725           values
16726
16727 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16728
16729         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
16730         statement to avoid calling XNextEvent which will block if another thread
16731         took the event that we were expecting. Fixes bug #78605.
16732
16733 2006-06-07  Mike Kestner  <mkestner@novell.com>
16734
16735         * ListView.cs : isolated checkbox clicking from the selection logic.
16736         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
16737
16738 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
16739
16740         * Form.cs: Check that the value passed to Form.DialogResult
16741         is a valid enum value.
16742
16743 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16744
16745         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
16746         Computer'. Clicking it in the network view goes to 'My Computer'.
16747         Added CIFS filesystem type. Display the mount point of filesystems.
16748         Avoid duplicate mount points (happens for me with CIFS);
16749
16750 2006-06-06  Jackson Harper  <jackson@ximian.com>
16751
16752         * InternalWindowManager.cs: Draw the maximized windows buttons
16753         when resizing.
16754
16755 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16756
16757         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
16758         all other dialogs. Fixes bug #78585.
16759
16760 2006-06-06  Mike Kestner  <mkestner@novell.com>
16761
16762         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
16763         Only invalidate checkbox on checkstate changes to avoid flicker.
16764         * ListBox.cs : avoid unselect/select when clicking selected item.
16765         avoid reselection flicker for already multiselected items.
16766         Fixes #78382.
16767
16768 2006-06-06  Jackson Harper  <jackson@ximian.com>
16769
16770         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
16771         the parent form so that the menu is removed if needed.
16772
16773 2006-06-06  Mike Kestner  <mkestner@novell.com>
16774
16775         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
16776         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
16777
16778 2006-06-06  Mike Kestner  <mkestner@novell.com>
16779
16780         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
16781
16782
16783 2006-06-06  Jackson Harper  <jackson@ximian.com>
16784
16785         * Control.cs: Use the property (instead of the field) to get the
16786         default cursor so it is instantiated correctly.
16787         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
16788         resizes so we need to manually repaint the window decorations here.
16789         - Set the titlebar button locations as soon as they are created,
16790         otherwise they are not set correctly on win32.
16791         
16792 2006-06-06  Chris Toshok  <toshok@ximian.com>
16793
16794         * CurrencyManager.cs (set_Position): call PullData before
16795         OnCurrentChanged.
16796         (AddNew): after calling IBindingList.AddNew, update our
16797         listposition, and call OnCurrentChanged/OnPositionChanged (without
16798         calling PullData).
16799         (OnCurrentChanged): remove the call to PullData from here.
16800         (OnItemChanged): remove the call to PushData from here.
16801         (OnPositionChanged): change the test from == null to != null to
16802         match the other methods.
16803         (ListChangedHandler): the grossest part of the patch.  Implement
16804         this such that it passes the unit tests in CurrencyManagerTest and
16805         the output more or less matches that of MS's implementation.
16806  
16807 2006-06-06  Mike Kestner  <mkestner@novell.com>
16808
16809         * ListView.cs : only update check state on single click.
16810         * ThemeWin32Classic.cs : fix focus drawing for details view without
16811         fullrowselect.  Fixes #78454.
16812         * XplatUIX11.cs : fix for double click emission.
16813
16814 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16815
16816         * PropertyGridView.cs : Applied Atsushi's patch to fix
16817         font dialog bug  (#78197).
16818
16819 2006-06-05  Jackson Harper  <jackson@ximian.com>
16820
16821         * TreeNode.cs: Compute the next node for expanding/collapsing
16822         correctly. We now factor in nodes without a NextNode
16823         correctly. (Fixes somes cases in nunit-gui).
16824         * InternalWindowManager.cs: Set the bounds when updating the
16825         virtual position of a tool window.
16826         
16827 2006-06-05  Chris Toshok  <toshok@ximian.com>
16828
16829         * DataGrid.cs: rename cached_currencymgr to list_manager.
16830         (set_CurrentCell): move SetCurrentCell code here, and clean it up
16831         some.
16832         (CurrentRow, CurrentColumn): single accessors so we can make the
16833         cursor movement code a lot easier to understand.
16834         (CurrentRowIndex): implement this in terms of CurrentRow.
16835         (BeginEdit): clean this up a bit.
16836         (CancelEditing): sort out the is_editing/is_changing/is_adding
16837         stuff a little.
16838         (EndEdit): minor changes.
16839         (OnKeyDown): add a comment about a (most likely) unnecessary
16840         check.
16841         (OnMouseDown): cancel editing when we click on a row header.  And
16842         use the CurrentRow setter, not CurrentCell.
16843         (ProcessDialogKey): directly call ProcessGridKey.
16844         (UpdateSelectionAfterCursorMove): factor out this common block of
16845         code (it's used everywhere that we move the cursor by updating row
16846         or column).
16847         (ProcessGridKey): pretty substantial overhaul.  Use the
16848         CurrentRow/CurrentColumn properties to make the code a lot more
16849         readable.  Only use the CurrentCell property when we have to
16850         modify both row and column at once.  Tab behavior is still broken,
16851         and Delete is untested.
16852         (Select): if we have no selected rows, set selection_start to
16853         @row.
16854         (EditCurrentCell): rename EditCell this.  It was only ever invoked
16855         with CurrentCell as the arg, so drop the arg and rename it.
16856
16857         * DataGridColumnStyle.cs: clean up the constructors a little, and
16858         drop CommonConstructor().
16859
16860         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
16861         actually get notified when the user hits it.
16862         (ProcessKeyMessage): *substantially* simplify this method.
16863         There's no reason (that I can see) for the textbox to be making
16864         calls into the datagrid at all.  Remove all of them but the ones
16865         for Enter handling.  those will take some more work.
16866
16867         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
16868         calling HideEditBox.
16869         (HideEditBox): if we have an active textbox, render it invisible
16870         without causing a re-layout of the datagrid.
16871
16872 2006-06-05  Mike Kestner  <mkestner@novell.com>
16873
16874         * ListView.cs : fix NRE crasher when focuseditem is cleared by
16875         collection changes by resetting it to Items[0].  Fixes #78587.
16876
16877 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16878
16879         * MessageBox.cs: if the height of the text is larger than the icon_size,
16880         use that. Fixes bug #78575.
16881
16882 2006-06-05  Jackson Harper  <jackson@ximian.com>
16883
16884         * TreeView.cs: Fix line drawing when scrolling.  To do this each
16885         node is basically responsible for drawing its entire horizontal
16886         area.  When drawing a node it draws its parent node lines if
16887         needed.
16888         - Adjust the clip area to the viewport rectangle
16889         - Fix Left/Right key handling to match MS. (It expand/collapses
16890         and moves to parents/first child but does not move selection to
16891         sibling nodes).
16892         - Fix SetTop to work with new bound calculation code
16893         - When scrollbars are no longer needed we need to reset scrolling
16894         vars and recalculate the visible order so the redraw is correct
16895         * TreeNode.cs: We can't expand/collapse nodes with no children.
16896
16897 2006-06-03  John Luke  <john.luke@gmail.com> 
16898
16899         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
16900         so the colors work without dev packages
16901         
16902 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
16903
16904         * Control.cs 
16905           - Select: Implemented to just use activate. Seems to match MS 
16906             behaviour closest. Documented to only do actual control walking 
16907             based on it's parameters if in a container control so I moved 
16908             the code there.
16909           - Removed selection check logic from our internal Select() method
16910         * ContainerControl.cs:
16911           - Select: Moved selection logic from Control here, since MS documents
16912             that containers obey the bool arguments. No longer calling base
16913
16914 2006-06-02  Jackson Harper  <jackson@ximian.com>
16915
16916         * TreeView.cs: If the selected node isn't changed when we get
16917         focus update the previously selected node so that we see the
16918         selection box.
16919
16920 2006-06-02  Mike Kestner  <mkestner@novell.com>
16921
16922         * ComboBox.cs: restructure grab and general mouse event handling.
16923         Make the composite control raise mouse events like it was a single
16924         control for leaves/enters/motion/up/down events.  fix dropdown list
16925         coordinate mangling and refactor it into the scrollbar subclass to
16926         reduce code duplication.  Fixes #78282 #78361 and #78457.
16927
16928 2006-06-02  Mike Kestner  <mkestner@novell.com>
16929
16930         * ScrollBar.cs: remove Capture setting/clearing, as it happens
16931         automatically in the Control.WndProc.
16932
16933 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16934
16935         * FileDialog.cs: fix crash when running SharpChess, which sets the
16936         FilterIndex to 2 with only one Filter.
16937
16938 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16939
16940         * ToolBar.cs: add SizeSpecified property.
16941         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
16942         try to figure out our real size, otherwise fallback to what the
16943         container says.
16944
16945 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16946
16947         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
16948         * Control.cs (WndProc): MS always calls the DefWndProc to pass
16949           up the event
16950
16951 2006-06-01  Mike Kestner  <mkestner@novell.com>
16952
16953         * ListView.cs: revamp the focus management in ListView.  It still
16954         causes churn of LostFocus/GotFocus emissions on clicks, but it's
16955         better than not handling focus at all.  Will revisit when pdb feels
16956         the general focus handling is solid.  Fixes #78526.
16957
16958 2006-06-01  Jackson Harper  <jackson@ximian.com>
16959
16960         * TreeView.cs: Set the default border style in the constructor.
16961         - Move painting to use OnPaintInternal instead of capturing
16962         WM_PAINT, this is the correct way of doing things
16963         - UpdateBelow shouldn't invalidate the scrollbar area
16964         - Cap the top on update below in case the node was above the top
16965         of the viewport rectangle.
16966         - ExpandBelow and Collapse below need to obey Begin/End Update.
16967         * TreeNode.cs: Make is_expanded internal so the treenode
16968         collection can change it without firing the whole event chain.
16969         * TreeNodeCollection.cs: When clearing all the child nodes make
16970         sure to recalc the visible order.
16971         - Improve algo for remove the top node
16972
16973 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
16974
16975         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
16976           SendMessage directly calling window procedures, which in turn might
16977           call SetFocus()
16978
16979 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
16980
16981         * Control.cs: Don't handle WM_SETFOCUS if the same window already
16982           has focus (works around X11 sending a FocusIn after our SetFocus)
16983         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
16984
16985 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
16986
16987         * Mime.cs: Fix for the NET_2_0 build.
16988           NameValueCollection needs StringComparer now.
16989
16990 2006-05-31  Chris Toshok  <toshok@ximian.com>
16991
16992         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
16993         return (via an out parameter) the starting X of the column.
16994         (UpdateVisibleColumn): track change to FromPixelToColumn.
16995         (HitTest): add a ColumnResize case here.
16996         (DrawResizeLine): new function, probably poorly named.
16997
16998         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
16999         only need to keep one reference.
17000         (set_ListManager): same.
17001         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
17002         Also, add support for HitTestType.ColumnResize.
17003         (OnMouseMove): add column resize behavior here, and change the
17004         cursor to the correct one as we move around the datagrid.
17005         (OnMouseUp): terminate the column resize if we're resizing.
17006         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
17007         for the current cell.
17008         (ConnectListManagerEvents): use cached_currencymgr.
17009         (DisconnectListManagerEvents): fill this in, using
17010         cached_currencymgr.
17011         (SetCurrentCell): remove cached_currencymgr_events handling.
17012         (SetDataMember): only call DisconnectListManagerEvents if
17013         cached_currencymgr is != null.
17014         (SetDataSource): same.
17015         (OnListManagerCurrentChanged): cached_currencymgr_events ->
17016         cached_currencymgr.
17017
17018 2006-05-31  Jackson Harper  <jackson@ximian.com>
17019
17020         * BindingManagerBase.cs: Remove somedebug code that creeped into
17021         SVN.
17022         * TreeNode.cs: We get the indent level dynamically right now, so
17023         don't track it as a member.
17024         * TreeNodeCollection.cs: Make sure all nodes added to the list
17025         have parents, treeviews/topnodes setup properly.
17026         - Don't attempt to track indent level.
17027
17028 2006-05-30  Jackson Harper  <jackson@ximian.com>
17029
17030         * BindingContext.cs: Create the currency manager tables here.
17031         This allows us to more easily create null tables (when bad data
17032         members are used), and more easily create related currency
17033         managers.
17034         * CurrencyManager.cs: All the table creation stuff is done by the
17035         binding context now.
17036         - Current should throw an exception if listposition is -1.
17037         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
17038         been bound yet.
17039
17040 2006-05-30  Mike Kestner  <mkestner@novell.com>
17041
17042         * ListView.cs: allow reexpansion of zero-width column headers.
17043         Fixes #78528.
17044
17045 2006-05-28  Chris Toshok  <toshok@ximian.com>
17046
17047         * CurrencyManager.cs (get_Current): after the late binding
17048         listposition = -1 fix, we need to guard against it here and return
17049         null, otherwise we raise an exception (which is swallowed
17050         elsewhere, and breaks datagrid databinding.)
17051
17052 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17053
17054         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
17055           than WM_SYSKEY, don't throw if get something unexpected (#78507)
17056
17057 2006-05-26  Jackson Harper  <jackson@ximian.com>
17058
17059         * ControlPaint.cs:
17060         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
17061         values, it's faster and it's all we care about (we don't care if
17062         the names aren't equal).
17063         * KeyboardLayouts.cs: Eliminate some dead code.
17064         - Lazy init things
17065         * X11Keyboard.cs: Lazy init keyboard detection.
17066         - Cleanup access modifiers a little.
17067
17068 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
17069
17070         * XplatUIX11.cs: Once again, attempting to get layout just right.
17071
17072 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
17073
17074         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
17075           the sizes of each link section, that will result in sizes that
17076           match DrawString's layout (Fixes #78391)
17077
17078 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
17079
17080         * FileDialog.cs: If AddExtension property is true autocomplete the
17081           extensions in SaveFileDialog correctly. Fixes bug #78453.
17082           Set MyNetwork and MyComputer to "C:\" for windows. This should
17083           fix part 8 of bug #78446 for now.
17084
17085 2006-05-26  Chris Toshok  <toshok@ximian.com>
17086
17087         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
17088         invalidate the current row header if we need to, but presumably
17089         we'll invalidate the row corrsponding to the bounds or
17090         editingControl.
17091         (GridHScrolled): switch back to this method, as it's part of the
17092         public api.  *sigh*.
17093         (GridVScrolled): same.
17094         (OnMouseWheel): hack up something that more or less works.  Call
17095         GridHScrolled/GridVScrolled directly, instead of duplicating much
17096         of their code here.
17097         (EnsureCellVisibility): reinstate a bunch of this code, since we
17098         can't just set the scrollbar Value and expect to do all the work
17099         in the ValueChanged handler.  Also, Call Update() after scrolling
17100         in one direction so the other XplatX11.ScrollWindow call has the
17101         proper stuff in the proper places.
17102         (EditCell): set is_editing to true before calling .Edit.
17103
17104         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
17105         don't bother comparing first.
17106         (OnKeyPress): call grid.ColumnStartedEditing before calling
17107         base.OnKeyPress.  this will set is_changing and invalidate the row
17108         header if necessary.
17109         (ProcessKeyMessage): for WM_CHAR messages, call
17110         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
17111         and WM_KEYDOWN.
17112         
17113         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
17114         it's done in the DataGrid.
17115         (NextState): call grid.ColumnStartedEditing, which takes care of
17116         invalidating the row header (and setting is_changing).
17117
17118         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
17119         here.  it's done in the DataGrid.
17120
17121 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17122
17123         * Control.cs: allow changing the cursor when the mouse position is
17124         out of bounds but Capture is set.
17125         * LinkLabel.cs: handle the case when the mouse button is pressed on the
17126         linklabel but released somewhere else.
17127
17128 2006-05-25  Jackson Harper  <jackson@ximian.com>
17129
17130         * TreeView.cs: When we get focus if there is no selected node make
17131         it the top node
17132         - Remove some uneeded setup code from Draw.
17133         * TreeNodeCollection.cs: If the tree doesn't have a top node when
17134         a new node is inserted make the new node the top.
17135         * XplatUIX11.cs:
17136         * Timer.cs: Use Utc time so that no local time zone stuff needs to
17137         be used (should be faster).
17138         
17139 2006-05-25  Chris Toshok  <toshok@ximian.com>
17140
17141         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
17142         problem with the last commit.
17143
17144 2006-05-25  Chris Toshok  <toshok@ximian.com>
17145
17146         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
17147         need the invalidate call here, while scrolling right-to-left via
17148         the left arrow key (i.e. moving the editing cell while scrolling).
17149
17150         * DataGrid.cs (.ctor): remove the initialization of
17151         ctrl_pressed/shift_pressed.  We no longer track them using key
17152         up/down handlers, but by using Control.ModifierKeys.  Also, switch
17153         to using ValueChanged handlers on the scrollbars instead of
17154         Scrolled event handlers.  This simplifies a bunch of the scrolling
17155         code.
17156         (GridHValueChanged): rename from GridHScrolled, and change it to
17157         work with the new event args.
17158         (GridVValueChanged): same.
17159         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
17160         (OnMouseWheel): actually scroll the datagrid.  Don't change the
17161         selected cell.
17162         (ProcessGridKey): correct all the keyboard navigation stuff I
17163         could find.  Ctrl up/down/left/right/home/end work now.
17164         (EnsureCellVisibility): correct method name spelling.  Also,
17165         simplify this a touch by not explicitly calling the
17166         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
17167         scrollbar value.
17168         (OnKeyUpDG): no need for this method now.
17169         
17170 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17171
17172         * LinkLabel.cs: display the OverrideCursor when hovering the label.
17173         Fixes bug #78392.
17174
17175 2006-05-25  Chris Toshok  <toshok@ximian.com>
17176
17177         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
17178         r61019.
17179
17180 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17181
17182         * Application.cs: Moved setting of is_modal and closing to before
17183           we create the control, to allow the event handlers called as a
17184           result of creation affect closing. Also removed Gonzalo's previous
17185           change to setting DialogResult, the behaviour has been moved to 
17186           Form.ShowDialog()
17187         * Form.cs: 
17188           - ShowDialog(): Removed explicit creation of the form, let RunLoop
17189             handle it instead
17190           - ShowDialog(): If no dialog result is set, we need to return Cancel
17191           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
17192             the close is cancelled
17193
17194 2006-05-25  Jackson Harper  <jackson@ximian.com>
17195
17196         * StatusBar.cs: We only need to update the sizes of the other
17197         panels when we have auto size contents.  Also we are only updating
17198         the contents of the panel, not the borders, so compensate for the
17199         border width (TODO: get this width from the theme somehow).
17200         * TreeView.cs: Scrollable is true by default
17201         - Use invalidate instead of refresh where needed
17202         - Factor the scrollable value into scrollbar updating
17203         - Update the scrollbars if the Scrollable property is altered
17204         - Update the selected node if its ImageIndex is changed
17205         - Handle null nodes in UpdateNode (mainly so we don't have to
17206         check if selected is null when updating it
17207         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
17208         are factored into the visible count
17209         - Use VisibleCount for clarity in the code
17210         - When the font is changed we need to recurse through all the
17211         nodes and invalidate their sizes
17212         
17213 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17214
17215         * Application.cs: set the DialogResult to fixed when the main form is
17216         hidden or destroyed while being modal.
17217
17218 2006-05-25  Miguel de Icaza  <miguel@novell.com>
17219
17220         * Theme.cs: Use Tangoified messagebox icons. 
17221
17222         (GetSizedResourceImage): Also cope with width = 0 and do not
17223         trigger a warning in that case (0 means "give me your icon from
17224         the resouce, no special size needed).
17225
17226 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
17227
17228         * Application.cs: Leave runloop if the the main modal form is 
17229           hidden (fixes #78484)
17230
17231 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
17232
17233         * BindingContext.cs : reject null datasource in Contains() and
17234           Item[].
17235         * CurrencyManager.cs : check data_member validity when data_source
17236           is dataset. When it is late binding, the initial position is -1.
17237
17238 2006-05-24  Jackson Harper  <jackson@ximian.com>
17239
17240         * TreeNodeCollection.cs: Dont't recalculate the visible order on
17241         inserted nodes that aren't visible.  This changes the
17242         max_visible_order which confuses scrollbar settings.
17243         - Use the enumerator to get the prev node instead of duplicating
17244         code.
17245         * TreeView.cs: Use new method for setting scrollbar values
17246         - Don't set the bounds every time the scrollbar is updated
17247         - When updating below the root node use an invalidate instead of a
17248         refresh to prevent the child controls (scrollbars) from being
17249         refreshed. (UpdateBelow still needs to be reworked anyways).
17250         - Reenable SetBottom now that visible orders are set correctly,
17251         added some debug code incase we ever get bad values there again.
17252         - Set the scrollbar max to 2 less then the max value, this
17253         compensates for the max value being one above the node count, and
17254         for scrollbars adding one extra "notch".
17255         - When drawing image nodes if there is an imagelist we draw the
17256         first image in the list if the supplied image index is out of the
17257         image list's bounds.
17258         
17259 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17260
17261         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
17262           we receive a size change from the WM (Fixes #78503)
17263
17264 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
17265
17266         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
17267           rectangle (Fixes #78501)
17268
17269 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
17270
17271         * ButtonBase.cs: 
17272           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
17273             as a bitfield.
17274           - Fixed MouseMove to no longer switch pressed state unless the left
17275             mouse button is pressed. Atsushi provided the original patch (#78485)
17276           
17277 2006-05-24  Jackson Harper  <jackson@ximian.com>
17278
17279         * ScrollBar.cs: New internal methods that allow us to change a
17280         couple values on the scrollbar (the most common case is maximum
17281         and large change) without getting multiple invalidates.
17282
17283 2006-05-24  Chris Toshok  <toshok@ximian.com>
17284
17285         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
17286         (Edit): save off the original state in oldState, and set
17287         grid.is_editing to true.
17288         (OnKeyDown): abort editing if escape is pressed.  also, call
17289         NextState if space is pressed.
17290         (OnMouseDown): call NextState.
17291         (NextState): factor out shared code from OnKeyDown and OnMouseDown
17292         here.  Also, only invalidate the row header once (on the initial
17293         is_changing switch) to save on redraws.
17294
17295 2006-05-24  Chris Toshok  <toshok@ximian.com>
17296
17297         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
17298         if the value in the cell is different than it was before.  This
17299         keeps us from triggering a layout when we move around a datarid
17300         with a highlighted cell.
17301         (Edit): suspend layout when creating/positining the text box, and
17302         resume passing false so we don't ever actually re-layout.
17303         (ReleaseHostedControl): same.
17304         (EnsureTextBox): reformat slightly, and set WordWrap to false.
17305
17306         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
17307         control-key sequences should go to the datagrid - remove that
17308         lock.  Also, modify the conditions under which we move between
17309         cells when moving the cursor within a cell, and remove the "this"
17310         and "base" from field accesses.  We weren't even consistent, given
17311         they all were in the base class.
17312
17313 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
17314
17315         * Binding.cs : (.ctor)
17316           An obvious NRE fix for BindingTest.CtorNullTest().
17317
17318 2006-05-23  Chris Toshok  <toshok@ximian.com>
17319
17320         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
17321         them between lines.  This fixes some quirks editing cells in the
17322         datagrid.
17323
17324 2006-05-23  Jackson Harper  <jackson@ximian.com>
17325
17326         * TreeView.cs: Use begin/end update when doing expand/collapse all
17327         so that we don't get flicker on the scrollbar.
17328
17329 2006-05-23  Jackson Harper  <jackson@ximian.com>
17330
17331         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
17332         treenode calculations to be independant of the painting code. To
17333         do this nodes track a visible order which is calculated by the
17334         treeview.
17335         - Call new methods for expanding/collapsing nodes.  These methods
17336         use scrollwindow so we don't have to update everything below the
17337         node.
17338         * TreeView.cs: Refactored drawing and scrolling code.  We don't
17339         need to update nodes when drawing anymore or calculate scrollbar
17340         stuff.
17341         - Added new methods for expanding/collapsing nodes. These methods
17342         use ScrollWindow so as to not have to redraw all the nodes below.
17343         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
17344         we add/remove nodes or sort.
17345         - Handle removing the selected and the top node properly.
17346
17347 2006-05-23  Chris Toshok  <toshok@ximian.com>
17348
17349         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
17350         maybe this should actually happen in the datagrid code?
17351         (EndEdit): no need to invalidate anything, given that
17352         ReleaseHostedControl causes the datagrid to relayout, which
17353         invalidates everything anyway.
17354
17355         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
17356         in SetCurrentCell).
17357         (set_SelectionBackColor): call InvalidateSelection instead of
17358         Refresh.
17359         (set_SelectionForeColor): same.
17360         (BeginEdit): Flesh this out a bit.
17361         (CancelEditing): only do any of this if we're editing/adding.
17362         (EndEdit): same.
17363         (OnMouseDown): there's no need to cancel editing here, it's done
17364         in SetCurrentCell.
17365         (SetCurrentCell): only invalidate the current row header if it's a
17366         different row than the new one.
17367         (ShiftSelection): fix this to work like MS does.
17368         (ResetSelection): factor out the invalidation of selected_rows to
17369         InvalidateSelection.
17370         (SetDataSource): cancel any editing that's going on.
17371
17372         * DataGridColumnStyle.cs
17373         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
17374         call the non-interface version.
17375
17376         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
17377         header rectangle with the clip rectangle so we don't redraw the
17378         entire header for just a small area.  Gets rid of the last flicker
17379         when horizontally scrolling.
17380         (DataGridPaintRow): same.
17381
17382 2006-05-23  Mike Kestner  <mkestner@novell.com>
17383
17384         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
17385         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
17386         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
17387         Critical bug report.
17388
17389 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17390
17391         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
17392           and this fixes #78493
17393
17394 2006-05-23  Miguel de Icaza  <miguel@novell.com>
17395
17396         * Theme.cs (GetSizedResourceImage): Scale images if the proper
17397         size is not found.  
17398         
17399         * FileDialog.cs: Do not change the background for the side bar as
17400         it wont work nicely with the theme, and also reduces the artifacts
17401         in rendering the icons (which I want to fix too).
17402
17403         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
17404         resources, not resgen resources. 
17405
17406         (PlatformDefaultHandler): Pull images using the new API.
17407
17408 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
17409
17410         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
17411           a reference to the hwnd and will not remove it unless there are
17412           no pending exposures (fixes #78341)
17413         * XplatUI.cs: Improved debug
17414
17415 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
17416
17417         * MenuAPI.cs : don't handle OnClick event when it was not the left
17418           button. Fixed bug #78487.
17419
17420 2006-05-23  Mike Kestner  <mkestner@novell.com>
17421
17422         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
17423         prefer submenus to the top menu for item lookup, to avoid popping down
17424         top-row items.
17425
17426 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
17427
17428         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
17429           Graphics.FillRectangle as the visual results are really bad (even
17430           on win). We now draw perfect arrows (and perfect shadows when the
17431           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
17432           Pen.DashPattern to draw the dots of each line.
17433
17434 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
17435
17436         * FileDialog.cs: Update the filename combobox when navigating through
17437           the ListView with the cursor keys. Fixes part 7 of bug #78446.
17438
17439 2006-05-22  Mike Kestner  <mkestner@novell.com>
17440
17441         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
17442         Fixes #78463.
17443
17444 2006-05-22  Mike Kestner  <mkestner@novell.com>
17445
17446         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
17447         requests. Fix a misspelled parameter and a copy paste exception error
17448         in Select.
17449
17450 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
17451
17452         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
17453           to get the same width/height (5/13) on X11 as the default font has on
17454           win32. This means that our DefaultFont emSize is smaller than the 
17455           the MS SWF equivalent (even thought the width/height stays the same)
17456
17457 2006-05-20  Jackson Harper  <jackson@ximian.com>
17458
17459         * MdiClient.cs:
17460         * MdiWindowManager.cs:
17461         * InternalWindowManager.cs: Make sure to use the border width from
17462         the theme.
17463
17464 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
17465
17466         * PrintDialog.cs: Implements printer details
17467
17468 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
17469
17470         * FileDialog.cs: Added focus handling for PopupButtonPanel.
17471           Fixes part 1 and 2 of bug #78446
17472
17473 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
17474
17475         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
17476           instead of sticking to the first ever calculated value
17477
17478 2006-05-19  Mike Kestner  <mkestner@novell.com>
17479
17480         * ComboBox.cs: fix mouse motion selection to use MousePosition and
17481         PointToClient, since Capture is set. Fixes #78344.
17482
17483 2006-05-19  Mike Kestner  <mkestner@novell.com>
17484
17485         * ListView.cs: match MS behavior in Details view where items are not
17486         drawn if Columns.Count == 0. 
17487         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
17488         Use a separate pen to draw the check, since changing the width affects
17489         the box as well.  Fixes #78454.
17490
17491 2006-05-18  Miguel de Icaza  <miguel@novell.com>
17492
17493         * ListView.cs: ArgumentOutOfRangeException, single versions of the
17494         exception should throw the name of the invalid argument.
17495
17496         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
17497         there are no files listed. 
17498
17499 2006-05-18  Jackson Harper  <jackson@ximian.com>
17500
17501         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
17502         up.
17503
17504 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17505
17506         * Control.cs: Brought back our old UpdateZOrder method as a private
17507           function and switched our calls from UpdateZOrder to the new one.
17508           This fixes the Paint.Net canvas disappearing bug.
17509
17510 2006-05-18  Jackson Harper  <jackson@ximian.com>
17511
17512         * Theme.cs:
17513         * ThemeWin32Classic.cs:
17514         * InternalWindowManager.cs: Move the drawing into the theme,
17515         expose everything the theme should need from the window manager.
17516
17517 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17518
17519         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
17520           from the call to NativeWindow to avoid walking up the parent chain
17521           further than needed (speeds up setting cursors and avoids setting
17522           the wrong cursor if a parent has another cursor defined)
17523         * Cursor.cs: When loading an icon as cursor, MS uses the center of
17524           the icon as hotspot, not what's contained as hotspot in the icon
17525           file. This fixes the perceived drawing offset seen with Paint.Net
17526         
17527 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
17528
17529         * XplatUIX11.cs: 
17530           - Store the calculated rectangle in Hwnd object and use it when 
17531             setting the client size
17532           - Force Toolwindows to always be type Dock, to ensure they're on top
17533
17534 2006-05-18  Mike Kestner  <mkestner@novell.com>
17535
17536         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
17537         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
17538         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
17539         Substantial refactoring to remove confusing nested classes. Coding
17540         standard and Get+Set->property refactorings.  Shift to index based
17541         highlighting in ComboListBox instead of constantly using IndexOf and
17542         Items[]. Add invalidations on resize for DropDownList to fix ugliness
17543         in FileDialog growth.  Draw borders manually since Simple mode needs
17544         to look like two independent controls.  Make listbox border
17545         conditional to DropDownStyle.  Improved OwnerDraw support.
17546
17547 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
17548
17549         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
17550         Don't set the disposed graphics to null, so we can throw the "right"
17551         exception if the graphics is reused later (added a flag to avoid 
17552         double disposing). Some behaviours are different under 2.0 and are
17553         filled under bug #78448.
17554
17555 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
17556
17557         * Control.cs: When double-buffering is enabled, we need to reset
17558           our graphics context between paint calls. Otherwise, any 
17559           transformations and other alterations on the context will 
17560           become cumulative (#77734)
17561
17562 2006-05-18  Mike Kestner  <mkestner@novell.com>
17563
17564         * ListView.cs: do focused item selection like MS on clicks. 
17565         Rework focus handling for ItemControl so LostFocus invalidates as
17566         well.
17567         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
17568         the ListView ItemControl has focus.
17569
17570 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
17571
17572         * XplatUIX11.cs: If client_window ends up being width or height zero
17573           due to border settings, move it off window inside whole_window (#78433)
17574
17575 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17576
17577         * Mime.cs: Shrink the mime file cache correctly.
17578
17579 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
17580
17581         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
17582
17583 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17584
17585         * XplatUIX11.cs (AddExpose): More sanity checks
17586
17587 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17588
17589         * XplatUIX11.cs:
17590           - AddExpose: Don't add expose ranges outside the size of our
17591             window
17592           - Cast opacity values to Int32 to avoid crashes with certain
17593             values
17594           - Added disabled code paths that protect against illegal cross-
17595             thread painting (Developers.exe)
17596
17597 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17598
17599         * ProgressBar.cs: Invalidate the control when it's resized
17600           since block size is based on control size. (#78388)
17601
17602 2006-05-16  Miguel de Icaza  <miguel@novell.com>
17603
17604         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
17605         of setting the incoming argument to the "reset" value, we set the
17606         this.datamember to string.empty (before we were invalidating the
17607         incoming data).   
17608
17609         Fixes 78420
17610
17611 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17612
17613         * Form.cs: Only apply transparency settings after the form
17614           is created. (Fixes #77800)
17615
17616 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
17617
17618         * ApplicationContext.cs: Grab the HandleDestroyed event so
17619           we know when to fire OnMainFormClosed 
17620
17621 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17622
17623         * Application.cs: Introduced sub-class to allow tracking of
17624           threads and centralized triggering of the event mess for
17625           ThreadExit, AppExit, etc..  (#76156)
17626
17627 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
17628
17629         * MimeIcon.cs:
17630           - Do not return a null icon index value for a mime subclass.
17631             Instead try the main mime type class too.
17632           - Seems that some newer distributions don't have a link to some
17633             gnome default icons anymore. So check the default gnome dir too.
17634           
17635
17636 2006-05-16  Jackson Harper  <jackson@ximian.com>
17637
17638         * MdiClient.cs: Don't paint the parent background image if we have
17639         our own background image.
17640
17641 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
17642
17643         * Control.cs:
17644           - PerformLayout: Do not shrink space filled by DockStyle.Fill
17645             controls, all filled controls are supposed to overlap (#78080)
17646           - UpdateZOrder is supposed to update the control's z-order in the
17647             parent's z-order chain. Fixed to behave like that
17648           - BringToFront: Removed obsolete code
17649           - SendToBack: Simplyfied
17650           - SetChildIndex: Trigger layout calculations when Z-order changes
17651             since layout is done by z-order
17652
17653 2006-05-16  Chris Toshok  <toshok@ximian.com>
17654
17655         [ fixes bug #78410 ]
17656         * DataGrid.cs (set_AlternatingBackColor): use
17657         grid_drawing.InvalidateCells instead of Refresh().
17658         (set_BackColor): call grid_drawing.InvalidateCells.
17659         (set_BackgroundColor): use Invalidate instead of Refresh.
17660
17661         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
17662         invalidate the cell area.
17663
17664 2006-05-15  Chris Toshok  <toshok@ximian.com>
17665
17666         [ fixes bug #78011 ]
17667         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
17668         on to DataGridPaintRow.
17669         (DataGridPaintRow): take a clip argument, and only draw the cells
17670         which intersect it.  same with the not_usedarea.
17671
17672         * Theme.cs (DataGridPaintRow) add @clip parameter.
17673
17674         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
17675         XplatUI.ScrollWindow.
17676         (ScrollToRow): same.
17677
17678         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
17679         with last column which was causing a gray swath to appear with the
17680         XplatUI.ScrollWindow code.
17681
17682 2006-05-15  Chris Toshok  <toshok@ximian.com>
17683
17684         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
17685         use XplatUI.ScrollWindow.
17686         (VerticalScrollEvent): use XplatUI.ScrollWindow.
17687
17688 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
17689
17690         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
17691
17692 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17693
17694         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
17695           file since there are no equivalent X11 cursors
17696
17697 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17698
17699         * MonthCalendar.cs : DateTimePicker should reflect selected date
17700           on mouse*up*, not mouse*down*. Fixed originally reported part of
17701           bug #76474.
17702
17703 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
17704
17705         * TabControl.cs : When argument index is equal or more than tab
17706           count, just ignore. Fixed bug #78395.
17707
17708 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
17709
17710         * Control.cs: Dispose all child controls when control is diposed (#78394)
17711
17712 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17713
17714         * ColorDialog.cs: Finally it is possible to select the color with
17715           the text boxes
17716
17717 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17718
17719         * PrintDialog.cs: Fix typo
17720
17721 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
17722
17723         * PrintDialog.cs: PrintDialog is not resizable
17724         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
17725           color. Made some ToolBar drawing methods protected virtual.
17726
17727 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
17728
17729         * PrintDialog.cs: Implementation of the PrintDialog
17730
17731 2006-05-12  Chris Toshok  <toshok@ximian.com>
17732
17733         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
17734         thumb, instead use MoveThumb.  This has the side effect of making
17735         most of the other thumb moving machinery use MoveThumb as well.
17736         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
17737         need to actually invalidate the rectangle where the new thumb will
17738         go.
17739         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
17740         We force an Update() after, so it's not as fast as it could be,
17741         but at least there's zero flicker and no droppings.
17742         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
17743         (UpdateThumbPos): add another argument (dirty), which says whether
17744         or not to calculate/add dirty regions which we later invalidate.
17745         For cases where we know we're going to use MoveThumb, we pass
17746         false for this.  Otherwise, pass true.
17747
17748 2006-05-12  Jackson Harper  <jackson@ximian.com>
17749
17750         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
17751         the status bar.
17752         
17753 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
17754
17755         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
17756           and GetClipRegion methods and UserClipWontExposeParent property.
17757         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
17758           overriding UserClipWontExposeParent property, setting to false, since
17759           Win32 handles the required expose messages to draw our clipped parent
17760           areas internally
17761         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
17762           PaintEventStart to set the user clip region if set.
17763         * Control.cs: 
17764           - Now internally tracking the Region for the control since we need to
17765             store it if the handle is not yet created and only set it when it
17766             becomes created. Before setting the region forced handle creation
17767           - Added code to draw the parents underneath a user-clipped region
17768         * Hwnd.cs: Added UserClip property
17769
17770 2006-05-12  Chris Toshok  <toshok@ximian.com>
17771
17772         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
17773         (set_Maximum): same.
17774         (set_Minimum): same.
17775         (set_SmallChange): same.
17776         (OnMouseUpSB): remove the call to refresh when releasing the
17777         thumb.  We shouldn't need it.
17778         
17779 2006-05-12  Miguel de Icaza  <miguel@novell.com>
17780
17781         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
17782         AutoSize set to None, we do not need to relayout everything, we
17783         just need to invalidate the current region.
17784
17785         (Draw): Do not draw the entire ClientArea, just redraw the
17786         clip area being passed.
17787
17788         * MdiClient.cs: Make MdiClient constructor with the Form argument
17789         internal. 
17790
17791 2006-05-12  Jackson Harper  <jackson@ximian.com>
17792
17793         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
17794         parents background image,  but strangely not their own.
17795         - (DrawStatusBarPanel): Take into account horizontal alignment
17796         when drawing the strings and icons.
17797
17798 2006-05-12  Mike Kestner  <mkestner@novell.com>
17799
17800         * ListBox.cs: avoid invalidations for focus when the collection is
17801         empty. 
17802
17803 2006-05-12  Chris Toshok  <toshok@ximian.com>
17804
17805         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
17806         invalidate the entire thumb area.  Call InvalidateDirty which
17807         limits the redraw to the thumb itself and surrounding pixels.
17808
17809         * XplatUIX11.cs (ScrollWindow): optimize copying.
17810         
17811 2006-05-12  Chris Toshok  <toshok@ximian.com>
17812
17813         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
17814         Figure out the positioning/layout in a single pass instead of
17815         multiple recursive invocations.  Speeds up the initial display of
17816         the data grid.  Also, make many things private that were
17817         originally public but unused outside this class.
17818
17819 2006-05-11  Jackson Harper  <jackson@ximian.com>
17820
17821         * MdiClient.cs: Improved layout code.
17822
17823 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
17824
17825         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
17826           not SelectedObject.
17827
17828 2006-05-11  Chris Toshok  <toshok@ximian.com>
17829
17830         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
17831         union of that will always be {0,0,width,height}.
17832
17833 2006-05-11  Jackson Harper  <jackson@ximian.com>
17834
17835         * Form.cs: Match MS's DefaultSize for forms (they must have
17836         changed the size in sp2).
17837
17838 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17839
17840         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
17841
17842 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
17843
17844         * TextControl.cs : Fixed bug #78109. This incorrect position
17845           comparison caused crash on automatic line split.
17846         * TextBoxBase.cs : reduce duplicate code.
17847
17848 2006-05-10  Jackson Harper  <jackson@ximian.com>
17849
17850         * MdiClient.cs: Active form is only sent to the back when using
17851         the Next form functionality, when a form is clicked the current
17852         active shouldn't be sent to the back.
17853         - Layout the mdi windows when the container is first made visible.
17854         * Form.cs: Give the MdiClient a ref to the containing form when we
17855         create it.
17856         
17857 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17858
17859         * LinkLabel.cs : link_font could be uninitialized, so populate one
17860           before actual use. Fixed bug #78340.
17861
17862 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
17863
17864         * XplatUIX11.cs : clipboard format native value is IntPtr.
17865           Fixed bug #78283.
17866
17867 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17868
17869         * Control.cs: 
17870           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
17871             which is passed up the parent chain by DefWndProc
17872           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
17873             to DefWndProc (#77956)
17874         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
17875
17876 2006-05-10  Jackson Harper  <jackson@ximian.com>
17877
17878         * MdiClient.cs: We need to remove the controls from the mdi
17879         collection, when we close the window.
17880         * MdiWindowManager.cs: Special handling of closing mdi windows.
17881         * InternalWindowManager.cs: Make the close method virtual so the
17882         mdi window manager can handle it specially.
17883
17884 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
17885
17886         * DataGrid.cs:
17887           - Recalculate grid when the data source has changed
17888           - Matches styles provided by user from all data sources types
17889         * DataGridTableStyle.cs: For columns that provided by the user set the
17890         with the preferred value is there was unassigned.
17891         * CurrencyManager.cs: throw OnItemChanged event
17892
17893 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
17894
17895         * PictureBox.cs: Don't animate until handle is created. Start animation
17896           when handle is created.
17897
17898 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17899
17900         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
17901           current codebase.
17902         * XEventQueue.cs: We don't need to provide the extra info
17903
17904 2006-05-10  Jackson Harper  <jackson@ximian.com>
17905
17906         * MdiClient.cs: If the mdi clients parent form has a background
17907         image set, we draw that background image for the mdi area's
17908         background.
17909
17910 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
17911
17912         * TextBoxBase.cs: Set IBeam cursor (#78347)
17913
17914 2006-05-10  Mike Kestner  <mkestner@novell.com>
17915
17916         * ToolBar.cs: fix some text padding issues with ButtonSize
17917         calculation. Update the default size to match MS documentation.
17918         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
17919         button size. Fixes #78296.
17920
17921 2006-05-10  Mike Kestner  <mkestner@novell.com>
17922
17923         * ListBox.cs: use is_visible for scrollbar positioning in case the
17924         control isn't on screen yet.  Fix off by one with Right vs Width
17925         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
17926         
17927 2006-05-10  Jackson Harper  <jackson@ximian.com>
17928
17929         * X11Dnd.cs: Drop to a control with another control on top of it.
17930         * ToolBar.cs: Work on a copy of the buttons list, so that it can
17931         be modified in click handlers. TODO: Look for similar problems in
17932         other controls.
17933
17934 2006-05-09  Jackson Harper  <jackson@ximian.com>
17935
17936         * Form.cs: Window managers need the old window state when setting
17937         window state now.
17938         * InternalWindowManager.cs: Allow the base mdi window manager to
17939         handle more of the MDI only stuff (like maximize buttons).
17940         * MdiWindowManager.cs: Fix some snafus in changing the window
17941         state.  Add all the menu functionality, for both popup and
17942         maximized menus.
17943         * MdiClient.cs: When a new form is selected the currently
17944         activated form is sent to the back, this matches MS.
17945         - Implement a new method to activate the next mdi child window.
17946
17947 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
17948
17949         * Control.cs: 
17950           - Added new InternalCapture method to allow controls to prevent
17951             the capture behaviour on the click handlers
17952           - Switched to use InternalCapture
17953         * ComboBox.cs:
17954           - Using InternalCapture to prevent mouse captures from being released
17955             on mouse button release (Fixes #78100)
17956         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
17957           returns Form borders if a caption is present. (Fixes #78310)
17958
17959 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
17960
17961         * TreeNode.cs: Changed serialization .ctor to not require every field
17962           to be present. (#78265)
17963         * OwnerDrawPropertyBag.cs: Added serialization .ctor
17964
17965 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
17966
17967         * MimeIcon.cs: for is faster than foreach for strings.
17968
17969 2006-05-05  Mike Kestner  <mkestner@novell.com>
17970
17971         * CheckedListBox.cs: update check handling code to not use selected.
17972         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
17973         behavior for visual feedback, motion response, shift/ctrl handling,
17974         and properly deal with all 4 selection modes. Updates to bounds
17975         handling logic.  Add scroll wheel support. [Fixes #77842]
17976
17977 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
17978
17979         * ListView.cs:
17980           - Moved adding of Implicit controls into .ctor. That way, subsequent
17981             creation of the controls will not cause them to think they are 
17982             toplevel windows (fixes #78200 header problem)
17983           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
17984           - Switched visibility setting of header control to use internal field
17985             to avoid triggering handle creation
17986           - Now checking if handle is created before causing a refresh when items
17987             are added (This makes us now match handle creation time with MS)
17988         * Splitter.cs: Removed loading of private splitter cursor, switched to
17989           Cursors version now that that is loading the right ones
17990         * Cursors.cs: Load proper splitter cursors from resources
17991         * Cursor.cs: Added second method of loading resource cursors for the 
17992           VS.Net users amongst us
17993
17994 2006-05-05  Mike Kestner  <mkestner@novell.com>
17995
17996         * ListView.cs: give header_control a minimum size based on the
17997         ListView size.
17998
17999 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
18000
18001         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
18002           window seems to do that with metacity, so set that type. (#78120)
18003
18004 2006-05-05  Mike Kestner  <mkestner@novell.com>
18005
18006         * ListViewItem.cs: fix Details mode checkbox layout bug.
18007         * ThemeWin32Classic.cs: draw a ListView column header for unused space
18008         at the end of the header, if it exists. [Fixes for #78200]
18009
18010 2006-05-04  Jackson Harper  <jackson@ximian.com>
18011
18012         * MdiClient.cs: Add a helper property to get the container form.
18013         * MdiWindowManager.cs: We have to make sure to use the menu origin
18014         when drawing the icons and buttons, this fixes maximized window
18015         icons/buttons on win32.
18016         * InternalWindowManager.cs: Reset the restore captions when a
18017         window goes from Maximized to Minimized and vice versa. Move the
18018         DrawMaximizedButtons into the MdiWindowManager source, tool
18019         windows can't be maximized. NOTE: This could use a little
18020         refactoring if time ever permits.
18021         
18022 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
18023
18024         * TextBox.cs: Add MWFCategoryAttributes
18025         * TextBoxBase.cs: Add MWFCategoryAttributes
18026         * Form.cs: Add MWFCategoryAttributes
18027
18028 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
18029
18030         * Control.cs: Add MWFCategoryAttributes
18031         * ScrollableControl.cs: Add MWFCategoryAttributes
18032
18033 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
18034
18035         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
18036           Divider is true. Fix a little glitch in PropertyToolBar
18037           drawing code
18038
18039 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
18040
18041         * Control.cs:
18042           - Dispose: Call base.Dispose, this causes the disposed event
18043             to be fired (and probably other, more important stuff)
18044           - SetVisibleCore: Set is_visible to true after creating the
18045             window so that the window still gets created invisible (if
18046             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
18047             to generate a WM_ACTIVE message
18048         * Form.cs: Call Dispose when we want to destroy the window, instead of
18049           just destroying the handle (Dispose will do that for us)
18050         * XplatUIX11.cs:
18051           - RootWindow also needs a queue, so we can properly process the
18052             property change events from RootWindow (like Activate)
18053           - Generatic synthetic WM_ACTIVE message when the active window is
18054             being destroyed
18055
18056 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18057
18058         * LinkLabel.cs: Trigger a recalc of our label dimensions when
18059           bounds are changed
18060
18061 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
18062
18063         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
18064           for determining width and height (image might not be assigned if
18065           we're drawing an imagelist)
18066
18067 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
18068
18069         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
18070         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
18071           height from system
18072         * Theme.cs: No longer returns hardcoded menu height, instead calls
18073           new driver method
18074         * Form.cs (OnLoad): Scaling happens before triggering Load events 
18075           on MS (# 78257)
18076
18077 2006-05-01  Mike Kestner  <mkestner@novell.com>
18078
18079         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
18080
18081 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
18082
18083         * TextBoxBase.cs: Removed Fixme
18084         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
18085
18086 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
18087
18088         * XplatUIX11.cs:
18089           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
18090             the rectangle relative to the parent, considering borders. We
18091             don't really want that.
18092           - ScrollWindow: Fixed warning to be more understandable
18093         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
18094           scrollbars and scroll only the visible area
18095         * RichTextBox.cs: Removed debug output
18096
18097 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18098
18099         * NumericUpDown.cs (Text): Just use base
18100         * UpDownBase.cs: Ensure txtView is created before using it
18101
18102 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18103
18104         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
18105           casting to IntPtr to avoid 64bit overflow errors
18106
18107 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18108
18109         * Control.cs:
18110           - AllowDrop: Don't force handle creation.
18111           - CreateHandle: Added call to tell driver if we're allowed to drop
18112
18113 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18114
18115         * FileDialog.cs: Remember the last directory not only for the
18116           current instance but also for new FileDialog instances.
18117
18118 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
18119         
18120         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
18121           broke sending async messages
18122
18123 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
18124
18125         * XplatUIX11.cs:
18126           - ScrollWindow: Fixed method. We finally generate expose events again
18127             for scrolled areas. This was causing 'garbage' when scrolling
18128             textbox and other controls that used ScrollWindow
18129           - Switched from using the regular queue for paint events to the MS 
18130             model of 'generating' paint events when the queue is empty.
18131             We use the new XQueueEvent.Paint subclass to store which windows
18132             need painting.
18133           - AddExpose now takes the x/y/width/height of the exposed area
18134             and inserts the window into the paint queue if not already there
18135           - InvalidateWholeWindow: Switched to use new AddExpose method
18136           - UpdateMessageQueue: Added which queue to monitor for paint events
18137           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
18138             the unlikely case nothing above handles it. We reset the expose
18139             pending states to get them off the queue.
18140           - GetMessage: Now pulls a paint event if no other events are in the
18141             queue
18142           - Invalidate: Switched to new AddExpose method
18143           - PeekMessage: Updated to understand pending paint events
18144           - UpdateWindow: Fixed logic bug. We were only updating if the window
18145             didn't need updating. Also switched to sending WM_PAINT directly,
18146             like MS does.
18147         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
18148           and random access Remove(). The random access is needed to handle
18149           UpdateWindow() where a WM_PAINT is sent directly without accessing
18150           the queue.
18151         * ScrollBar.cs: Added Update() calls to cause immediate updates to
18152           allow for better feedback when scrolling. Scrollbars are small and
18153           the immediate update should make it 'feel' more responsive without
18154           slowing things down. ScrollBar still needs it's invaliate logic
18155           updated to not always invalidate the whole bar on certain changes.
18156
18157 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18158
18159         * Control.cs:
18160         (BackColor): if the control does not support a transparent background,
18161         return the default backcolor when the parent backcolor is transparent.
18162
18163 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
18164
18165         * Application.cs: Updated to new StartLoop/GetMessage API
18166         * RichTextBox.cs: Provide some output on RTF parsing errors
18167         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
18168           new queue_id argument to GetMessage and PeekMessage to allow faster
18169           handling of per-thread queues in drivers.
18170         * Hwnd.cs: Added Queue tracking and property
18171         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
18172         * XEventQueue.cs: Added thread trackingA
18173         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
18174         * XplatUIX11.cs:
18175           - Implemented new per-thread queue
18176           - GetMessage: Fixed return/break behaviour on several cases. We were
18177             returning stale messages in some cases, instead of just processing
18178             the next message
18179
18180 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18181
18182         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
18183
18184 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
18185
18186         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
18187           fixed off-by-one comparisons between Width/Height and Right/Bottom.
18188
18189 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
18190
18191         * PropertyGridView.cs: Fix drop down width.
18192
18193 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18194
18195         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
18196           a mess in DrawToolBar, so I removed one of them.
18197
18198 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
18199
18200         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
18201           needed (clip). Otherwise we get artifacts.
18202
18203 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18204
18205         * FixedSizeTextBox.cs: Added constructor to allow specifying which
18206           dimension is fixed
18207         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
18208           and switched FixedSizeTextBox to only be fixed vertical (#78116)
18209         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
18210           if it matches the scale base font (avoids unneeded scaling)
18211
18212 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18213
18214         * X11DesktopColors.cs: One gtk_init_check should be enough
18215
18216 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
18217
18218         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
18219           match MS behaviour
18220
18221 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
18222
18223         * TextBoxBase.cs: 
18224           - Generate OnTextChanged for Backspace even if we're only deleting
18225             the current selection
18226           - When setting the Text property, only select all text if the
18227             control does not have focus when it is being set. Otherwise
18228             just place the cursor at the beginning of the control
18229
18230 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
18231
18232         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
18233           Added a little helper to draw PropertyGrid ToolBar with a different
18234           border and a different BackColor.
18235         * PropertyGrid.cs: Some background parts didn't get painted with the
18236           correct background color. Added a class that helps us to draw the
18237           correct border for PropertyGridView and a class that helps us to
18238           draw ToolBars with a different backcolor
18239         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
18240
18241 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
18242
18243         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
18244         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
18245
18246 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18247
18248         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
18249           into the palette entries. Also, since we're working on a copy
18250           we needed to copy the palette back onto the bitmap.
18251         * Cursor.cs: Same fix as XplatUIWin32.cs.
18252
18253 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
18254
18255         * ImageListStreamer.cs: Need to read the var (or we're off)
18256
18257 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
18258
18259         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
18260           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
18261           TextBoxBase.cs: Unused var fixes
18262         * AxHost.cs: Small 2.0 fix
18263         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
18264           as it seems that is what at least Metacity expects. This will make
18265           icons show up on 64bit platforms. We still have some 64bit size
18266           issues, though, since the startup app window size still won't match.
18267
18268 2006-04-25  Mike Kestner  <mkestner@novell.com>
18269
18270         * *.cs: cleanup newly reported exception var unused warnings.
18271
18272 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18273
18274         * ThemeWin32Classic.cs: Button image alignment now matches exactly
18275           ms
18276
18277 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18278
18279         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
18280           image. The image position is always the same, no matter if the
18281           button is pressed or not.
18282
18283 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
18284
18285         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
18286           selection and set the correct filename for SaveFileDialog.
18287           Patch by Emery Conrad.
18288
18289 2006-04-24  Mike Kestner  <mkestner@novell.com>
18290
18291         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
18292         check for item.X outside the ClientRect instead of item.Y. Fixes
18293         #78151.
18294
18295 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18296
18297         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
18298         trust that value blindly and do some sanity check. Fixes bug #77814.
18299
18300 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18301
18302         * ImageListStreamer.cs: save the mask as a 1bpp image.
18303
18304 2006-04-21  Mike Kestner  <mkestner@novell.com>
18305
18306         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
18307         pass Checked and Indeterminate to the Theme Engine. Improve
18308         encapsulation with ListBox.
18309         * ListBox.cs: Keep a StringFormat instead of calculating it every item
18310         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
18311         nested types.  Move all CheckState functionality to CheckedListBox.
18312         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
18313         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
18314         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
18315         single base list. Fix scrollbar sizing and placement to mirror MS.
18316         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
18317         used.
18318         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
18319         for CheckedListBox by using new DrawItemState info.  Center the
18320         checkboxes on the items. Use new StringFormat property.
18321
18322 2006-04-18  Jackson Harper  <jackson@ximian.com>
18323
18324         * Form.cs: MdiChildren don't do default locations the same way as
18325         regular forms.  This prevents a crash when trying to position the
18326         mdi windows.
18327
18328 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
18329
18330         * PropertyGridTextBox.cs: Formatting, copyright
18331         * PropertiesTab.cs: Formatting
18332         * PropertyGrid.cs: Formatting
18333         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
18334           click toggling of values
18335           
18336 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
18337
18338         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
18339         * Control.cs (.ctor): verify_thread_handle is static, don't reset
18340           every time a control is created
18341         * Application.cs: Removed obsolete EnableRTLMirroring method
18342
18343 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
18344
18345         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
18346         SelectedIndex to -1. Fixes bug #78121.
18347
18348 2006-04-17  Jackson Harper  <jackson@ximian.com>
18349
18350         * Binding.cs: Handle null values for Current and BindingContext.
18351         This occurs when binding is a little delayed.
18352         * CurrencyManager.cs: return null for Current when there are no
18353         items in the list.
18354         - Hookup to the listchanged event on the DataView and update
18355         bindings when the list is changed.  This fixes late binding of
18356         controls.
18357
18358 2006-04-17  Jackson Harper  <jackson@ximian.com>
18359
18360         * X11Dnd.cs:
18361         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
18362         Ringenbach.
18363
18364 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
18365
18366         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
18367           place
18368         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
18369           with the correct ButtonState
18370
18371 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
18372
18373         * XplatUIX11.cs: Improved distinguishing between window types to
18374           tell the WM a type closer to what the app wants (Fixes #78107)
18375
18376 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18377
18378         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
18379           GrabHandle
18380
18381 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
18382
18383         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
18384           drawing code to reflect the size grip changes
18385
18386 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18387
18388         * ImageListStreamer.cs: fix handling of the mask that follows the main
18389         bitmap when deserializing and serialize it properly. The generated mask
18390         should better be a 1bpp image, but I'll do that later.
18391
18392 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18393
18394         * FileDialog.cs: Show something in the DirComboBox on *nix if the
18395           path doesn't fit into some of our Current.Places
18396
18397 2006-04-13  Jackson Harper  <jackson@ximian.com>
18398
18399         * ComboBox.cs: Use borders instead of drawing our own decorations,
18400         try to obey correct rules for heights.
18401         * Theme.cs:
18402         * ThemeNice.cs:
18403         * ThemeClearLooks.cs:
18404         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
18405         this is now handled by borders.
18406         - Remove unused DrawListBoxDecorationSize method.
18407         
18408 2006-04-13  Mike Kestner  <mkestner@novell.com>
18409
18410         * MenuAPI.cs: null guarding for the disbled click check fixes crash
18411         reported by Alex.
18412
18413 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
18414
18415         * ThemeWin32Classic.cs: 
18416           - Fixed CPDrawStringDisabled
18417           - Corrected drawing of disabled menu items
18418           - Fixed drawing of disabled radio buttons (bug #78095)
18419           - Draw check in a disabled CheckBox with color ControlDark 
18420
18421 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18422
18423         * Form.cs: Use the provided width when calculating the menu size;
18424           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
18425           and ClientSize.Width won't be updated yet
18426         * Application.cs: Use Visible instead of Show() to make form visible,
18427           this way we create the handle later and menusize is considered
18428
18429 2006-04-12  Mike Kestner  <mkestner@novell.com>
18430
18431         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
18432         reporting.
18433
18434 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18435
18436         * TextBox.cs: Implemented context menu
18437
18438 2006-04-12  Mike Kestner  <mkestner@novell.com>
18439
18440         * ListView.cs: implement box selection. fixes #77838.
18441         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
18442
18443 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18444
18445         * XplatUIX11.cs: Added setting of window type when transient window
18446           is created (metacity would move it otherwise)
18447         * X11Structs.cs: Added WINDOW_TYPE atoms
18448         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
18449           background (the control is Opaque but still wants transparent
18450           backgrounds)
18451
18452 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18453
18454         * Control.cs: Added OnPaintBackgroundInternal to allow controls
18455           that set Opaque but don't mean it (like all ButtonBase-derived
18456           controls) to still draw their background
18457         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
18458           the background
18459
18460 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
18461
18462         * Control.cs (PaintControlBackground): Set the graphics object
18463           on our PaintEvent to null to prevent it from being disposed
18464           when the PaintEvent gets disposed
18465
18466 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
18467
18468         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
18469         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
18470
18471 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
18472
18473         * Control.cs: 
18474           - Added transparency check to BackColor property. Transparent
18475             backgrounds are only allowed if the control styles permit it
18476           - Added recursive painting of parent control background and
18477             foreground if a control with a transparent backcolor is drawn
18478             (Thanks to Tim Ringenback for providing his 'hack' as a base
18479              for this patch) Fixes #77985 and #78026.
18480           - Added Opaque style check before calling OnPaintBackground, no
18481             need to draw the background if the control is opaque
18482           - Removed ControlAccessibleObject owner variable (inherited from
18483             base, no need to define again)
18484           - Added some documentation links explaining the drawing events
18485             and styles
18486
18487 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18488
18489         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
18490           that the affected control is the located at the left border of our
18491           parent (Fixes #77936)
18492
18493 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18494
18495         * TextBoxBase.cs: When rendering disabled or readonly controls,
18496           draw the background with 'Control' instead of 'Window' color as
18497           long as the user hasn't specifically set a color
18498
18499 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
18500
18501         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
18502           since that won't be updated if the user types text (only if it's
18503           programatically set)
18504
18505 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18506
18507         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
18508           layout changes do to app-triggered resizes will have the proper
18509           display rectangle for layout
18510
18511 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
18512
18513         * ThemeWin32Classic.cs:
18514           - Make use of the SystemBrushes and SystemPens wherever possible
18515           - Corrected some highlight colors
18516           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
18517             drawing
18518         * Theme.cs: Added Empty field to CPColor struct
18519
18520 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
18521
18522         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
18523           is displayed when calculating the display rectangle. Thanks to Mike
18524           for teaching me the err of my ways.
18525
18526 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
18527
18528         * ScrollableControl.cs:
18529           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
18530             (instead of 0,0) and we now return the real width/height instead of
18531             just the clientrectangle, adjusted for padding. The rectangle is
18532             now cached and created by the new CalculateDisplayRectangle method.
18533           - Created new CalculateDisplayRectange method, which basically does
18534             what get_DisplayRectangle() did originally, but now using the 
18535             right edge instead of DisplayRectangle to determine the size of
18536             our scrollbars
18537           - get_Canvas(): Fixed it to properly calculate canvas for 
18538             right/bottom controls which seem to be placed to the right/bottom
18539             of any controls that have a fixed location
18540           - Removed TODO that's taken care of
18541           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
18542             and SetDisplayRectLocation according to new MSDN2 docs
18543           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
18544             event when that is called, this is added for compatibility
18545           - ScrollControlIntoView(): Implemented.
18546           - Switched scrollbars to be implicit, they shouldn't be selectable
18547         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
18548           call it when the active control is set/changed
18549         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
18550         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
18551           implicit_control variable (used for native Win32 message generation)
18552         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
18553           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
18554         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
18555         * XplatUIStructs.cs: Added ScrollBarCommands enum
18556
18557 2006-04-10  Jackson Harper  <jackson@ximian.com>
18558
18559         * ButtonBase.cs:
18560         * CheckedListBox.cs:
18561         * ComboBox.cs:
18562         * DataGrid.cs:
18563         * DataGridView.cs:
18564         * Form.cs:
18565         * GroupBox.cs:
18566         * ListBox.cs:
18567         * PrintPreviewControl.cs:
18568         * ProgressBar.cs:
18569         * PropertyGrid.cs:
18570         * Splitter.cs:
18571         * StatusBar.cs:
18572         * TrackBar.cs:
18573         * UpDownBase.cs: Fixup base event overrides.
18574         
18575 2006-04-06  Mike Kestner  <mkestner@novell.com>
18576
18577         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
18578         all user-initiated value changes to min <= value <= max-thumbsz+1.
18579         (set_Value): check for vert/horiz when calculating new thumb position.
18580         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
18581         like MS does.
18582         (OnMouseMoveSB): refactor the thumb dragging code and refine
18583         invalidation logic to reduce flicker.
18584         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
18585         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
18586         (UpdateThumbPosition): small code readability cleanup
18587
18588 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
18589
18590         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
18591           different
18592
18593 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18594
18595         * ThemeNice.cs: Use a better graphics effect when a button is pressed
18596
18597 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
18598
18599         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
18600         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
18601           This dramatically reduces the number of Pen.Dispose calls. 
18602           Where possible call ResPool methods only once instead of calling it
18603           over and over again (for example for the same color).
18604
18605 2006-04-06  Mike Kestner  <mkestner@novell.com>
18606
18607         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
18608         Also remove an unused private field on the collection. Fixes #77972.
18609
18610 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18611
18612         * ThemeNice.cs: Added ToolBar drawing code
18613
18614 2006-04-06  Mike Kestner  <mkestner@novell.com>
18615
18616         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
18617         I'm assuming that means we need to look up the toplevel for the
18618         provided control. Fixes the crash trace in #77911 but exposes another
18619         crash in some strange reflection usage in NDocGui.
18620
18621 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
18622
18623         * ThemeNice.cs: Gave it a little silver touch and added Images
18624           method
18625         * FontDialog.cs: FontDialog is not resizable
18626         * FileDialg.cs: Added SizeGripStyle.Show
18627
18628 2006-04-05  Jackson Harper  <jackson@ximian.com>
18629
18630         * KeyboardLayouts.cs: Remove warning.
18631
18632 2006-04-05  Jackson Harper  <jackson@ximian.com>
18633
18634         * Control.cs: Enable OnPaintInternal so we can use it for drawing
18635         all of our controls instead of Paint +=.
18636         * ListBox.cs:
18637         * ListView.cs:
18638         * MenuAPI.cs:
18639         * MessageBox.cs:
18640         * NotifyIcon.cs:
18641         * ProgressBar.cs:
18642         * ScrollBar.cs:
18643         * Splitter.cs:
18644         * StatusBar.cs:
18645         * TabControl.cs:
18646         * TextBoxBase.cs:
18647         * ToolBar.cs:
18648         * TrackBar.cs:
18649         * UpDownBase.cs:
18650         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
18651         use OnPaintInternal. Remove Width/Height and Visible checks in
18652         paint handler, this is done at a higher level now.
18653         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
18654         * PaintEventArgs.cs: Add a handled flag so controls that don't
18655         want anymore painting after OnPaintInternal can make sure OnPaint
18656         isn't called.
18657
18658 2006-04-05  Mike Kestner  <mkestner@novell.com>
18659
18660         * Form.cs: fix the menu WndProc hacks to respect the native enabled
18661         state of the form, so that we don't process events when Modal dialogs
18662         are up. Fixes #77922.
18663
18664 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
18665
18666         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
18667           checking is done.
18668
18669 2006-04-05  Mike Kestner  <mkestner@novell.com>
18670
18671         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
18672
18673 2006-04-05  Mike Kestner  <mkestner@novell.com>
18674
18675         * ListView.cs (HeaderMouseMove): null guarding for the over column
18676         when setting up the drag_to_index.  Fixes #78015.
18677
18678 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
18679
18680         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
18681           in the taskbar. Transient windows seem to accomplish that.
18682
18683 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
18684
18685         * Form.cs:
18686           - Re-enabled CreateParams.X/Y code for FormStartPosition
18687           - Added code for manual placement when creating the Control
18688           - Incomplete patch to treat MDI forms differently when
18689             setting the ClientSizeCore. (Still need to figure out handling
18690             x/y coords there)
18691         * XplatUIX11.cs:
18692           - When we're explicitly setting the X/Y position of a non-Child
18693             window, let the WM know. Metacity really wants this.
18694
18695 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18696
18697         * ThemeNice.cs: Added CPDrawButton
18698
18699 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18700
18701         * ThemeNice.cs: Changed the color for focused buttons and activated
18702           the arrows for small scroll buttons.
18703
18704 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
18705
18706         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
18707           anymore. Changed some method modifiers to protected (virtual)
18708         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
18709           changes
18710         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
18711           Updated drawing of menus, buttons and progressbars; added
18712           CPDrawBorder3D 
18713
18714 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18715
18716         * ImageListStreamer.cs: implemented serialization/deserialization
18717         of the images.
18718
18719 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
18720
18721         * ThemeWin32Classic.cs:
18722           - Removed all the DrawFrameControl stuff; CPDrawButton,
18723             CPDrawCheckBox and CPDrawRadioButton are now handled directly
18724             inside the methods
18725           - Updated and corrected the drawing code of CPDrawButton,
18726             CPDrawCheckBox and CPDrawRadioButton to better match ms
18727           - Updated theme checkbox and radiobutton code to use the CP*
18728             methods
18729
18730 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18731
18732         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
18733           bug is fixed
18734
18735 2006-03-31  Jackson Harper  <jackson@ximian.com>
18736
18737         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
18738         sometimes.
18739         * UpDownBase.cs: Don't CreateGraphics manually, use a
18740         Refresh. Ideally we would invalidate the correct areas here.
18741
18742 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
18743
18744         * XplatUIX11.cs: 
18745           - We now track the mapping state of windows. If a window (or 
18746             one of it's parents) is not mapped we no longer permit
18747             WM_PAINT messages to be generated since we'd otherwise get 
18748             lots of BadMatch X errors. Jackson did all the work figuring
18749             out the problem.
18750           - Destroying the caret if the window it's contained in is 
18751             destroyed. Can't use regular DestroyCaret method since it
18752             might fall into a drawing function (trying to remove the
18753             caret) and with that generate new BadMatch errors. Again,
18754             Jackson tracked this down.
18755           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
18756             make sure we send the messages to all windows. (The old code
18757             would send the WM_DESTROY to the window, and then all child
18758             windows would be 'gone' because the WM_DESTROY handle lookup
18759             would no longer find the destroyed window)
18760         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
18761         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
18762
18763 2006-03-31  Jackson Harper  <jackson@ximian.com>
18764
18765         * ScrollableControl.cs: Dont recalc if we are not visible.
18766
18767 2006-03-31  Mike Kestner  <mkestner@novell.com>
18768
18769         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
18770         the visibility branch.
18771
18772 2006-03-31  Jackson Harper  <jackson@ximian.com>
18773
18774         * ScrollBar.cs: Cap values when incrementing/decrementing.
18775
18776 2006-03-31  Mike Kestner  <mkestner@novell.com>
18777
18778         * MenuAPI.cs: setup menu.tracker for popup/context menus.
18779         * ToolTip.cs: guard against timer expirations with no active control.
18780         Not sure why it happened.
18781
18782 2006-03-31  Mike Kestner  <mkestner@novell.com>
18783
18784         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
18785         text.
18786         * ToolTip.cs: Position the tooltip based on where the cursor is at
18787         popup time, not at MouseEnter time.  Add a Down state so that we don't
18788         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
18789         positioning offset. Lookup DisplaySize at positioning time, since it
18790         can theoretically change during invocation.
18791         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
18792         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
18793
18794 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18795
18796         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
18797           Fixes behaviour when the Text property of the box is String.Empty
18798
18799 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
18800
18801         * XplatUIX11.cs: Only send mouseleave for our client windows, not
18802           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
18803           a window)
18804
18805 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18806
18807         * FileDialog.cs: Visual enhancement for the popup buttons in 
18808           PopupButtonPanel
18809
18810 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
18811
18812         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
18813           code
18814
18815 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
18816
18817         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
18818           highlighted menu items to match ms
18819
18820 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
18821
18822         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
18823
18824 2006-03-30  Mike Kestner  <mkestner@novell.com>
18825
18826         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
18827         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
18828         go active to account for HotLight to Selected transition.
18829         * MenuItem.cs: add internal Selected prop. Fill out the Status
18830         property by calculating it from item info. Add HotLight,
18831         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
18832
18833 2006-03-30  Mike Kestner  <mkestner@novell.com>
18834
18835         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
18836
18837 2006-03-29  Jackson Harper  <jackson@ximian.com>
18838
18839         * Form.cs: Implement TODO.
18840
18841 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
18842
18843         * PrintPreviewDialog.cs: Implemented missing methods and events; still
18844           missing proper dialog setup in the constructor
18845
18846 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
18847
18848         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
18849         * Control.cs:
18850           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
18851           - Fixed ResetBindings and removed TODO
18852           - Added check for cross-thread calls to get_Handle()
18853           - Added Marshaller attribute for set_Font to satisfy class status
18854         * FontDialog.cs: Removed TODOs that seemed implemented
18855         * UpDownBase.cs: Removed unneeded TODO and Fixme
18856         * MessageBox.cs: Implemented support for Default button and removed TODO
18857         * FileDialog.cs: Removed obsolete TODO
18858         * DomainUpDown.cs: Removed obsolete TODO
18859         * ButtonBase.cs: Removed obsolete TODO
18860         * XplatUIWin32.cs: Removed obsolete TODO
18861         * Form.cs:
18862           - Removed obsolete TODO
18863           - Calling CheckAcceptButton when the acceptbutton is changed to allow
18864             internal status updates
18865           - Making sure the active control is selected when the control is created
18866         * CurrencyManager.cs: Removed obsolete TODO
18867
18868 2006-03-29  Mike Kestner  <mkestner@novell.com>
18869
18870         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
18871         of PrintPreviewDialog and RichTextBox.
18872
18873 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18874
18875         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
18876           DarkDark, Light and LightLight colors for a specific color
18877         * ThemeWin32Classic.cs:
18878           - Use Button drawing code to draw RadioButtons and CheckBoxes with
18879             Appearance = Button 
18880           - Make use of the new ResPool helper CPColor
18881           - Draw ProgressBar and StatusBar with correct 3D borders
18882
18883 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
18884
18885         * ColorDialog.cs: Return selected color. Fixes bug #77940.
18886
18887 2006-03-28  Mike Kestner  <mkestner@novell.com>
18888
18889         * ListView.cs: fix Icon layout to plan for scrollbar widths when
18890         calculating col/row counts.
18891
18892 2006-03-28  Mike Kestner  <mkestner@novell.com>
18893
18894         * ColumnHeader.cs:
18895         * ListView.cs:
18896         * ListViewItem.cs:
18897         * Menu.cs: 
18898         switch to explicit interface method implementation for some methods
18899         corcompare identifies as inconsistent with MS.
18900
18901 2006-03-28  Mike Kestner  <mkestner@novell.com>
18902
18903         * MainMenu.cs: 
18904         * Menu.cs:
18905         add a few missing methods from the class status output.
18906
18907 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
18908
18909         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
18910           correct.
18911
18912 2006-03-28  Mike Kestner  <mkestner@novell.com>
18913
18914         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
18915
18916 2006-03-27  Mike Kestner  <mkestner@novell.com>
18917
18918         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
18919         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
18920
18921 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
18922
18923         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
18924
18925 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18926
18927         * ThemeWin32Classic.cs:
18928           - GroupBox: Inserted a little gap between the text and the lines
18929             on the right side
18930           - Made the code in CPDrawBorder3D more readable
18931           - Corrected the drawing location of the up and down arrows in 
18932             CPDrawScrollButton
18933
18934 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18935
18936         * ControlPaint.cs: Corrected line widths in DrawBorder for
18937           ButtonBorderStyle Inset and Outset
18938
18939 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18940
18941         * ThemeWin32Classic.cs:
18942           - Rewrote the totally broken CPDrawBorder3D method. That was
18943             one of the main problems for the terrific ThemeWin32Classic
18944             look
18945           - Updated and corrected Button drawing
18946           - Correct the dimensions of the SizeGrip to match ms ones
18947           - Removed a small drawing glitch in DrawComboBoxEditDecorations
18948         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
18949           Border3DStyle.Sunken to match ms.
18950
18951 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
18952
18953         * ThemeWin32Classic.cs: First small part of the "de-uglify
18954           ThemeWin32Classic" effort, SizeGrip
18955
18956 2006-03-24  Jackson Harper  <jackson@ximian.com>
18957
18958         * XplatUIX11.cs: Give a max idle time of one second, this matches
18959         MS and forces an Idle event every second when there are no other
18960         events in the queue.
18961
18962 2006-03-24  Mike Kestner  <mkestner@novell.com>
18963
18964         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
18965         * ListView.Item.cs: fix layout issues with null image lists and images
18966         smaller than checkbox size.
18967         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
18968         mode like MS does.  It's weird, but consistent.  ;-)
18969         Fixes #77890.
18970
18971 2006-03-24  Mike Kestner  <mkestner@novell.com>
18972
18973         * ListView.cs: Scroll wheel support for the item control.  Fixes
18974         #77839.
18975
18976 2006-03-23  Jackson Harper  <jackson@ximian.com>
18977
18978         * ScrollableControl.cs: Special case negative sized areas, not
18979         zero.
18980         * MonthCalendar.cs: Save the rect of the clicked date so we can
18981         use it for invalidation.
18982         - Try to cut down on the number of invalidates
18983         - Invalidate the rect the mouse is over and was over when moving
18984         the mouse, so we get the focus box following the cursor.
18985
18986 2006-03-23  Mike Kestner  <mkestner@novell.com>
18987
18988         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
18989         focus rectangle drawing. Fixes #77835.
18990
18991 2006-03-23  Mike Kestner  <mkestner@novell.com>
18992
18993         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
18994         the if and else if and reverting back to the original == check on the
18995         None conditional.
18996
18997 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
18998
18999         * FontDialog.cs: Update the example panel if the selected index of
19000           the fontListBox changes.
19001
19002 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
19003
19004         * FileDialog.cs: Make FileDialog remember which directory it was in
19005           last in the same execution.
19006
19007 2006-03-22  Mike Kestner  <mkestner@novell.com>
19008
19009         * FileDialog.cs: make the DropDownMenu on the toolbar display
19010         RadioChecks since they are mutually exclusive and that's what MS does.
19011
19012 2006-03-22  Mike Kestner  <mkestner@novell.com>
19013
19014         * Theme.cs: add Color param to CPDrawMenuGlyph.
19015         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
19016         checks and radio marks and arrows are visible on highlighted items.
19017         * ControlPaint.cs: update to use new Theme signature.
19018
19019 2006-03-22  Mike Kestner  <mkestner@novell.com>
19020
19021         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
19022         is active. Fixes #77870.
19023
19024 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
19025
19026         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
19027           to be focused/selected after startup
19028
19029 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
19030
19031         * ColorDialog.cs: 
19032           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
19033             CustomColors and ShowHelp properties
19034           - Some internal rewrites to get better results when using the
19035             ColorMatrix
19036
19037 2006-03-22  Mike Kestner  <mkestner@novell.com>
19038
19039         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
19040         HoverSelection.  Fixes #77836.
19041
19042 2006-03-22  Mike Kestner  <mkestner@novell.com>
19043
19044         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
19045         ToggleButtons.  (De)Sensitize the Back button around a stack count of
19046         1, not 0.  Update ButtonSize based on a pixel count of the win32
19047         control.  Adjust the toolbar size/location for new button size.
19048
19049 2006-03-22  Jackson Harper  <jackson@ximian.com>
19050
19051         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
19052         true.
19053         * ScrollBar.cs: When doing increments and decrements we need to
19054         set the Value property so that ValueChanged gets raised. A
19055         possible optimization here would be to make an internal SetValue
19056         that doesn't invalidate immediately.
19057         * ToolTip.cs: Tooltips get added to their container (when
19058         supplied) so they get disposed when the container is disposed.
19059         - Don't create tooltips for String.Empty. This prevents all these
19060         little 2-3 pixel windows from showing up when running nunit-gui
19061         and driving me mad.
19062         * Form.cs: Don't set topmost when setting the owner if the handles
19063         haven't been created yet.  The topmost set will happen when the
19064         handles are created.
19065
19066 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
19067
19068         * XplatUIX11.cs:
19069           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
19070           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
19071             visible (to allow them to recalculate their sizes)
19072
19073 2006-03-21  Mike Kestner  <mkestner@novell.com>
19074
19075         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
19076         methods. Removed a ton of redundant code.  Still not really happy with
19077         the border rendering, but I think that's mainly because of the
19078         ControlDarkDark being black instead of a dark grey. Depending on how 
19079         close we want to be, we might want to revisit those color choices.
19080         Among the new features added during the refactor were DropDownArrow
19081         pressed rendering, Disabled image rendering.  Proper flat appearance
19082         boundary rendering.  Removed the Divider and Wrapping dividers since I
19083         can't figure out any combination of themes and conditions to make the
19084         MS control draw a horizontal line on a toolbar despite what the
19085         Divider property docs indicate.
19086         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
19087         conditions and incorrect layout.  Updated to coding standard.
19088         * ToolBarButton.cs: refactored layout and positioning code from
19089         ToolBar to here.  Invalidate wherever possible instead of forcing
19090         redraws of the whole toolbar. 
19091         (Known remaining issues: explicit ButtonSize smaller than provided
19092         images.)
19093
19094 2006-03-21  Mike Kestner  <mkestner@novell.com>
19095
19096         * ContextMenu.cs (Show): use the position parameter instead of just
19097         showing at the MousePosition.
19098
19099 2006-03-21  Jackson Harper  <jackson@ximian.com>
19100
19101         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
19102         control handle this.
19103         * TreeNodeCollection.cs: If we are clearing the root node we need
19104         to reset top_node so calcs can still happen.
19105         * ThemeWin32Classic.cs: This is a Flags so we need to check
19106         properly.
19107         
19108 2006-03-21  Jackson Harper  <jackson@ximian.com>
19109
19110         * DataGrid.cs: Create columns when the binding context has been
19111         changed.
19112         * X11Structs.cs: Keysyms are uints.
19113         - Add size to fix build.
19114
19115 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
19116
19117         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19118           XplatUIOSX.cs: 
19119           - Added ResetMouseHover method to allow controls to retrigger
19120             hovering if they need it more than once
19121           - Implemented MouseHoverTime and MouseHoverSize properties
19122         * Timer.cs: Start() must reset the interval
19123         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
19124           properties
19125
19126 2006-03-21  Jackson Harper  <jackson@ximian.com>
19127
19128         * X11Keyboard.cs: improved layout detection. Move the nonchar
19129         tables into this file.
19130         * KeyboardLayouts.cs: Move the tables into resource files.
19131
19132 2006-03-21  Mike Kestner  <mkestner@novell.com>
19133
19134         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
19135
19136 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
19137
19138         * Mime.cs: Various speed optimizations. Looking up mime types
19139           is now 2 times faster than before
19140
19141 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
19142
19143         * CreateParams.cs: Added internal menu field
19144         * Control.cs: 
19145           - Switched call order for UpdateBounds; now we always call
19146             the one that also takes ClientSize, and we're calculating the 
19147             client size via driver method in the others. The previous
19148             method of tracking client size by difference wasn't working
19149             for forms where even the starting client size wouldn't match
19150             the overall form size (due to borders) (Part of fix for #77729)
19151           - CreateParams(): Do not use parent.Handle unless the handle is
19152             already created. Causes havoc with Nexxia and throws off our
19153             creation of controls
19154         * XplatUIX11.cs:
19155           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
19156           - Switched handling of ConfigureNotify over to new PerformNCCalc 
19157             method (consolidates code)
19158           - Changed RequestNCRecalc to use new PerformNCCalc method
19159           - Added calls to RequestNCRecalc when menus and borders are changed
19160             to allow app to set NC size. (Part of fix for #77729) This matches
19161             when MS send a WM_NCRECALC on Win32 windows.
19162           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
19163             (Part of fix for #77729). This matches what MS does, they also
19164             send that message when the form is made visible.
19165           - XException.GetMessage: Improved usability of X errors by including
19166             a translation of the window into Hwnd and Control class
19167           - Improved debug info for window creation, reparenting and destruction
19168           - Created helper method WindowIsMapped() [Currently not used]
19169         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
19170         * Form.cs:
19171           - CreateParams: Now setting our menu on the new internal menu field
19172           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
19173             avoid calculating the same property twice
19174         * Hwnd.cs:
19175           - Improved usability of ToString() for debugging purposes
19176           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
19177             determine the height of the menu, instead of just the font. This
19178             required to also create a graphics context and to keep a bmp 
19179             around (for performance reasons)
19180
19181 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
19182
19183         * MenuAPI.cs: Added OnMouseUp method
19184         * Form.cs:
19185           - Now remembering the requested client size, avoids size errors
19186           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
19187             instead of base if the menu is active. This is required due to
19188             control now capturing and releasing on down/up and it would
19189             prematurely release our menu capture
19190
19191 2006-03-17  Jackson Harper  <jackson@ximian.com>
19192
19193         * KeyboardLayouts.cs: Add the czech layouts.
19194
19195 2006-03-16  Jackson Harper  <jackson@ximian.com>
19196
19197         * Control.cs: Use the viewport space when sizing not the controls
19198         client size, so things like ScrollableControl that effect the
19199         viewport size (when scrollbars are added) are computed correctly.
19200         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
19201         of ManagerEntrys.
19202         - Handle creating BindingManagers for null data sources.
19203         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
19204         source, otherwise when rows are added they are added to the 'fake'
19205         datasource and we will crash when trying to set the position in
19206         those rows.
19207         - Use Implicit scrollbars on the datagrid so they arent
19208         selectable.
19209         
19210 2006-03-16  Jackson Harper  <jackson@ximian.com>
19211
19212         * Binding.cs:
19213         * InternalWindowManager.cs:
19214         * MdiWindowManager.cs:
19215         * X11Keyboard.cs: I really want Mike to love me again (fix
19216         compiler warnings).
19217
19218 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
19219
19220         * DataGrid.cs:
19221           - OnMouseDown: Switch to editing mode when clicking on the cell
19222                          even if we're clicking on the cell that's currently 
19223                          selected
19224           - ProcessGridKey: Left/Right now wrap like MS.Net does
19225           - ProcessGridKey: Tab now knows to add a new row when tab is
19226                             pressed in the cell of the last column of the 
19227                             last row
19228           - ProcessGridKey: Enter now adds another row  if pressed in the last
19229                             row and selectes the new row, same column cell
19230           - ProcessGridKey: Home/End navigate columns, not rows, like 
19231                             originally implemented
19232           - Broke ProcessKeyPreview code out into an extra Internal method
19233             so it can be called from the edit code
19234         * DataGridTextBox.cs (ProcessKeyMessage):
19235           - Switched to accept Tab keypresses
19236           - Added F2 handling to allow jumping to the end of the edited cell
19237           - Added logic to allow moving caret left/right inside edited cell
19238             and making the edited cell jump when the caret hits cell borders
19239           - Tab and Enter are now passed to the datagrid after being handled
19240         * TextBoxBase.cs:
19241           - Removed capture code now that Control handles it
19242           - set_SelectionStart now ensures caret is visible
19243
19244 2006-03-16  Jackson Harper  <jackson@ximian.com>
19245
19246         * TrackBar.cs: Debackwards the increment/decrement for handling
19247         mouse clicks on the bar with vertical trackbars.
19248         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
19249         bottom to match MS.
19250
19251 2006-03-16  Mike Kestner  <mkestner@novell.com>
19252
19253         * ListView.cs: make shift/ctrl keyboard and mouse selection 
19254         consistent with the MS control. Fix a bug in
19255         SelectedListViewItemCollection.Clear that was pissing me off for the
19256         better part of a day because the collection was being altered
19257         underneath us as we walked the list.
19258
19259 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
19260
19261         * Control.cs: Not sure how we could miss this so long, but it seems
19262           that MS.Net has Capture set all the way from before calling 
19263           OnMouseDown through sending the mouse events until after
19264           OnMouseUp. This will fix DataGrid's selection being set to end
19265           at the location of the MouseUp.
19266
19267 2006-03-15  Jackson Harper  <jackson@ximian.com>
19268
19269         * BindingContext.cs: Check the binding after its added so that it
19270           can initialize the binding managers and hookup to events.
19271         * Binding.cs: Data members seem to sometimes include rows/cols in
19272           the format Row.Column we now take this into account.
19273           - Hookup to the position changed event so we can update the
19274           control when the position has changed in the data set.
19275         * CurrencyManager.cs: Take into account the row/col naming
19276           convention when creating dataset tables.
19277         * BindingContext.cs: Using a newer better way of storing
19278           datasource/datamember pairs.  Hopefully this better matches MS for
19279           looking up binding managers.
19280
19281
19282 2006-03-15  Jackson Harper  <jackson@ximian.com>
19283
19284         * BindingContext.cs: The currency manager needs the data member
19285         name, if the member is a data set we use the name to find the
19286         correct table.
19287         * CurrencyManager.cs: When creating the list prefer an IList over
19288         an IListSource.
19289         - Attempt to create a DataTable from a DataSet (TODO: might need
19290         some better error checking here, although MS doesn't seem to have much)
19291         - If we have a DataTable create a view and use it as our list.
19292
19293 2006-03-15  Mike Kestner  <mkestner@novell.com>
19294
19295         * ListView.cs: keep a matrix of the icon mode layout to facilitate
19296         keyboard navigation. Support Up/Down/Left/Right selection correctly
19297         for all 4 View modes.
19298         * ListViewItem.cs: add internal row/col fields for icon layouts.
19299
19300 2006-03-15  Jackson Harper  <jackson@ximian.com>
19301
19302         * TabControl.cs: Redraw the tabs when we resize so their newly
19303         calculated sizes are drawn on screen.
19304         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
19305         composite characters.
19306         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
19307         - filter events so that composite characters can be created
19308         patches by peter
19309         * X11Structs.cs: Add XIMProperties enum.
19310
19311 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19312
19313         * Control.cs (BringToFront, SendToBack): Don't use window or handle
19314           unless it's created
19315
19316 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19317
19318         * Control.cs (PerformLayout): We don't need to consider visiblity
19319           for anchoring, only for docking. This fixes 'whacky' alignment
19320           in listbox and other controls that use implicit scrollbars after
19321           the previous PerformLayout patch
19322         * ListBox.cs: Switched to use implicit scrollbars
19323           
19324 2006-03-14  Mike Kestner  <mkestner@novell.com>
19325
19326         * ToolBar.cs: 
19327         * VScrollBar.cs:
19328         - chain up the "new event" overrides to base and use
19329         OnEvent to raise them.  Part of fix for bug #76509.
19330
19331 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
19332
19333         * FileDialog.cs: Do not select an item in the parent directory
19334           on backspace
19335
19336 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
19337
19338         * Control.cs (PerformLayout): It would seem that we considered
19339           invisible windows for our layout. Not quite the right thing
19340           to do. Now we don't any longer, thereby fixing bug #76889.
19341
19342 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
19343
19344         * Control.cs (CanFocus): I goofed. A control can have focus 
19345           even though it's not selectable. Made it match MS docs.
19346
19347 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19348
19349         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
19350           center by default (fixes #76895)
19351         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
19352           all uses of Border3DSides.All with the explicit ORd together
19353           Left|Right|Top|Bottom because I assume that nobody was aware 
19354           that All also implies a center fill. Most places I checked had
19355           a fill right above.
19356         * ProgressBarStyle.cs: Added
19357
19358 2006-03-13  Mike Kestner  <mkestner@novell.com>
19359
19360         * ListView.cs: fix breakage in drag shadow header positioning 
19361         from Peter's csc compilation fix.
19362
19363 2006-03-13  Mike Kestner  <mkestner@novell.com>
19364
19365         * ListView.cs: fix NRE produced by backspacing twice in a focused
19366         FileDialog.
19367
19368 2006-03-13  Mike Kestner  <mkestner@novell.com>
19369
19370         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
19371
19372 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19373
19374         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
19375           be changed
19376         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
19377           the allowed size before making programmatic size changes
19378
19379 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
19380
19381         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
19382           set, metacity is broken and will still use the emty sizes in 
19383           the struct. (Fix for #77089)
19384
19385 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
19386
19387         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
19388           WindowExStyles and marked both enums as Flags
19389         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
19390           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
19391           to match WindowStyles split
19392         * XplatUIX11.cs:
19393           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
19394           - Updated to match WindowStyles split
19395         * XplatUIWin32.cs:
19396           - Fixed FosterParent creation, was using ExStyle on the Style field
19397             (This should help with Popup focus issues)
19398           - Updated to match WindowStyles split
19399
19400 2006-03-13  Jackson Harper  <jackson@ximian.com>
19401
19402         * MdiWindowManager.cs: Use the system menu height. Fixes some
19403         strange sizing issues.
19404
19405 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19406
19407         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
19408         * TextBoxBase.cs:
19409           - Scroll to caret after inserting text (#77672)
19410           - Make scroll range one pixel higher, fixes off-by-one error (and
19411             makes underlines visible on the last line)
19412
19413 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
19414
19415         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
19416           the keyboard state from being stuck with keys in 'pressed' state when
19417           focus is switched away via keyboard
19418         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
19419           reset the keyboard if no X11 KeyUp events are expected to come
19420         * X11Structs.cs: Switched type of Visible to bool to match driver
19421
19422 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
19423
19424         * TextControl.cs:
19425           - Switched caret to be just 1 pixel wide, matches MS and looks less
19426             clunky
19427           - Moved caret display 1 pixel down from the top of the control
19428             to improve view
19429           - InsertCharAtCharet: Update the selection start if moving the caret
19430             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
19431           - No longer always creating the caret when the caret methods are
19432             called. Only the actual ShowCaret/HideCaret will do that now
19433           - Only setting caret visible if the owner control has focus
19434           - UpdateView: Added invalidation-shortcut logic for center and right 
19435             aligned text. Previously we'd update all according to the left
19436             logic which caused drawing errors. Also fixed height of invalidated
19437             areas, now properly invalidating the whole area (was off-by-one)
19438           - owner_HandleCreated: Always generate the document when the
19439             handle is created; this ensures that 
19440         * TextBoxBase.cs:
19441           - Fixed situation where caret would disappear under the right
19442             window border, also improved scrolling behaviour on left-
19443             aligned textboxes
19444           - Fixed right-aligned textboxes to have a border to the
19445             right instead of the caret being under the right border
19446         * XplatUIX11.cs:
19447           - Switched from 'nested' to simple visible/not visible tracking 
19448             for caret (part of fix for #77671)
19449           - No longer passing through translated FocusIn/FocusOut messages
19450             since we were notifying too often and the wrong windows. Instead
19451             we just notify our focussed window of receiving or loosing focus
19452         * XplatUIWin32.cs: Switched from 'nested' show/hide 
19453           counting for caret to simple visible yes/no behaviour (part of 
19454           fix for #77671)
19455
19456 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19457
19458         * Mime.cs: Remove debug code...
19459
19460 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
19461
19462         * MimeGenerated.cs: Removed
19463         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
19464           and subclasses) from /usr/(local/)share/mime and
19465           $HOME/.local/share/mime.
19466
19467 2006-03-10  Jackson Harper  <jackson@ximian.com>
19468
19469         * MdiWindowManager.cs: Recalc the NC area when a window is
19470         maximized/restored so that the menu area is drawn on forms that
19471         don't have a menu.
19472
19473 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19474
19475         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19476           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
19477           us to force a WM_NCCALCRESIZE message being sent. This is needed
19478           for MDI maximizing.
19479
19480 2006-03-10  Jackson Harper  <jackson@ximian.com>
19481
19482         * Form.cs: We need to use the ActiveMenu when calculating menu
19483         height.
19484         - Fix nullref when the window manager hasn't been created yet.
19485         * Control.cs: Fix nullref when we try to bring a control to the
19486         front that has no parent.
19487         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
19488         height.
19489         - Add a dummy item to the maximized menu so it always has the
19490         correct height. Otherwise when there are no menus we don't get our
19491         icon and buttons.
19492         
19493
19494 2006-03-10  Jackson Harper  <jackson@ximian.com>
19495
19496         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
19497         stuff.
19498         * Form.cs: Make the window_state internal so the window managers
19499         can track it.
19500         - When an MDI child is maximized let its window manager create the
19501         main menu (so it can add its icon).
19502         - Notify the window managers of state changes
19503         - Let the window manager paint its buttons and handle button
19504         clicks on the menu when it is maximized.
19505         * InternalWindowManager.cs: Move the prev_bounds into the mdi
19506         window manager, since tool windows don't use it, only mdi windows.
19507         - Tell the main form that we don't want it to handle NCPAINT
19508         itself to avoid extra painting.
19509         - Handle clicks on a maximized windows menu.
19510         - Handle window state changes
19511         - Handle minimize/maximize clicks correctly by setting the window state.
19512         * MdiWindowManager.cs: Add an icon menu that (the menu you get
19513         when clicking on the forms icon).
19514         - New method to create a forms maximized menu. This is its normal
19515         menu + an icon.
19516         - Handle window state changes.
19517         - Handle sizing of maximized windows.  Maximized windows are just
19518         drawn bigger then the parent visible area. All controls are still
19519         there, they are just outside the visible area (this matches windows).
19520         * MdiClient.cs: No scrollbars when a child window is maximized.
19521         - Let the children windows figure out how big they should be when
19522         sizing maximized windows.
19523         - Implement a version of ArrangeIconicWindows somewhat similar to
19524         Windows version.  There are some little differences, but I don't
19525         think any app will rely on the layout of minimized mdi windows.
19526
19527 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19528
19529         * Padding.cs: Several fixes to allow compiling with csc 2.0
19530
19531 2006-03-09  Jackson Harper  <jackson@ximian.com>
19532
19533         * Menu.cs:
19534         * MenuItem.cs: Cheap hack so we can add items to the list without
19535         the events being raised.  This allows adding mdi items during
19536         drawing. TODO: Should probably find a better time to add the items.
19537
19538 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19539
19540         * ThemeWin32Classic.cs:
19541           - CheckBox_DrawText: Added logic to not wrap if not enough space
19542             is available (Fix for bug #77727)
19543           - RadioButton_DrawText: Added logic not to wrap if not enough
19544             space is available (Fix for bug #77727). Also removed some
19545             duplicate code, DrawString always drawing the regular text
19546             before hitting the if statement.
19547
19548 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
19549
19550         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
19551
19552 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
19553
19554         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
19555         * ContainerControl.cs: Partial implementation of some 2.0 scaling
19556           methods. Moved the new 2.0 properties into alphabetical order with
19557           other properties and added MonoTODO tags
19558
19559 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19560
19561         * AutoScaleMode.cs: Added. Fix build.
19562
19563 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19564
19565         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
19566           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
19567           and was requiring premature handle creation for calls from above
19568         * Form.cs, Control.cs: Removed handle arguments from calls to
19569           CalculateClientRect()
19570
19571 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19572
19573         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
19574           drag_column.column_rect is MarshalByRef and can't be used that way
19575
19576 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19577
19578         * AxHost.cs: Added deserialization constructor for 
19579           AxHost+State (fixes 77743)
19580
19581 2006-03-09  Mike Kestner  <mkestner@novell.com>
19582
19583         * ListView.cs: 
19584         - Added column drag reordering for details view.
19585         - fixed behavior when mouse is dragged off column and
19586         AllowColumnReorder is false.
19587         * ColumnHeader.cs: clone the format too in Clone.
19588         * Theme.cs: add DrawListViewHeaderDragDetails method.
19589         * ThemeWin32Classic.cs:
19590         - impl new method for drawing drag column shadows and targets.
19591         - support column offset for details mode in DrawListViewItem.
19592
19593 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19594
19595         * TextControl.cs: Reset the char_count when the document is cleared
19596           (Fixes bug reported on mono-winforms mailing list)
19597
19598 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
19599
19600         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
19601           of calling base we simply process the key ourselves, since both
19602           DefWindowProc and the handled method would set m.Result. 
19603           (Fixes #77732)
19604
19605 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
19606
19607         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
19608           method also moves the window; instead implemented a copy of
19609           Control.ScaleCore (Part of fix for #77456)
19610         * TextBoxBase.cs: 
19611           - Created new CreateGraphicsInternal method to allow providing
19612             a graphics context when no handle is created without triggering
19613             handle creation. (Part of fix for #77456)
19614           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19615         * TextControl.cs: 
19616           - Switched Constructor to require TextBoxBase instead of Control (to
19617             allow uncast access to CreateGraphicsInternal)
19618           - Safeguarded use of owner.Handle property. No longer accessing it
19619             unless the handle is already created.
19620           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
19621           - Now triggering a recalc when owning control becomes visible
19622         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
19623           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
19624           premature handle creation (Part of fix for #77456)
19625         * Control.cs:
19626           - We now only destroy our double-buffering buffers when the
19627             control is resized or disposed, but not when visibility
19628             changes. (The code even re-created them twice every time)
19629           - Now requiring a redraw of the buffer on visibility changes
19630             (fixes bug 77654 part 2)
19631           - Not passing OnParentVisibleChanged up unless the control
19632             is visible
19633           - CanFocus: Fixed to match MS documentation
19634           - Focus: Fixed to return actual focus state and to check if
19635             setting focus is legal before setting it
19636
19637 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
19638
19639         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
19640           when to draw focus rectangle by looking at parent focus and
19641           selected state instead. This fixes TabPages on Linux sometimes
19642           having none or multiple focus rectangles.
19643         * XplatUIX11.cs (SetFocus): 
19644           - Don't set the focus if the same window already has focus
19645           - Use SendMessage instead of PostMessage (like it's Win32
19646             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
19647             to match MS behaviour
19648         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
19649           are not selectable.
19650
19651 2006-03-07  Jackson Harper  <jackson@ximian.com>
19652
19653         * PictureBox.cs: Revert line I accidently committed last week.
19654
19655 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19656
19657         * Control.cs: 
19658           - Added new IsRecreating and ParentIsRecreating properties to
19659             allow testing if RecreateHandle has been called on ourselves
19660             or one of our parents
19661           - WndProc(WM_DESTROY): If our control handle is being recreated
19662             we immediately need to create the handle when receiving the
19663             destroy, that way our child windows find a valid parent handle
19664             when they themselves are being recreated upon WM_DESTROY receipt
19665             (fix for bug #77654 part 1)
19666         * XplatUIX11.cs:
19667           - DestroyWindow: WM_DESTROY must be sent to our own window before
19668             notifying any child windows. MS documents that child windows
19669             are still valid when WM_DESTROY is received. (Control now relies on
19670             this behaviour)
19671           - Added some fine-grain debug options
19672
19673 2006-03-06  Jackson Harper  <jackson@ximian.com>
19674
19675         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
19676         box and base calculations off this.
19677         * MdiChildContext.cs:
19678         * MdiWindowManager.cs: Don't need to ensure scrollbars here
19679         anymore.
19680         
19681 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
19682
19683         * Splitter.cs: In situations where the affected control is added
19684           to the parent's control list after the splitter, we would not
19685           populate affected. Now we try populating it on mousedown, if
19686           it's not already set, and force it to be re-set whenever our
19687           parent changes.
19688
19689 2006-03-03  Matt Hargett  <matt@use.net>
19690
19691         * Control.cs: implement Control.Padding
19692         * Padding.cs: -Padding.All returns -1 when constructing with the
19693         implicit default ctor
19694         -Padding.ToString() matches MS.NET
19695         * ContainerControl.cs: implement
19696         ContainerControl.AutoScaleDimensions
19697         * ListControl.cs: implement ListControl.FormattingEnabled
19698         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
19699         * ButtonBase.cs:
19700         * TabPage.cs: Implement UseVisualStyleBackColor.
19701         * PictureBox.cs: Implement PictureBox.InitialImage.
19702
19703 2006-03-03  Mike Kestner  <mkestner@novell.com>
19704
19705         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
19706         event declarations to proxy to base event.
19707         * ListViewItem.cs: update to use ItemControl.
19708         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
19709         * ThemeWin32Classic.cs: update to new ListView theme API and fix
19710         column header label rendering for 0 width columns.
19711
19712 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
19713
19714         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
19715           that causes the control to be created. Fixes #77476.
19716
19717 2006-03-02  Jackson Harper  <jackson@ximian.com>
19718
19719         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
19720         expose_pending.
19721
19722 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
19723
19724         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
19725           passed in for the EventArgs (fixes #77690)
19726
19727 2006-03-01  Jackson Harper  <jackson@ximian.com>
19728
19729         * ScrollBar.cs: Refresh afterbeing resized.
19730
19731 2006-02-28  Mike Kestner  <mkestner@novell.com>
19732
19733         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
19734         Clean up a tracker compile warning.
19735         * MenuItem.cs: add internal PerformPopup method.
19736         [Fixes #77457]
19737
19738 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19739
19740         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
19741           implicit expose) when the text is set to null
19742
19743 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
19744
19745         * RichTextBox.cs (FlushText): When newline is true, we always
19746           need to split the line, even if no text is on it and we may
19747           never eat newlines. (Fixes #77669)
19748
19749 2006-02-28  Mike Kestner  <mkestner@novell.com>
19750
19751         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
19752         and set Selected instead.
19753         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
19754         collections.
19755
19756 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
19757
19758         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
19759
19760 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
19761
19762         * FontDialog.cs:
19763           - Got rid of the panel. All controls are now directly added to
19764             the dialog form
19765           - It is now possible to set a font with the Font property
19766           - MinSize and MaxSize property do now what they should
19767           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
19768           - Searching and selecting a font with the font textbox works now,
19769             the same applies to the style and size textbox
19770           - Draw the correct 3D border in the example panel
19771           - Fixed a little mem leak (unused fonts didn't get disposed)
19772           - Many other internal updates/rewrites...
19773           - Fix typo
19774
19775 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19776
19777         * TextControl.cs: 
19778           - InsertRTFFromStream: Added 'number of characters inserted' argument
19779           - set_SelectedRTF: Now using the number of characters to calculate
19780             the new location for the selection and cursor (x/y cannot be used
19781             due to potentially already wrapped text)
19782
19783 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
19784
19785         * TextControl.cs: Added property and implemented means to allow 
19786           disabling recalculation of a document (can be used to speed up
19787           multiple inserts and is needed to make RTF inserts predictable, see
19788           bug #77659)
19789         * RichTextBox.cs: Using the new NoRecalc property of Document to
19790           keep x/y insert locations predictable. Also makes it faster inserting
19791           large chunks of RTF
19792
19793 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
19794
19795         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
19796           it's easier for a child control to handle the other messages without
19797           having to duplicate the special functionality
19798         * TextBoxBase.cs
19799           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
19800             code to handle processing the key ourselves, in order to get 
19801             access to the result of KeyEventArgs.Handled. We now only call 
19802             ProcessKey if they key hasn't been handled already. Fixes #77526.
19803           - set_Text: If null or empty string is given, just clear the 
19804             document. Fixes part of #77526
19805
19806 2006-02-27  Jackson Harper  <jackson@ximian.com>
19807
19808         * SizeGrip.cs: Paint the background color before painting the grip
19809         so things look right.
19810         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
19811
19812 2006-02-27  Mike Kestner  <mkestner@novell.com>
19813
19814         * ListView.cs:
19815           - Restructure layout and invalidation model to remove a ton of
19816           flicker from the control and speed up performance in general.
19817           - Add manual column resize, flickers like crazy, but I already have
19818           some ideas on how I'll fix that. (#76822)
19819           - Merge the three Icon-based views into a single layout method.
19820           - Move item selection interaction logic from the item since 
19821           interaction with the collections is more appropriate to the view.
19822           - Deselection on non-item clicks.
19823         * ListViewItem.cs:
19824           - Encapsulate most of the layout. Add some internal props to trigger
19825           layout.  Move to a model where Items invalidate themselves instead
19826           of just invalidating the whole control every time something changes.
19827           - Invalidate on Text/Caption changes.
19828           - switch to an offset based layout model to avoid having to absolute
19829           position every element on item moves.
19830           - correct checkbox layout to conform to MS layout.
19831         * ThemeWin32Classic.cs:
19832           - refactor some column header drawing code.
19833           - fix string justification for column headers (#76821)
19834           - make SmallIcon labels top justified for compat with MS impl.
19835         * ThemeClearlooks.cs:
19836           - adjust to new ListViewItem internal checkbox bounds api.
19837
19838 2006-02-27  Jackson Harper  <jackson@ximian.com>
19839
19840         * Control.cs:  Change where implicit controls fall in the zorder.
19841         They are now on top of all children.
19842         - Synced AddImplicit code with Add
19843         - Removed unused enumerator.
19844         * SizeGrip.cs: Remove the TODO as its been TODONE.
19845
19846 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
19847
19848         * TextControl.cs(Insert): Combine the last lines unless the insertion
19849           string ends with \n\n, otherwise we leave one line too many (Fixes
19850           something I noticed with the testapp for #77526; the bug itself was
19851           already fixed in the previous checkin)
19852
19853 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
19854
19855         * RichTextBox.cs:
19856           - SelectionColor and SelectionFont methods no longer set absolute
19857             styles. Instead, the keep font or color respectively (This 
19858             resolves a long-standing FIXME in the code)
19859           - When flushing RTF text, the insert code now considers text trailing
19860             behind the insertion point (Fixes the bug where when replacing
19861             the selected text via SelectedRTF the remainder of the line behind 
19862             the selection would stay on the first insertion line)
19863         * TextBoxBase.cs:
19864           - AppendText now updates the selection points after inserting text
19865           - AppendText now ensures that the last tag (sometimes 0-length) of
19866             the document is used for the style information (Fixes part of 
19867             bug #77220)
19868         * TextControl.cs:
19869           - Created new FontDefiniton class to allow describing partial style
19870             changes
19871           - StreamLine() now takes a lines argument, to allow it to decide
19872             whether an encountered zero-length tag is the last in the document
19873             (which must be kept to not loose the font/color contained in it,
19874             for later appends)
19875           - Created Combine() and Split() methods for Marker structs, to 
19876             support marker updates due to reformatted documents (soft line
19877             wraps)
19878           - Implemented Document.CaretTag setter
19879           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
19880             of the last line (Not the cause, but also exposed by bug #77220)
19881           - Added LineTag argument to InsertString method, to allow callers
19882             to force a certain tag to be used (required to force use of the
19883             trailing zero-length tag of a document)
19884           - Now updating markers in Combine(), to avoid stale tag markers
19885           - Added some method descriptions to aid maintenance
19886           - Implemented new FormatText concept, allowing additive/subtractive
19887             formatting by only specifying the components that are to be 
19888             changed. This was needed for resolving the RTB.SelectedColor/
19889             RTB.SelectedFont fixmes
19890           - Added Break() support method to allow breaking up linetags (used
19891             for partial formatting)
19892           - Added GenerateTextFormat() method. It is used for partial 
19893             formatting and allows to generate a full font/color from given
19894             attributes and an existing tag.
19895
19896 2006-02-26  Jackson Harper  <jackson@ximian.com>
19897
19898         * XplatUIX11.cs:  Use the correct caption height.
19899         - Translate hittest coordinates to screen coords to match MS.
19900         * XplatUIWin32.cs: When we create MDI windows we need to reset
19901         some of the style flags, so we get a nice blank window, and can
19902         draw all the decorations ourselves.
19903         - Set a clipping rectangle on the non client paint event, the
19904         window manager drawing code needs one.
19905         * Form.cs: The window manager needs to know when the window state
19906         has been updated.
19907         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
19908         don't need to factor in border and title sizes in these
19909         methods. TODO: Remove the args and fix the call points.
19910         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
19911         properly.
19912         - Let the driver set the cursors.
19913         - Improve active window handling
19914         - Correct sizes for title bars and buttons.
19915         - Match MS drawing better
19916         * MdiWindowManager.cs: We don't need to handle border style
19917         updates specially anymore.
19918         - Check for scrollbars when windows are done moving
19919         - Handle Active properly.
19920         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
19921         correctly. I am spewing the exception though, so we don't hide the
19922         bugs.
19923         
19924 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
19925
19926         * DataGridViewRowPostPaintEventArgs.cs,
19927           DataGridViewCellPaintingEventArgs.cs,
19928           DataGridViewRowCollection.cs,
19929           DataGridViewRowPrePaintEventArgs.cs,
19930           DataGridViewCell.cs: Clear a few warnings and implement a few
19931           exceptions that should be thrown.
19932
19933 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19934
19935         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
19936           'inheriting' our parent's (non-default) cursor. (Part of
19937            the fix for #77479)
19938
19939 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
19940
19941         * XplatUIX11.cs: Fixed cast to make csc happy
19942
19943 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
19944
19945         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
19946           it's for the client area (part of fix for #77479 and needed
19947           for MDI window cursor handling)
19948         * XplatUIX11.cs
19949           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
19950             the appropriate default cursors and also passing the message
19951             up the parent chain 
19952           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
19953             for non-client areas
19954
19955 2006-02-15  Jackson Harper  <jackson@ximian.com>
19956
19957         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
19958         is a real MDI window
19959
19960 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
19961
19962         * X11DesktopColors.cs: Instead of checking the desktop session
19963           string for "KDE" check if it starts with "KDE"
19964
19965 2006-02-10  Jackson Harper  <jackson@ximian.com>
19966
19967         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
19968         systems).
19969
19970 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19971
19972         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
19973           errors
19974         * ColorDialog.cs:
19975           - Got rid of the panel. All controls are now directly added to
19976             the dialog form
19977           - Changed to mono coding style
19978
19979 2006-02-10  Jackson Harper  <jackson@ximian.com>
19980
19981         * InternalWindowManager.cs: We don't need the set visibility to
19982         false hack anymore now that peter has written beautiful shutdown
19983         code.
19984
19985 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
19986
19987         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
19988           where already explicitly destroyed
19989
19990 2006-02-10  Jackson Harper  <jackson@ximian.com>
19991
19992         * MdiClient.cs: Handle the case where windows are too high or to
19993         the left and we need scrollbars.
19994
19995 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
19996
19997         * MimeIcon.cs: Added some icons
19998         * FileDialog.cs:
19999           - Fixed bug #77477
20000           - Got rid of the panel. All controls are now directly added to
20001             the dialog form
20002           - Changed to mono coding style
20003           - On Linux "My Computer" and "My Network" will now show some
20004             more usefull information. A new class, MasterMount, gathers
20005             this information from /proc/mount. Updated MWFFileView to make
20006             use of this information
20007           - Fixed a bug that caused FileDialog to crash when
20008             ".recently_used" file had a zero size
20009           - FilterIndex does now what it should
20010           - Some Refactoring
20011         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
20012             FileDialog changes
20013
20014 2006-02-09  Jackson Harper  <jackson@ximian.com>
20015
20016         * ComboBox.cs: Don't touch if null.
20017
20018 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
20019
20020         * Cursor.cs: 64bit safeness fix
20021         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
20022
20023 2006-02-09  Jackson Harper  <jackson@ximian.com>
20024
20025         * Form.cs: If a form is made into an MDI form update the styles so
20026         all the props can get set correctly.
20027         - Kill the mdi_container when we dont need it anymore.
20028         * InternalWindowManager.cs: Add missing NOT
20029
20030 2006-02-08  Jackson Harper  <jackson@ximian.com>
20031
20032         * InternalWindowManager.cs: Respek clipping when drawing MDi
20033         decorations.
20034
20035 2006-02-08  Jackson Harper  <jackson@ximian.com>
20036
20037         * Hwnd.cs: Add bits to track non client expose events.
20038         * XplatUIX11.cs: Track non client expose events on the hwnd. This
20039         gives us a proper invalid rect and will allow for some nice
20040         optimizations with NC client drawing
20041         - MDI windows are children windows, so move their style handling
20042         into the child window block.
20043         * InternalWindowManager.cs: Remove a state reset that was
20044         getting invoked at the wrong time. Fixes managed windows getting
20045         into a 'stuck' captured state.
20046
20047 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20048
20049         * TextControl.cs (Document.ctor): Now initializing 
20050           selection_anchor. Fixes #77493
20051
20052 2006-02-07  Jackson Harper  <jackson@ximian.com>
20053
20054         * TrackBar.cs: The increment/decrements were backwards.
20055
20056 2006-02-07  Mike Kestner  <mkestner@novell.com>
20057
20058         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
20059         to the instance itself.
20060
20061 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
20062
20063         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
20064           on ulongs and pointers, the size differs between 32bit and 64bit
20065           systems. 
20066
20067 2006-02-07  Mike Kestner  <mkestner@novell.com>
20068
20069         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
20070         for 64 bit platforms to work around a metacity bug. 
20071
20072 2006-02-07  Jackson Harper  <jackson@ximian.com>
20073
20074         * TrackBar.cs: Process the input keys we need, and hookup to
20075         KeyDown instead of using WndProc, so we get key messages.
20076
20077 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
20078
20079         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
20080           machine we're on. 
20081         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
20082           we need to translate the XdndVersion atoms array before sending it
20083
20084 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
20085
20086         * XplatUIX11.cs: 
20087           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
20088             number of bits for the property, not the number of bytes. The
20089             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
20090             but would not crash since it specified 8 bits instead of 4 bits)
20091           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
20092             defined as XID -> long in the C headers)
20093           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
20094             references since those are now IntPtr to begin with
20095           - Switched all Atom.XXX 'int' casts to IntPtr casts
20096           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
20097           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
20098           - Added XChangeActivePointerGrab DllImport (for X11DnD)
20099         * X11Structs.cs:
20100           - Changed 'int' type for Atoms in XEvent structures to IntPtr
20101           - Changed atom in HoverStruct to be IntPtr
20102         * X11DnD.cs:
20103           - Removed local DllImports, switched code to use those from XplatUIX11
20104           - Removed/fixed casts related to the switch of Atom to be a IntPtr
20105
20106 2006-02-06  Mike Kestner  <mkestner@novell.com>
20107
20108         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
20109         method signatures in the import region.  There may still be some
20110         lingering struct marshaling issues, as I didn't drill down into those.
20111         Yet.
20112
20113 2006-02-06  Jackson Harper  <jackson@ximian.com>
20114
20115         * ComboBox.cs: Dont manually set the top_item, this is computed
20116         when the scrollbar position is set.
20117
20118 2006-02-06  Mike Kestner  <mkestner@novell.com>
20119
20120         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
20121         startup crashes on amd64.  There's other fixes needed.  All pinvoke
20122         usage of Atom needs to be mapped to IntPtr for example.  And there are
20123         likely other int/long issues to be addressed.
20124
20125 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
20126
20127         * FileDialog.cs: One more...
20128
20129 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20130
20131         * FileDialog.cs: Next try
20132
20133 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20134
20135         * FileDialog.cs: First part of fix for #77464
20136
20137 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
20138
20139         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
20140           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
20141           AcceptButton border drawing.
20142
20143 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
20144
20145         * Form.cs: Moved positioning of form after auto scaling is applied,
20146           otherwise it would possibly use wrong form size.
20147
20148 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
20149
20150         * Control.cs (RecreateHandle): No need to re-create any child
20151           controls, the child windows will get destroyed automatically by
20152           the windowing system or driver, and re-created when the handle
20153           is being accessed the first time. Fixes #77456
20154         * Form.cs: No longer setting the form to closing if the handle is 
20155           being recreated. This seems like the right thing to do, don't
20156           have a bug or testcase for this, though.
20157
20158 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20159
20160         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
20161           controls to avoid unwanted side effects
20162
20163 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
20164
20165         * Control.cs: 
20166           - ScaleCore needs to scale the bounds, not the ClientSize of the 
20167             control. Fixes #77416.
20168           - DefaultSize is 0,0 for control
20169         * TextBoxBase.cs: 
20170           - DefaultSize is 100, 20
20171           - SetBoundsCore: Now enforcing the height, no matter if the provided
20172             height is more or less than the preferred one, as long as AutoSize
20173             is on
20174         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
20175
20176 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
20177
20178         * Control.cs:
20179           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
20180             call unless both performLayout is true *and* we have a pending
20181             layout change
20182           - ResumeLayout: MS does not completely nest Suspend and Resume,
20183             they bottom out at 0, fixed our code to match that.
20184           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
20185             SetBoundsCore, we were updating even when we shouldn't. This fixes
20186             swf-anchors mis-anchoring when resizing the app fast and lots.
20187           - UpdateDistances: Now only setting the left and top distance if 
20188             we have a parent and are not suspended, this is based on
20189             a suggestion by Don Edvaldson in bug #77355.
20190           - OnVisibleChanged: Fixed logic when to create the control. We may
20191             not create the control if we have no parent or if it's not visible;
20192             switched to using Visible property instead of is_visible field 
20193             since the property also considers parent states. This fixes a bug
20194             when starting Paint.Net
20195
20196 2006-02-02  Jackson Harper  <jackson@ximian.com>
20197
20198         * Form.cs: If the forms handle hasn't been created yet don't call
20199         into xplatui to make it top most, just set the topmost flag on the
20200         form in CreateParams
20201         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
20202
20203 2006-02-01  Jackson Harper  <jackson@ximian.com>
20204
20205         * ScrollableControl.cs: Refactored the Recalculate method a
20206         little, this wasn't handling all the variants of bottom and right
20207         bars needed to be added and added/removed based on their
20208         counterparts being added/removed (which changes the drawable
20209         size). Also we special case client widths and heights of 0 and
20210         don't add the scrollbar for those.
20211
20212 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
20213
20214         * XplatUIX11.cs: 
20215           - Added method to get AbsoluteGeometry(); currently unused, but might
20216             be used in the future, if we try again to figure out toplevel
20217             coordinates with some more crappy window managers
20218           - Added FrameExtents() method to retrieve the WM set decoration size
20219           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
20220             to deal with at least KDE, FVWM and metacity (Fixes #77092)
20221         * Hwnd.cs: 
20222           - Added whacky_wm tracking var for metacity
20223           - Added logic to have default menu height if the actual menu height
20224             has not yet been calculated (part of fix for #77426)
20225         * Form.cs: Keep track whether client size has been set and re-set 
20226           it if a menu is added/removed afterwards (Fixes #77426)
20227
20228 2006-01-31  Jackson Harper  <jackson@ximian.com>
20229
20230         * Control.cs: When a new Site is set on the component attempt to
20231         pull the AmbientProperties from it.
20232
20233 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
20234
20235         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
20236           in the background of the owning form. Fixes #77332
20237
20238 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20239
20240         * MimeIcon.cs: Fix for #77409
20241
20242 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
20243
20244         * XplatUIX11GTK.cs: Initial import
20245
20246 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
20247
20248         * FixedSizeTextBox: fixes class signature
20249
20250 2006-01-30  Jackson Harper  <jackson@ximian.com>
20251
20252         * FixedSizeTextBox.cs: New internal class that represents a
20253         textBox that will not be scaled.
20254         * TreeView.cs:
20255         * ComboBox.cs:
20256         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
20257         standard TextBox.
20258                 
20259 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
20260
20261         * XplatUIX11.cs: Retrieve default screen number instead of
20262           assuming 0. Attempted fix for #77318
20263
20264 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
20265
20266         * XplatUIWin32.cs: 
20267           - GetWindowPos: When a window is parented by FosterParent, use 
20268             the desktop instead of FosterParent as the base to get coordinates
20269           - CreateWindow: Don't make FosterParent the parent window for Popups
20270             if we don't want a taskbar entry, Popups automatically don't get one
20271         * Hwnd.cs: Need to call remove to actually remove the key from the
20272           hash table
20273
20274 2006-01-30  Mike Kestner  <mkestner@novell.com>
20275
20276         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
20277
20278 2006-01-30  Jackson Harper  <jackson@ximian.com>
20279
20280         * TreeView.cs:
20281         * TreeNode.cs: Raise events no matter how the treenode is
20282         checked. Patch by Don Edvalson.
20283
20284 2006-01-30  Jackson Harper  <jackson@ximian.com>
20285
20286         * TreeNode.cs: Signature fix.
20287
20288 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
20289
20290         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
20291
20292 2006-01-20  Mike Kestner  <mkestner@novell.com>
20293
20294         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
20295         event forwarding when menus are active.
20296         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
20297         Most of the patch is pdb's with a little rework.
20298
20299 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20300
20301         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
20302           Removed GetMenuDC and ReleaseMenuDC methods; replaced
20303           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
20304         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
20305         * InternalWindowManager.cs: Added use of PaintEventStart/End to
20306           handling of WM_NCPAINT message, now passing the PaintEventArgs to
20307           the PaintWindowDecorations method
20308         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
20309         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
20310         * MenuAPI.cs: Made tracker window invisible
20311         * XplatUIWin32.cs:
20312           - Removed GetMenuDC and ReleaseMenuDC methods
20313           - Implemented the client=false path for PaintEventStart and
20314             PaintEventEnd
20315
20316 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20317
20318         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
20319         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
20320           styles
20321         * Form.cs: 
20322           - MaximizeBox, MinimizeBox: Recreate the handle when setting
20323             the style
20324           - CreateParams: Reworked the styles to match MS look'n'feel,
20325             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
20326             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
20327
20328 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
20329
20330         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
20331           window is not mapped, since otherwise every form that's being 
20332           created is considered minimized, which is wrong.
20333         * Form.cs: Catching the exception and returning our internal value
20334           instead
20335
20336 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
20337
20338         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
20339           SetWindowMinMax() to have means to tell the driver about the minimum,
20340           maximum and maximized state window sizes. (Part of the fix for #76485)
20341         * Form.cs:
20342           - Implemented tracking of minimum and maximum window size, now calling
20343             new SetWindowMinMax() driver method to tell the driver (Part of the
20344             fix for #76485)
20345           - Finished handling of WM_GETMINMAXINFO method, now setting all values
20346             (Completes fix for #76485)
20347           - Calling new SetWindowMinMax driver method when the handle for a 
20348             form is created, to make sure the driver knows about it even if
20349             the values have been set before the window was created
20350           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
20351             to avoid messing up our anchoring calculations (partial fix
20352             for #77355)
20353         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
20354         * XplatUIX11.cs:
20355           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
20356           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
20357             (and presumably other freedesktop.org compliant WMs). Left the
20358             assumption unmapped=minimized, needed for SetVisible to work.
20359           - Now setting the window state when creating windows
20360           - Fixed SetVisible to consider/set the window state when mapping
20361             a Form. We cannot set the state before it's mapped, and we cannot
20362             use Form.WindowState once it's mapped (since it would ask the
20363             driver and get 'normal'. Therefore, we grab the state before
20364             mapping, map, and then set state.
20365           - Implmemented SetWindowMinMax method; Metacity does not seem to
20366             honor the ZoomHints, though.
20367         * XplatUIWin32.cs:
20368           - Removed MINMAXINFO (moved to XplatUIStructs)
20369           - Added SetWindowMinMax stub (on Win32 the only way to set that
20370             information is in response to the WM_GETMINMAXINFO message, which
20371             is handled in Form.cs)
20372           - Added logic to SetVisible to set the proper window state when a 
20373             form is made visible (fixes #75720)
20374
20375 2006-01-26  Jackson Harper  <jackson@ximian.com>
20376
20377         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
20378         same way we handle them with Invoke.
20379
20380 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
20381
20382         * Form.cs:
20383           - Added tracking of window state so CreateParams can return
20384             the appropriate style
20385           - Moved setting of WS_CAPTION style in CreateParams to allow
20386             styles without caption
20387         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
20388           control if the TextBox property is accessed. Fixes #77345
20389         * Control.cs:
20390           - get_Created: now uses is_disposed and is_created to determine
20391             return value (suggested by Jackson)
20392           - CreateHandle: No longer exits if the handle is being recreated
20393           - RecreateHandle: If the handle is not yet created call the 
20394             appropriate method to create either control or handle. If the
20395             control is already created CreateHandle will simply exit instead
20396             of just creating the handle
20397         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
20398           now SendMessage WM_DESTROY directly to the control when DestroyWindow
20399           is called.
20400         * XplatUIX11.cs: 
20401           - When DestroyWindow is called, instead of waiting for the 
20402             DestroyNotification from X11, we directly post it to the WndProc
20403             and immediately dispose the hwnd object.
20404             Same applies to DestroyChildWindows, and this obsoletes the
20405             expose_pending tracking. Contrary to Win32 behaviour we destroy our
20406             child windows before our own, to avoid X11 errors.
20407           - Removed the direct sending of WM_PAINT on UpdateWindow
20408         * XplatUIWin32.cs:
20409           - Reworked DoEvents and GetMessage to allow access to internal queue
20410             even when trying non-blocking access to the queue.  Fixes #77335. 
20411             Based on a patch suggestion by Don Edvalson. The new private
20412             GetMessage can now also be used as a backend for a PeekMessage
20413             frontend version.
20414         * XplatUI.cs: Improved debug output for CreateWindow
20415
20416 2006-01-25  Jackson Harper  <jackson@ximian.com>
20417
20418         * Help.cs: Allow param to be null. Patch by Don Edvalson.
20419
20420 2006-01-24  Jackson Harper  <jackson@ximian.com>
20421
20422         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
20423         when we have a MaxDropItems lower then the selected index.
20424
20425 2006-01-24  Jackson Harper  <jackson@ximian.com>
20426
20427         * Control.cs: Don't allow selection of non visible controls, allow
20428         selection of controls without parents.
20429
20430 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20431
20432         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
20433         * DataGridDrawingLogic.cs: Add editing row only when is necessary
20434
20435 2006-01-23  Jackson Harper  <jackson@ximian.com>
20436
20437         * UpDownBase.cs: Make the textbox handle all the selection and
20438         tabbing. This fixes tabing to updown controls.
20439
20440 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
20441
20442         * TextBoxBase.cs: fixes exception thown the object was null
20443
20444 2006-01-23  Jackson Harper  <jackson@ximian.com>
20445
20446         * ButtonBase.cs: Just use the base CreateParams. They set
20447         visibility and enabled correctly.
20448         * ComboBox.cs:
20449         * TrackBar.cs:
20450         * MonthCalendar.cs: Lets let the base set as much of the
20451         createparams as possible so we don't have duplicate code all over
20452         the place.
20453
20454 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
20455
20456         * ThemeGtk.cs: Added TrackBar and some experimental code to
20457           get double buffering back
20458
20459 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
20460
20461         * DataGrid.cs: Allows row number set internally higher than the last
20462         when creating a new row. Restores the editing functionality.
20463
20464 2006-01-20  Mike Kestner  <mkestner@novell.com>
20465
20466         * MimeIcon.cs: delay Image creation until the icons are accessed
20467         instead of creating 190 scaled images on GnomeHandler startup.
20468
20469 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
20470
20471         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
20472           first call base before processing the event. Fixes #77279
20473
20474 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
20475
20476         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
20477           that the stride for the GDI bitmap would match the stride of
20478           a DIB or a Cursor.
20479
20480 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
20481
20482         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
20483
20484 2006-01-19  Jackson Harper  <jackson@ximian.com>
20485
20486         * ComboBox.cs: Hookup the text controls keydown event so we get
20487         those when the text control has the focus.
20488
20489 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20490
20491         * Label.cs: Now using the base events instead of defining new ones;
20492           this allows us to just call the base properties without having to
20493           duplicate all base property logic 
20494
20495 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20496
20497         * Label.cs: A label by default is not a tabstop (Fixes one of our
20498           failing nunit tests)
20499
20500 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
20501
20502         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
20503         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
20504
20505 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
20506
20507         * Cursor.cs: Reimplemented creating cursor bitmaps without using
20508           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
20509           This fixes #77218
20510         * XplatUIWin32.cs: 
20511           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
20512             constructor creates images that can't be saved. Part of the fix
20513             for #76103
20514           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
20515           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
20516             bug fix for handling window state in forms properly)
20517
20518 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20519
20520         * ThemeGtk.cs: Simplify ScrollBar drawing
20521
20522 2006-01-18  Jackson Harper  <jackson@ximian.com>
20523
20524         * Splitter.cs: Set the default dock style for the splitter control
20525         in the constructor.
20526
20527 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20528
20529         * ThemeGtk.cs: Corrected StateType and ShadowType for
20530           gtk_paint_box
20531
20532 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20533
20534         * Control.cs: Make use of Theme.DoubleBufferingSupported
20535         * ThemeGtk.cs:
20536           - Added drawing for flat style buttons
20537           - Added ScrollBar drawing
20538
20539 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
20540
20541         * ThemeClearlooks.cs: Removed some unneeded code.
20542         * ThemeGtk.cs: First part of ThemeGtk enhancements.
20543
20544 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20545
20546         * LinkLabel.cs: We need to update the hover drawing when
20547           leaving the control as well.
20548
20549 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
20550
20551         * DataGrid.cs: Clicking on non empty areas in the columns
20552            area was giving an exception
20553
20554 2006-01-17  Jackson Harper  <jackson@ximian.com>
20555
20556         * ThemeWin32Classic.cs:
20557         * ListView.cs: Do not draw/clip the headers when the header style
20558         is None.
20559
20560 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20561
20562         * DataGrid.cs: Fixes 77260
20563         
20564 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
20565
20566         * DataGrid.cs: Clicking on a column on a empty grid was giving
20567           an exception
20568
20569 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
20570
20571         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
20572           or any keypress will crash the grid.
20573
20574 2006-01-17  Mike Kestner  <mkestner@novell.com>
20575
20576         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
20577         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
20578         invisible/previously-visible items.
20579         [Fixes #76909]
20580
20581 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
20582
20583         * ThemeClearlooks.cs:
20584         - Added CL_Draw_Button method; now other theme controls that are 
20585           not derived from button or do not have a button can draw buttons
20586           too
20587         - Updated ComboBox drawing
20588         - Beautified RadioButton drawing
20589         - Corrected drawing of bottom and left tabs
20590         - Beautified DateTimePicker and MonthCalendar
20591         - Added CPDrawButton and CPDrawRadioButton
20592
20593 2006-01-16  Jackson Harper  <jackson@ximian.com>
20594
20595         * ComboBox.cs: Set the initial value of the scrollbar to the
20596         current index. Reduce the numbers of refreshs and IndexOfs called.
20597
20598 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
20599
20600         * FileDialog.cs: When the file listview is focused hitting the
20601           backspace key moves the fileview to the parent directory
20602
20603 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20604
20605         * Form.cs: 
20606           - Added RecreateHandle call when changing taskbar visibility to 
20607             trigger reparenting in Win32 driver (Fixes #75719)
20608           - If a window has minimize or maximize buttons, it cannot have
20609             a help button
20610         * XplatUIWin32.cs:
20611           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
20612             the toplevel form with FosterParent (A toolwindow not on the
20613             taskbar) (Fixes #75719)
20614           - Made FosterParent a toolwindow
20615
20616 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20617
20618         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
20619
20620 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20621
20622         * ToolTip.cs: If SetToolTip is called from a control and the mouse
20623           is currently over that control, make sure that tooltip_window.Text
20624           gets updated
20625
20626 2006-01-13  Mike Kestner  <mkestner@novell.com>
20627
20628         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
20629
20630 2006-01-13  Jackson Harper  <jackson@ximian.com>
20631
20632         * TreeView.cs: On MS GetNodeAt never actually factors in the X
20633         value passed.  Also redraw the selected node when we recieve
20634         focus, so tabbing between trees works correctly.
20635
20636 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
20637
20638         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
20639           ~/.gconf/%gconf-tree.xml, so use
20640           .gconf/desktop/gnome/interface/%gconf.xml
20641
20642 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20643
20644         * TextControl.cs: Draw text in gray if control is disabled
20645
20646 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
20647
20648         * TreeView.cs: Draw the focus rectangle outside the highlight, to
20649           make sure it's always visible. Fixes #76680.
20650
20651 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
20652
20653         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
20654
20655 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
20656
20657         * PageSetupDialog.cs: Added.
20658         * PrintDialog.cs: Attributes.
20659         * PrintPreviewControl.cs: Updates.
20660         * PrintPreviewDialog.cs: Updates.
20661         
20662 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20663
20664         * Control.cs: Undid my selection check fix, since it's not needed
20665         * TextBoxBase.cs:
20666           - Now considering the presence of hscroll/vscroll when sizing
20667             vscroll/hscroll respectively. Fixed bug #77077
20668           - Added Left/Up/Down/Right to IsInputKey list to prevent
20669             ContainerControl from stealing them. This fixes what I broke
20670             with my last checkin.
20671
20672 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
20673
20674         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
20675           I finally understand how the property can be set without a setter :-)
20676
20677 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20678
20679         * Application.cs:
20680           - Switched RunLoop to use static Message.Create to create a 
20681             Message object
20682           - Added PreProcessMessage call in runloop for keyboard events; this
20683             is part of the fix for #77219, I overlooked this originally in the
20684             MSDN doc for PreProcessMessage
20685         * Control.cs:
20686           - Removed call to PreProcessMessage from handling of keyboard 
20687             messages; it's supposed to be done in the message pump
20688           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
20689             per MSDN documentation.
20690           - IsInputChar: All chars are input chars by default; removed the 
20691             parent calling chain, MS does not document that
20692           - PreProcessMessage: If IsInputChar is true, we want to return false
20693             to allow dispatching of the message
20694           - When selecting the next control, now also check that we're not
20695             selecting ourselves again and therefore return a false positive.
20696         * TextBoxBase.cs:
20697           - Tried to match return values for IsInputKey and ProcessDialogKey
20698             to what MS returns; moved processing of our special keys outside
20699             ProcessDialogKey since MS does not seem to return true on those.
20700           - Moved code that previously was in ProcessDialogKey into new private
20701             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
20702           - Reworked handling of WM_CHAR to not have to duplicate code from
20703             Control.cs anymore, instead we simply call down to base.
20704            
20705 2006-01-12  Jackson Harper  <jackson@ximian.com>
20706
20707         * ComboBox.cs: We always need to refresh the text area when
20708         EndUpdate is called. Fixes the combobox in the file dialog.
20709         * Control.cs: Don't create the creator_thread until the controls
20710         handle is created.  Also in InvokeRequired we check if the
20711         creator_thread is null. This gives the effect of InvokeRequired
20712         returning true if the controls handle is not created yet, and
20713         matches MS.
20714
20715 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20716
20717         * XplatUI.cs:
20718           - Added StartLoop() driver method. This is used to allow drivers to
20719             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
20720             loop for a particular thread
20721           - Added EndLoop() driver method. This is called once the message
20722             pump for the thread is shut down
20723           - Added SupportsTransparency method to allow the driver to indicate
20724             opacity support for windows
20725         * Form.cs:
20726           - Removed TODO attribute, completed AllowTransparency property
20727           - Added documented logic to Opacity
20728         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
20729           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
20730           versions of CompatibleTextRendering
20731         * X11Structs.cs: Added opacity atom to our atom enumeration
20732         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
20733           of a form might be set before it's reparented by the WM, and we need
20734           the opacity value without calling up to Form)
20735         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
20736           SupportsTransparency() driver methods
20737         * Application.cs: Now calling StartLoop and EndLoop driver methods
20738         * XplatUIX11.cs:
20739           - Added opacity atom registration
20740           - Added StartLoop()/EndLoop() methods. They're empty right now but
20741             will need to get implemented when we switch to a per-thread queue
20742           - Implemented SupportsTransparency() method
20743           - Implemented SetWindowTransparency() method
20744           - Added support for setting the opacity value when a window is
20745             reparented (since the opacity needs to be set on the WM frame)
20746         * XplatUIOSX.cs, XplatUIWin32.cs:
20747           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
20748
20749 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20750
20751         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
20752
20753 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
20754
20755         * FileDialog.cs: Added ToolTip for MWFFileView
20756         * MimeIcon.cs: Rewrote GnomeHandler.
20757           - Get currently used gnome icon theme from
20758             ($HOME)/.gconf/%gconf-tree.xml
20759           - Make use of inherited icon themes
20760           - Support SVG icon themes like Tango via librsvg
20761
20762 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20763
20764         Revert's Jackson's revert which broke 2.0 builds.   Fix both
20765         builds. 
20766         
20767         * Application.cs: Move the use_compatible_text_rendering outside
20768         the NET_2_0 define.  If we ever need to use the
20769         use_compatible_text_rendering on the individual controls they will
20770         access the variable from the common shared code paths.
20771
20772 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
20773
20774         * XplatUI.cs:
20775           - Added more granular debug options
20776           - Added method to print both window text and id
20777           - Switched debug output to use new Window() debug method
20778           - Added IsEnabled() driver method
20779           - Added EnableWindow() driver method
20780         * Form.cs:
20781           - Removed end_modal; no longer needed, new loop handles termination
20782             via 'closing' variable
20783           - If form is modal, setting DialogResult will now initiate loop
20784             termination via 'closing' variable
20785           - Added support for is_enabled/WS_DISABLED to CreateParams
20786           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
20787             does all the work
20788           - Removed code that's now in RunLoop from ShowDialog()
20789           - Added various documented sanity checks to ShowDialog()
20790           - Added handling of WM_DESTROY message; we set 'closing' on getting
20791             the message to indicate the message pump to terminate
20792           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
20793             send by the Application.ExitThread method. (We send the message
20794             to destroy the window after all other events have been
20795             processed through the queue, instead of destroying the handle 
20796             directly)
20797           - Moved code from Close() method to WM_CLOSE handler; added logic
20798             to only send close-related events if the form is not displayed
20799             modal
20800         * Splitter.cs (..ctor): Fixed typo in resource name
20801         * Control.cs:
20802           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
20803             brush now
20804           - set_Cursor: Now only setting calling into XplatUI if the handle for
20805             the control is already created; this avoids implict handle creation
20806             or crashes if it's not created
20807           - set_Enabled: Now setting the enabled state via the new driver method
20808             instead of just tracking it
20809           - CreateParams: Added logic to set WS_DISABLED based on enabled state
20810           - CreateControl: Reordered event firing and method calls to more
20811             closely fire events in the order MS does. Now setting the
20812             enabled state in the driver when creating the control.
20813           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
20814             match MS order
20815         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
20816           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
20817         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
20818         * Hwnd.cs:
20819           - Added tracking of window enabled state (get_Enabled/set_Enabled)
20820           - Added EnabledHwnd property to easily allow a driver to find the
20821             handle of the first enabled window in the parent chain (this is
20822             used by drivers to pass up input events of disabled windows)
20823         * XplatUIDriver.cs: Added IsEnabled() method
20824         * Application.cs:
20825           - Removed crude and obsolete exiting tracking variable
20826           - Removed internal ModalRun(); replaced by RunLoop()
20827           - Implemented private CloseForms() method to allow closing all 
20828             windows owned by a particular (or all) threads
20829           - Exit() now properly closes all windows without forcing the message
20830             pump to quit
20831           - Removed obsolete InternalExit() method
20832           - Changed Run() methods to use new RunLoop() message pump
20833           - Implemented new RunLoop() method for both modal and non-modal forms
20834         * CommonDialog.cs:
20835           - get_CreateParams: Added setting of WS_DISABLED
20836           - Simplified ShowDialog(); now all the work is done in RunLoop(),
20837             invoked via Form.ShowDialog()
20838         * NativeWindow.cs: We don't remove the window from the collection when
20839           the handle is destroyed; there might still be messages for it in the
20840           queue (mainly the resulting WM_DESTROY); instead it will be removed
20841           when Control calls InvalidateHandle in the WM_DESTROY handler
20842         * XplatUIX11.cs:
20843           - CreateWindow: Added logic to handle the WS_DISABLED window style
20844           - EnableWindow: Implemented based on Hwnd.Enabled
20845           - GetMessage: Reset PostQuitState so the method can be called again
20846           - Implemented support for disabled windows (passing messages to the
20847             first enabled parent) in handling all input messages
20848           - Added optimizations for handling Expose events
20849           - Implemeted new driver method IsEnabled()
20850           - Now always resetting paint pending tracking vars when we start paint
20851           - Re-implemented UpdateWindow via just sending a WM_PAINT message
20852         * XplatUIOSX.cs: Added IsEnabled method stub
20853         * XplatUIWin32.cs: Implemented new IsEnabled() method
20854
20855 2006-01-11  Jackson Harper  <jackson@ximian.com>
20856
20857         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20858         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
20859         variables a little.
20860         * ColorDialog.cs: Clear out the old form before adding the new
20861         panel.  
20862
20863 2006-01-11  Jackson Harper  <jackson@ximian.com>
20864
20865         * X11Dnd.cs: Make sure to add all the text formats when adding
20866         strings to the data object.
20867         * TreeNodeCollection.cs: When adding to a sorted tree we need to
20868         do some redrawing too.  Also change the UpdateNode to an
20869         UpdateBelow so the newly added node gets painted.
20870         
20871 2006-01-11  Miguel de Icaza  <miguel@novell.com>
20872
20873         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
20874         LinkLabel.cs, PropertyGrid.cs: Implement the
20875         UseCompatibleTextRendering property for 2.x
20876
20877         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
20878
20879 2006-01-11  Jackson Harper  <jackson@ximian.com>
20880
20881         * TreeView.cs: Use the property for setting the selected node so
20882         the correct events get raised.
20883         * TreeNode.cs: Update the tree when the fore/back colours of a
20884         node are set.
20885
20886 2006-01-10  Jackson Harper  <jackson@ximian.com>
20887
20888         * TreeView.cs: Allow setting SelectedNode to null.
20889
20890 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20891
20892         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
20893
20894 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20895
20896         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
20897
20898 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20899
20900         * PrintDialog.cs: Added attributes and set default property values.
20901
20902 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20903
20904         * PrintControllerWithStatusDialog.cs: 
20905         Added PrintControllerWithStatusDialog.
20906
20907 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20908
20909         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
20910         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
20911
20912 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
20913
20914         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
20915
20916 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20917
20918         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
20919         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
20920
20921 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20922
20923         * MimeIcon.cs: Added internal class SVGUtil.
20924
20925 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
20926
20927         * FileDialog.cs: Don't crash if there are two files with the
20928           same name but different locations.
20929
20930 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
20931
20932         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
20933         dates across multiple month grids. Used to not highlight entire 
20934         month, but does now.
20935         
20936 2006-01-06  Jackson Harper  <jackson@ximian.com>
20937
20938         * MonthCalendar.cs: Removed DoEvents call to prevent a running
20939         message loop. Change timer intervals to numbers that seem more
20940         natural.
20941
20942 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
20943
20944         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
20945           object for location info since screen object is now implemented.
20946
20947 2006-01-05  Jackson Harper  <jackson@ximian.com>
20948
20949         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
20950         * AsyncMethodResult.cs: We no longer use a WeakReference for the
20951         AsyncMethodResult, this is because we ALWAYS want the
20952         ManualResetEvent to get set.
20953         * Control.cs: When disposing use an async invoke to call shutdown
20954         code, so that thigns don't block on the finalizer thread.  Also
20955         check if we even have a message loop before trying to send
20956         messages, if we don't then don't bother sending messages.
20957         - No more weak references for async methods
20958         * XplatUIDriver.cs: No more weak references for async methods.
20959
20960 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20961
20962         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
20963           returns two FontFamily with the same name
20964
20965 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20966
20967         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
20968           drawing disabled text. Instead using the ColorGrayText color
20969
20970 2006-01-04  Jackson Harper  <jackson@ximian.com>
20971
20972         * TreeNode.cs: redraw the node when its image index is changed.
20973
20974 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
20975
20976         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
20977           time I checked there are no others like it.
20978
20979 2006-01-04  Jackson Harper  <jackson@ximian.com>
20980
20981         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
20982         this gives the behavoir I was looking for.
20983         * Control.cs: Special case Invoking EventHandlers, this matches MS
20984         and fixes part of bug #76326.
20985
20986 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20987
20988         * ThemeClearlooks.cs, FileDialog.cs:
20989           - Reflect the latest Theme class changes
20990           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
20991             with DateTime
20992             
20993 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
20994
20995         * Theme.cs: Cache UI resource images and resize them if needed
20996
20997 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
20998
20999         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
21000           is called. This fixes the crash in Nexxia when setting the font
21001           attributes in the chat. [However, RTF needs a look-over to make sure
21002           that all SelectionXXX methods handle the special case that selection
21003           is empty and therefore the change must be applied to all text starting
21004           at the cursor/selection start]
21005
21006 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
21007
21008         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21009           XplatUIOSX.cs: Added SendMessage and PostMessage methods
21010         * X11Keyboard.cs: Switched to new way of calling PostMessage
21011
21012 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
21013
21014         * Theme.cs: Added theme interface for images to allow the theme to
21015           control what images are used for things like FileDialog, MessageBox
21016           icons, etc.
21017         * MessageBox.cs: Now uses the new Theme icon/image interfaces
21018
21019 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
21020
21021         * FileDialog.cs:
21022           - Removed some dead code
21023           - Opening a recently used file does work now
21024           - Small UI enhancements
21025           - Refactoring
21026
21027 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
21028
21029         * FileDialog.cs: Forgot too add __MonoCS__
21030
21031 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
21032
21033         * FileDialog.cs: We are able to read recently used files now let's
21034           go on and write them.
21035
21036 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
21037
21038         * FileDialog.cs: Breathe some life into "last open"/"recently used"
21039           button
21040         * MimeIcon.cs: Do a check for the top level media type also
21041
21042 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
21043
21044         * ThemeClearlooks.cs:
21045           - Added CPDrawStringDisabled
21046           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
21047             some chars if the text doesn't fit into text_rect
21048           - DrawListViewItem: If View = View.LargeIcon center the image;
21049             rewrote the drawing of ListViewItem.Text if View = 
21050             View.LargeIcon
21051
21052 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
21053
21054         * MimeIcon.cs: Use default KDE icon theme if there is no
21055           "48x48" directory for the current icon theme, fixes #77114
21056         * Mime.cs: Disable not working and actually not used code. 
21057         * ThemeWin32Classic.cs:
21058           - Replace "new SolidBrush" in GetControlBackBrush and
21059             GetControlForeBrush with ResPool.GetSolidBrush
21060           - Changed DrawListViewItem from private to protected virtual
21061         * FileDialog.cs:
21062           - Added form.MaximizeBox = true
21063           - Don't throw an exception if there is a broken symbolic link
21064
21065 2005-12-23  Jackson Harper  <jackson@ximian.com>
21066
21067         * TabControl.cs: Give the panels focus, keyboard navigation is
21068         fixed so this works correctly now.
21069         - We need these key events also.
21070         * ToolBar.cs: Remove some of the poor mans double buffering.
21071         
21072 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
21073
21074         * ComboBox.cs: The internal TextBox now returns the focus.
21075
21076 2005-12-23  Jackson Harper  <jackson@ximian.com>
21077
21078         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
21079
21080 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21081
21082         * Control.cs: Removed debug code
21083         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
21084           implicit children
21085
21086 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
21087
21088         * Control.cs: When creating the control, update the Z-order after
21089           all it's children are created, too. (Fixes nexxia not showing
21090           picturebox bug)
21091
21092 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
21093
21094         * Control.cs: Do not update the anchoring distances if layout is
21095           suspended, instead do it once layout is resumed
21096
21097 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
21098
21099         * Control.cs: 
21100           - After many hours of debugging, for both Jackson and
21101             myself, it turns out that it helps to set the parent of a control
21102             if you want to actually see it onscreen. In the spirit of that
21103             discovery, we're now setting the parent of the control and
21104             it's children when the control's handle is created. This fix
21105             will make Lutz Roeder's Reflector run happily. 
21106           - now just creating the handle instead of the whole control when
21107             getting a graphics context for the control.
21108
21109 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21110
21111         * ScrollableControl.cs: When calculating the canvas, don't consider
21112           the scrollbar widths. Instead, predict if horizontal scrollbar
21113           will affect canvas when deciding on vertical display and vice versa.
21114
21115 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
21116
21117         * RichTextBox.cs: Set default RTF font for documents that don't
21118           have a font table (Fixes #77076)
21119
21120 2005-12-22  Jackson Harper  <jackson@ximian.com>
21121
21122         * TextBoxBase.cs: It's difficult to do, but you can have an empty
21123         clipboard. This prevents a NullRef in that case.
21124         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
21125         clipboard. PRIMARY is for the currently selected text only. (We
21126         should implement PRIMARY at some point.
21127
21128 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21129
21130         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
21131           a Unicode function with a structure that was defined in Ansi way.
21132           This fixes #76942.
21133
21134 2005-12-21  Jackson Harper  <jackson@ximian.com>
21135
21136         * StatusBar.cs: Statusbar handles its fore/back colours on it's
21137         on. Because thats how it rolls. (and this avoids it using ambient
21138         colours).
21139         * ThemeWin32Classic.cs: Use the proper back color for filling.
21140         * Menu.cs: Use the system menu bar color for drawing menu
21141         bars. Using the window back color will bring ambient colours into
21142         the picture.
21143
21144 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
21145
21146         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
21147           Bitmaps were created and not disposed.
21148
21149 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21150
21151         * Control.cs (CreateControl): Don't do anything if the control is
21152           already created, otherwise we'd fire the OnCreated event more than
21153           once
21154
21155 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21156
21157         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
21158           will always match. Instead return -1. Fixes #76464.
21159
21160 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
21161
21162         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
21163           neither the beginning nor the end of the line (Fixes bug #76479)
21164
21165 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
21166
21167         * Control.cs:
21168           - ControlNativeWindow.ControlFromHandle(): Now handling situation
21169             where handle is invalid
21170           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
21171             instead of slower linear search
21172         * NativeWindow.cs: Don't remove the window from the hashtable until
21173           after the driver has destroyed it (since the driver might use
21174           Control.FromHandle to lookup the control object
21175         * Hwnd.cs: Added DestroyPending property to track if a window is 
21176           already destroyed as far as the driver is concerned and only hasn't
21177           yet notified the control
21178         * XplatUIX11.cs:
21179           - Activate(): Check if the window is still valid before using the 
21180             handle
21181           - Implemented DestroyChildWindow() method to mark child windows as
21182             destroyed when a window is destroyed. This prevents situations 
21183             where we might call an X method based on queued events for a
21184             window that already has been destroyed but we haven't yet pulled
21185             the destroy method from the queue.
21186           - Added a call to the new DestroyChildWindow() method to the drivers
21187             DestroyWindow code. Also now marking the destroyed window itself
21188             as pending
21189
21190 2005-12-20  Jackson Harper  <jackson@ximian.com>
21191
21192         * StatusBar.cs:
21193         * StatusBarPanel.cs: Don't calculate panel sizes on draw
21194         anymore. Just do them when needed, also track the rects of panels
21195         so that we can optimize refreshing more in the future.
21196
21197 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
21198
21199         * ColorDialog.cs: Fixed focus drawing in small color controls
21200
21201 2005-12-19  Jackson Harper  <jackson@ximian.com>
21202
21203         * InternalWindowManager.cs:
21204         * MdiWindowManager.cs: Cleanup some coordinate system changes so
21205         moving windows works properly.
21206
21207 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
21208
21209         * Control.cs: 
21210           - Removed call to InitLayout() from SetBoundsCore(); doc says
21211             it's only called when a control is added to a container
21212           - Split InitLayout logic, moved to separate UpdateDistances() method
21213             since we need to perform those calculations more often than just
21214             when adding the control to a container. (Needed to fix #77022)
21215           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
21216           - Reduced the OnBindingContextChanged events count, don't send them
21217             unless the control is created, we still aren't totally matching
21218             MS, but I can't quite figure out some of their rules
21219
21220 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21221
21222         * ThemeClearlooks.cs: Corrected distance between ProgressBar
21223           stripes
21224
21225 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21226
21227         * ThemeClearlooks.cs:
21228           - Updated ProgressBar drawing
21229           - Corrected drawing of ScrollBars and scroll buttons
21230           - Some temporary fixes for minor pixel artefacts
21231
21232 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
21233
21234         * Control.cs:
21235           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
21236             cause events to be sent in the same order as MS does.
21237           - Added ChangeParent() method to trigger various OnXXXChanged events
21238             that need to be fired when a parent changes (This is a reworking
21239             of the patch from r54254, with the X11 errors fixed)
21240           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
21241             since on MS we get OnLayoutChanged events when calling Clear()
21242           - Changed Enabled property to consider parent state as well, if a
21243             parent is not enabled, the control will not be either
21244           - Changed Parent property to simply call Controls.Add() since that
21245             now does all the work required, this way we avoid code duplication
21246           - Threw in a few OnBindingsContextChanged calls to try and match
21247             when MS sends them. We seem to send a few too many, though.
21248           - Added call to CreateControl when adding the control to a parent.
21249             We were never calling CreateControl. Still needs some work, in
21250             some places we treat HandleCreated and ControlCreated as equal, 
21251             which is wrong
21252           - Removed obsolete commented out code from UpdateZOrder()
21253
21254 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
21255
21256         * ThemeClearlooks.cs: Updated TrackBar drawing.
21257
21258 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21259
21260         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
21261
21262 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
21263
21264         * FileDialog.cs: Add the Help button and the open readonly
21265           checkbox only if needed
21266
21267 2005-12-16  Jackson Harper  <jackson@ximian.com>
21268
21269         * Control.cs: Make sure we have an active menu before trying to
21270         process commands on it. Prevents menu-less forms from crashing
21271         when Alt is pressed.
21272         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
21273         Dieter Bremes.
21274         * RichTextBox.cs: Expand statement to help out gmcs and fix the
21275         2.0 build.
21276
21277 2005-12-16  Jackson Harper  <jackson@ximian.com>
21278
21279         * InternalWindowManager.cs: Don't translate tool windows screen
21280         coordinates. This fixes windows 'bouncing' around when being moved.
21281
21282 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21283
21284         * TextBoxBase.cs:
21285           - MaxLength now treats 2^31-1 equal to unlimited length (this is
21286             not quite MS compatible, MS uses that number only for single line
21287             and 2^32-1 for multi-line, but I figure it won't hurt keeping
21288             the limit at 2GB)
21289           - Now enforcing the MaxLength limit when entering characters
21290           - Added argument to internal Paste() method to track if it's called
21291             from programatically or via keyboard, since keyboard driven pastes
21292             need to enforce max-length
21293           - Added logic to Paste to only paste as many chars as MaxLength 
21294             allows
21295         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
21296         * TextControl.cs:
21297           - Added Length property to return number of characters in document
21298           - Added private CharCount property which only tracks actual chars
21299             in the document (no linefeeds) and fires event when CharCount
21300             changes
21301           - Added tracking of character count to all methods that alter it
21302           - Added LengthChanged event to allow applications to subscribe
21303             to any changes to the document
21304
21305 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
21306
21307         * TextBox.cs: 
21308           - Removed local password_char field (moved to TextBoxBase)
21309           - Now setting the document's password var when password is
21310             set
21311         * TextBoxBase.cs:
21312           - Added password_char field (needed here so MultiLine can
21313             access it)
21314           - Added logic to MultiLine property setter to set the document's
21315             variable when password display is allowed
21316           - Removed debug code and made some debug code conditional
21317         * TextControl.cs:
21318           - Added RecalculatePasswordLine() method to handle special password
21319             char only lines
21320           - Added PasswordChar property, also added related tracking vars
21321           - Draw() method now uses local text var for grabbing text to draw,
21322             this var is set to line.text unless we're doing password display,
21323             then it is set to the pre-generated all-password-chars line
21324           - Added calling RecalculatePasswordLine() method for password lines
21325
21326 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21327
21328         * Hwnd.cs: 
21329           - Added Reparented property to allow tracking of Window Manager
21330             reparenting actions (which affect X/Y calculations of toplevel 
21331             windows)
21332           - Made ToString() print window handles in hex
21333         * XplatUIX11.cs:
21334           - AddConfigureNotify(): Now uses reparented state off Hwnd to
21335             determine if X/Y needs offsetting
21336           - AddConfigureNotify(): Fixed offset calculations
21337           - Now adds ReparentNotify messages into the queue
21338           - Now processes ReparentNotify messages and causes a 
21339             WM_WINDOWPOSCHANGED message to be sent upstream if a window
21340             is reparented (as most likely it's X/Y coordinates are changed
21341             due to that)
21342
21343 2005-12-14  Jackson Harper  <jackson@ximian.com>
21344
21345         * XplatUIX11.cs: Tool windows still need to respek focus.
21346
21347 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
21348
21349         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
21350           have a working release
21351
21352 2005-12-13  Jackson Harper  <jackson@ximian.com>
21353
21354         * Form.cs: Update styles after setting the border style regardless
21355         of whether or not the window is using a window manager.
21356
21357 2005-12-13  Jackson Harper  <jackson@ximian.com>
21358
21359         * Form.cs: We now hook into an internal window manager instead of just an
21360         MDI subsystem, this is so we can have properly behaving tool windows.
21361         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
21362         * InternalWindowManager.cs: New internal class that acts as a
21363         window manager for tool windows and as a base for mdi windows.
21364         * MdiWindowManager.cs: New class that acts as a window manager for
21365         mdi windows.
21366
21367 2005-12-12  Jackson Harper  <jackson@ximian.com>
21368
21369         * Control.cs: Updates so we match behavoir for for implicit
21370         controls. Fixes explosions in MDI.
21371
21372 2005-12-12  Jackson Harper  <jackson@ximian.com>
21373
21374         * Control.cs: Implement Invalidate (Region).
21375
21376 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
21377
21378         * Control.cs: 
21379           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
21380             the same events as MS does. MS fires events for each property 
21381             except, for unknown reasons, Cursor, when the control is reparented. 
21382             I can't seem to totally match add/remove since MS also fires some 
21383             VisibleChanged events, which makes no sense. Consolidated the
21384             parenting code into a separate method so it can be called from
21385             both Add and Remove. set_Parent no longer needs any special logic
21386             as it calls the parent's add method which implicitly fires
21387             all events
21388           - Removed some obsolete code and debug output
21389           - Enabled state is inherited from parents, if this is enabled
21390
21391 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
21392
21393         * Form.cs: Removed commented out code
21394
21395 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
21396
21397         * Control.cs:
21398           - Added internal version of Invoke, with additional argument 
21399             indicating if we're calling it from a Dispose() handler. That
21400             way we can avoid BeginInvoke throwing an exception if we're
21401             calling for an already destroyed window.
21402           - Added a dispose argument to BeginInvokeInternal, and made the
21403             check if a valid window handle chain exists conditional on
21404             it not being a dispose call
21405           - Removed code in DestroyHandle to destroy our children. Since we
21406             now handle the WM_DESTROY message we will catch all our children
21407             being destroyed.
21408           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
21409         * Form.cs:
21410           - Added a field to track the application context of the form.
21411           - No need to set closing variable as response to WM_CLOSE, instead
21412             we destroy the window. We also call PostQuitMessage if the form
21413             has an application context (which makes it the main app form,
21414             which, when closed terminates the app)
21415         * XplatUI.cs:
21416           - Dropped Exit() method, it's naming was confusing
21417           - Added PostQuitMessage() which causes GetMessage to return false
21418             once the message queue is empty
21419         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
21420           PostQuitMessage()
21421         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
21422           no longer a valid XplatUI method, but left it in since it's used
21423           internally. Added empty PostQuitMessage() method.
21424         * MenuAPI.cs: Replaced call to Exit() with call to
21425           PostQuitMessage, even though this is probably no longer needed.
21426         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
21427         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
21428         * Application.cs:
21429           - Replaced call to XplatUI.Exit() with PostQuitMessage()
21430           - Removed old debug code that would call XplatUI for exception
21431             display, enabled standard exception handling (Still not enabled
21432             though, until NativeWindow's ExternalExceptionHandler define
21433             is removed
21434         * NativeWindow.cs:
21435           - Added internal method to allow control to update NativeWindow
21436             after a window has been destroyed
21437           - Added handling of already destroyed windows when calling i
21438             DestroyWindow
21439           - Added removal of handle from list on ReleaseHandle
21440         * XplatUIX11.cs:
21441           - Dropped GetMessageResult var and related code
21442           - Added PostQuitState to field to track if PostQuitMessage has been
21443             called
21444           - Dropped Exit() method
21445           - Added PostQuitMessage() method
21446           - GetMessage now will return false if PostQuitState is set and no
21447             more messages are in the queue.
21448           - Expose handler will no longer generate WM_PAINT messages if we are
21449             in PostQuitState since it's very likely any windows have already
21450             been destroyed, and since Hwnd won't get updated until we have
21451             processed the DestroyNotify we'd be causing X errors.
21452         
21453 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21454
21455         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
21456           Thanks to Mike for pointing out the err of my ways.
21457
21458 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21459
21460         * Control.cs(PreProcessMessage): Moved menu handling back, but
21461           after all other key handling, to match MS (who handles Menu in
21462           DefWndProc)
21463         * Menu.cs (WndProc): Removed my brainfart
21464
21465 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21466
21467         * Control.cs(PreProcessMessage): Removed special menu handling 
21468         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
21469
21470 2005-12-07  Mike Kestner  <mkestner@novell.com>
21471
21472         * Control.cs : special case SYSKEYUP so that we can adjust keynav
21473         state according in tracker.
21474         * Menu.cs : promote tracker field to base class and provide a tracker
21475         lookup capability.  Add/Remove shortcuts dynamically if the top menu
21476         has a tracker. Unparent items that are removed from the collection.
21477         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
21478         * Theme*.cs: add always_show_hotkeys field to support configurability
21479         of mnemonic display.  win32 doesn't show mnemonics until Alt is
21480         pressed.
21481
21482 2005-12-07  Jackson Harper  <jackson@ximian.com>
21483
21484         * MdiChildContext.cs: Use Control.ResetCursor.
21485         * Control.cs: ResetCursor needs to set the property so that the
21486         correct XplatUI call gets made.
21487
21488 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21489
21490         * Control.cs: More fixes to make our key events match MS. We
21491           were not setting the modifier state on KeyData, and we were
21492           not generating any events when Alt was pressed with a key
21493           since handling of WM_SYSxxx was missing for the OnKey methods.
21494
21495 2005-12-07  Jackson Harper  <jackson@ximian.com>
21496
21497         * MdiChildContext.cs: reenable the sizing code.
21498         - When the mouse leaves a window reset its cursor.
21499
21500 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21501
21502         * ThemeClearlooks.cs: Reflect latest Hwnd changes
21503
21504 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
21505
21506         * Hwnd.cs: Now using the theme 3d bordersize to calculate
21507           widths of Fixed3D borders
21508
21509 2005-12-07  Jackson Harper  <jackson@ximian.com>
21510
21511         * MdiClient.cs: Fix warnings. Earn Mike's love.
21512
21513 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
21514
21515         * ThemeClearlooks.cs:
21516           - Adjusted mouse over button color
21517           - Added first parts of CheckBox drawing
21518           - Added correct color for selected text background
21519           - Fixed ComboBox drawing
21520           - Added CPDrawBorder3D and CPDrawBorder
21521
21522 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21523
21524         * XplatUIX11.cs: Added call to XBell for AudibleAlert
21525
21526 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
21527
21528         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
21529           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
21530           alert users via sound. We could add an enum arg with different
21531           types of alerts in the future
21532
21533 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
21534
21535         * Control.cs: Fix behaviour problems pointed out by Mike
21536
21537 2005-12-05  Mike Kestner  <mkestner@novell.com>
21538
21539         * StatusBarPanel.cs: add Invalidate method and hook it into all the
21540         prop setters.  Calls parent.Refresh for now, but could be maybe be
21541         optimized with an internal method on StatusBar at some point.
21542         [Fixes #76513]
21543
21544 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
21545
21546         * RichTextBox.cs: Implemented get_SelectionColor
21547
21548 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
21549
21550         * ThemeClearlooks.cs:
21551           - Removed dead code
21552           - Draw black button border only if button is Form.AcceptButton
21553           - Draw correct button color for pressed RadioButton if the mouse 
21554             has entered the button
21555           - Updated ProgressBar drawing!
21556           - Updated CPDrawSizeGrip drawing
21557           - Updated StatusBarPanel drawing
21558
21559 2005-12-05  Mike Kestner  <mkestner@novell.com>
21560
21561         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
21562         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
21563
21564 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
21565
21566         * ThemeClearlooks.cs: Initial check-in, activate with
21567           export MONO_THEME=clearlooks
21568         * ThemeEngine.cs: Added ThemeClearlooks
21569
21570 2005-12-03  Mike Kestner  <mkestner@novell.com>
21571
21572         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
21573         [Fixes #76897]
21574
21575 2005-12-02  Jackson Harper  <jackson@ximian.com>
21576
21577         * Form.cs: If the child form has no menu the default main menu is
21578         used as the active menu.
21579
21580 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
21581
21582         * ListBox.cs: Check if any items exist before trying to resolve 
21583           coordinates into items
21584
21585 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21586
21587         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
21588           as the second color for the background hatch
21589
21590 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
21591
21592         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
21593         * RichTextBox.cs: FormatText position arguments are 1-based, now making
21594           sure that what we pass to FormatText is always 1-based. Fixes #76885
21595
21596 2005-11-29  Miguel de Icaza  <miguel@novell.com>
21597
21598         * NumericUpDown.cs (EndInit): When we are done initializing,
21599         reflect any updates on the UI.
21600
21601 2005-12-02  Jackson Harper  <jackson@ximian.com>
21602
21603         * ImplicitHScrollBar.cs:
21604         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
21605         their container controls.
21606         * TreeView.cs: Use the new implicit scrollbars.
21607
21608 2005-12-02  Jackson Harper  <jackson@ximian.com>
21609
21610         * TreeView.cs: Make top_node internal so the TreeNodeCollections
21611         can play with it.
21612         * TreeNodeCollection.cs: If we remove the topnode we need to
21613         update topnode to the next node in line.
21614         - When clearing nodes go through the same process as removing
21615         them, so they get depareneted and checked if they are top node.
21616
21617 2005-12-01  Jackson Harper  <jackson@ximian.com>
21618
21619         * TreeView.cs: When imagelists are used the image area is
21620         selectable as well as the text.
21621         - If there are no selected nodes select the first one.
21622         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
21623         so don't do it more then we need to.
21624
21625 2005-12-01  Jackson Harper  <jackson@ximian.com>
21626
21627         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
21628         that arrows can be scaled.
21629
21630 2005-12-01  Jackson Harper  <jackson@ximian.com>
21631
21632         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
21633         fail. Patch by Dieter Bremes
21634
21635 2005-11-30  Jackson Harper  <jackson@ximian.com>
21636
21637         * Form.cs: Property is 2.0 only
21638         * PrintDialog.cs: Signature fix.
21639
21640 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21641
21642         * TextControl.cs: 
21643           - No longer artificially moves text 2 pixels down (now that we have
21644             borders this is no longer needed)
21645           - Added calcs for left, hanging and right indent
21646
21647 2005-11-23  Mike Kestner  <mkestner@novell.com>
21648
21649         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
21650
21651 2005-11-30  Jackson Harper  <jackson@ximian.com>
21652
21653         * MdiChildContext.cs: Set the cloned menus forms, as these don't
21654         get cloned as part of CloneMenu ().
21655         * Menu.cs: Make sure the parent of the items get set correctly
21656         when they are added.  And the owners are notified of the changes.
21657         * Form.cs: Create an ActiveMenu property, so that when MDI is used
21658         we can change the menu being displayed/handled by the form without
21659         changing the menu assosciated with the form.
21660         - Don't let Mdi children draw/handle menus.
21661         
21662 2005-11-30  Jackson Harper  <jackson@ximian.com>
21663
21664         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
21665         a MenuChanged event. Just to make the API a little more
21666         consistent.
21667         * MainMenu.cs:
21668         * MenuItem.cs: Use the new OnMenuChanged
21669         * MdiChildContext.cs: Handle menu merging.
21670         * Form.cs: Implement MergedMenu.
21671         
21672 2005-11-30  Jackson Harper  <jackson@ximian.com>
21673
21674         * Menu.cs: We were misusing Add. Add goes behind the specified
21675         index according to the docs, and does not replace the specified
21676         index. So I added an Insert method.
21677
21678 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
21679
21680         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
21681           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
21682           is for Jackson
21683         * RichTextBox.cs: Added calls to base for DnD events
21684
21685 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
21686
21687         * TextControl.cs:
21688           - Fixed drag-selection related crash; style fixes
21689           - Implemented undo class
21690             o Implemented method to capture document state for specified
21691               range in document tree
21692             o Implemented method to restore captured document state
21693             o Implemented cursor tracking
21694             o Implemented basic undo stack
21695           - Added undo cursor tracking to methods altering cursor location
21696           - Added undo tracking to selection deletion (still missing
21697             other text-altering hookups)
21698         * RichTextBox.cs:
21699           - Added SelectionLength property
21700           - Implemented CanPaste()
21701           - Implemented Paste()
21702           - Added missing protected methods
21703           - Fixed RTF->Document conversion; now uses font index 0 and color 
21704             index 0 as the default font for the parsed text
21705           - Fixed RTF<->Document font size translation
21706           - Fixed RTF generation, now properly handles cross-tag boundaries
21707             for single line selection
21708           - No longer always appends blank line to generated RTF
21709           - Removed TODOs
21710           - Added missing attributes
21711           - Hooked up undo-related methods
21712         * TextBoxBase.cs:
21713           - Implemented Copy()
21714           - Implemented Paste()
21715           - Implemented Cut()
21716           - Fixed caret mis-behaviour on backspace across line-boundaries
21717
21718 2005-11-29  Jackson Harper  <jackson@ximian.com>
21719
21720         * MdiClient.cs: Add a method for activating mdi children. Very
21721         basic right now. I imagine someday it might need more girth.
21722         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
21723         children windows names are added to the menu item.
21724         * ThemeWin32Classic.cs: Draw the arrow if the item is an
21725         mdilist. This happens regardless of whether or not there are any
21726         mdi windows to see in the list, and according to my tests happens
21727         before the items are even added. Also happens if there isn't even
21728         an mdi client to get windows from.
21729
21730 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
21731
21732         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
21733         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
21734
21735 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
21736
21737         * DataGridTableStyle.cs:
21738           - Create always the styles for the missing columns even if they are
21739             provided by the user (not default table style)
21740         * DataGrid.cs:
21741           - Fixes bug 76770
21742           - Fixes SetDataBinding (always re-attach source)
21743           - Fixes SetNewDataSource (only clear styles if they are not for 
21744             this source)
21745          -  Expands OnTableStylesCollectionChanged to handle style refresh 
21746             and remove properly
21747
21748 2005-11-29  Jackson Harper  <jackson@ximian.com>
21749
21750         * FileDialog.cs: Implement missing bits, remove some dead
21751         code.
21752         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
21753         creation of the panel so that the options set on the dialog are
21754         seen when the panel is created.
21755         * TreeView.cs: raise a click when items are clicked.
21756         
21757 2005-11-29  Jackson Harper  <jackson@ximian.com>
21758
21759         * MdiClient.cs: Pass some signature methods through to base.
21760
21761 2005-11-28  Jackson Harper  <jackson@ximian.com>
21762
21763         * ListView.cs: Raise the click event when items are clicked.
21764
21765 2005-11-28  Jackson Harper  <jackson@ximian.com>
21766
21767         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
21768         a nullref.
21769
21770 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
21771
21772         * ThemeNice.cs: - Removed 1 pixel bitmaps
21773           - Use SmoothingMode.AntiAlias where it makes sense
21774             (ScrollButton arrow for example)
21775           - Enhanced Button focus drawing
21776           - Fixed ComboBox drawing (no artefacts anymore, focus
21777             rectangle is back again, reduced size of ComboButton, etc.)
21778           - Fixed RadioButton focus drawing for Appearence.Button
21779           - Slight ScrollButton redesign
21780           - Some LinearGradientBrush size fixes
21781           - GroupBoxes have now rounded edges
21782           - Fixed StatusBar drawing
21783
21784 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
21785
21786         * ThemeNice.cs: - Remove dead code
21787           - use correct background colors for menus, etc.
21788           - Fake pixel drawing with 1 pixel bitmaps
21789
21790 2005-11-24  Jackson Harper  <jackson@ximian.com>
21791
21792         * MdiClient.cs: Size the scrollbars when resizing the window.
21793         - Resize the maximized windows when the client is resized
21794         * Form.cs: Make the child context available
21795         
21796 2005-11-23  Jackson Harper  <jackson@ximian.com>
21797
21798         * MdiChildContext.cs: Don't size windows if they are maximized.
21799
21800 2005-11-23  Mike Kestner  <mkestner@novell.com>
21801
21802         * ContextMenu.cs: use MenuTracker.
21803         * Control.cs: remove menu handle usage.
21804         * Form.cs: remove menu handle usage.
21805         * Hwnd.cs: remove menu handle usage.
21806         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
21807         motion and clicks to the new Tracker handlers.
21808         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
21809         and handle usage.
21810         * MenuAPI.cs: refactored to combine popup and menubar event handling.
21811         Killed the MENU and MENUITEM data types and associated collections
21812         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
21813         MenuTracker class that exposes the leftovers from the old MenuAPI
21814         static methods. Restructured Capture handling so that only one grab is
21815         done for the entire menu hierarchy instead of handing off grabs to
21816         submenus. Tracker now has an invisible control to Capture when active.
21817         * MenuItem.cs: add sizing accessors, kill Create
21818         and handle usage.
21819         * Theme.cs: remove menu handle and MENU(ITEM) usage.
21820         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
21821         MENU(ITEM). remove menu handle usage, use Menu directly.
21822         * XplatUIDriver.cs: remove menu handle usage.
21823         * XplatUIOSX.cs: remove menu handle usage.
21824         * XplatUIWin32.cs: remove menu handle usage.
21825         * XplatUIX11.cs: remove menu handle usage.
21826
21827 2005-11-22  Jackson Harper  <jackson@ximian.com>
21828
21829         * Hwnd.cs: Don't compute the menu size for
21830         DefaultClientRectangle.
21831         - Reenable menu sizes being computed for GetClienRectangle.
21832         * Form.cs: Remove comment of trechery
21833         
21834 2005-11-22  Jackson Harper  <jackson@ximian.com>
21835
21836         * Hwnd.cs: The adjustments for the menu bar are made when it is
21837         attached to the form.
21838
21839 2005-11-19  Jackson Harper  <jackson@ximian.com>
21840
21841         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
21842         (just like on windows).
21843
21844 2005-11-19  Jackson Harper  <jackson@ximian.com>
21845
21846         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
21847         use real buttons anymore because they are in non client area. The
21848         one TODO here is that I need to somehow invalidate a section of
21849         the non client area.
21850
21851 2005-11-18  Jackson Harper  <jackson@ximian.com>
21852
21853         * Control.cs: Put the enum check back in now that MDI doesnt have
21854         to use this to set border styles.
21855         * Form.cs: Only set mdi child windows borders if the handle has
21856         been created.
21857         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
21858         this directly on to the driver.
21859         - Get the move start position before adjusting for the titlebar
21860         height, this fixes the windows "skipping" when they are first
21861         moved.
21862
21863 2005-11-18  Jackson Harper  <jackson@ximian.com>
21864
21865         * XplatUIX11.cs: Just compute the mdi borders separately as they
21866         don't totally match up with normal form borders.
21867
21868 2005-11-18  Jackson Harper  <jackson@ximian.com>
21869
21870         * Control.cs: Set WS_ styles for borders, so that the driver does
21871         not have to retrieve the control instance to figure out what kind
21872         of borders it should have.
21873         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
21874         driver can know its an mdi child easily.
21875         * XplatUIX11.cs: Get the border styles and whether the window is
21876         MDI from the Styles and ExStyles params instead of having to get a
21877         control. This prevents a chicken and egg problem.       
21878
21879 2005-11-18  Jackson Harper  <jackson@ximian.com>
21880
21881         * MdiClient.cs: Fix typo so scrollbars show up correctly.
21882
21883 2005-11-18  Jackson Harper  <jackson@ximian.com>
21884
21885         * MdiClient.cs: Calculate when to add and remove scrollbars
21886         correctly.
21887         * MdiChildContext.cs: Adjust the y position to take the titlebar
21888         into account.
21889         - No height for FormBorderStyle.None
21890
21891 2005-11-18  Jackson Harper  <jackson@ximian.com>
21892
21893         * Control.cs: Allow non enum values to be used for
21894         InternalBorderStyle.  MDI does this to set a special border style.
21895         - New utility methods for converting points to/from client coords
21896         - Add the newly created control to the Controls collection before
21897         updating its style. This way UpdateStyle can walk the control
21898         heirarchy to find the control if needed.
21899         so I don't need to create a new Point object all the time.
21900         * Form.cs: Let MDI windows handle their border styles.
21901         - Set styles on MDI windows so the correct title style is derived.
21902         * MdiChildContext.cs: Move all the painting and window handling
21903         into the non client area.
21904         - Use correct sizing and put correct buttons on frames based on
21905         the FormBorderStyle.
21906         - Notify the mdi client about scrolling
21907         - Need to handle the buttons ourselves now, because they are all
21908         in non client areas and we can't add controls there.
21909         * MdiClient.cs: Halfway to scrolling, this implementation is
21910         somewhat broken though, we need to check to make sure other
21911         windows aren't causing scrolling before removing the bars. Also
21912         the bars need to be drawn on top, maybe I can switch implicit
21913         controls to be on top.
21914         * Hwnd.cs: caption_height and tool_caption_height are now
21915         properties of an hwnd, this way they can be set by the driver
21916         based on the type of window they are.  In X11 the window manager
21917         handles the decorations so caption_height is zero unless its an
21918         MDI window.
21919         - Add 3 pixel borders for MDI windows (0xFFFF).
21920         - Get rid of some code duplication, have DefaultClientRectanle
21921         just call GetClientRectangle.
21922         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
21923         Hwnd now.
21924         - Set border styles differently for mdi windows.
21925         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
21926         Hwnd now.
21927         
21928 2005-11-15  Mike Kestner  <mkestner@novell.com>
21929
21930         * Menu.cs: when adding an item to the collection, if item is already 
21931         parented, remove it from the parent.
21932
21933 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
21934
21935         * X11DesktopColors.cs: Added KDE support
21936
21937 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
21938
21939         * XplatUIWin32.cs: 
21940           - Clipboard methods now can translate Rtf format
21941           - No longer removes clipboard contents whenever a new format is added
21942             to allow placing multiple formats on the clipboard
21943         * Clipboard.cs: Clipboard now supports getting a IDataObject and
21944           will place all formats contained in it onto the clipboard. Also
21945           now cleans the clipboard before placing a new object onto it
21946         * RichTextBox.cs:
21947           - Implemented set_Rtf
21948           - Implemented set_SelectedRtf
21949           - Created InsertRTFFromStream() method to allow single code base
21950             for all properties and methods that insert RTF into document
21951           - Removed debug output
21952         * TextControl.cs:
21953           - Fixed Delete(int) to fix up line numbers
21954           - Fixed ReplaceSelection to combine start and end line
21955           - Fixed serious DeleteChars bug that would leave the document tree
21956             broken
21957           - Improved DumpTree with several logic checks to detect broken
21958             document trees
21959           - Removed debug lines
21960           - Fixed Caret.WordForward/WordBack moving code, now always also 
21961             updates caret.tag (fixes crash when word-selecting across tag
21962             boundaries via keyboard)
21963           - Added Insert() method for inserting multiline text into documents
21964           - Fixed DeleteChars() calculation errors that would cause a broken
21965             tag chain with multiple tag lines
21966           - DeleteChars() no longer crashes on multi-tag lines if not all tags
21967           - Split() no longer moves caret if split is at caret location
21968           - ReplaceSelection() now updates the cursor and re-displays it
21969           - ReplaceSelection() now uses new Insert() method to avoid code
21970             duplication
21971           - FormatText() can now handle formatting partial lines
21972         * TextBoxBase.cs:
21973           - Append now uses new TextControl.Insert() method (this avoids 
21974             duplicate code)
21975           - Implemented Ctrl-X (Cut) (
21976           - Implemented Ctrl-C (Copy)
21977           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
21978             regeneration when pasting text; roundtripping Copy&Paste within
21979             edit control still fails due to some calculation bugs in GenerateRTF)
21980           - The Delete key will now remove the current selection if it is visible
21981         * TextBox.cs: Removed debug lines
21982         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
21983           driver to be initialized and can't therefore be done via a static ctor)
21984
21985 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
21986
21987         * TextControl.cs: Added backend code for finding char arrays and strings
21988         * TextBoxBase.cs:
21989           - Added mouse wheel scroll support
21990           - Added support for VScroll and HScroll events
21991         * RichTextBox.cs:
21992           - Implemented all seven Find() variants
21993           - Implemented GetCharFromPosition()
21994           - Implemented GetCharIndexFromPosition()
21995           - Implemented GetLineFromIndex()
21996           - Implemented GetPositionFromCharIndex();
21997           - Implemented SaveFile for PlainText and UnicodeText
21998           - Fixed set_Font, now setting a new font applies that font to
21999             the whole document
22000           - Implemented generic Document to RTF converter
22001           - Implemented SaveFile for RichText format (still missing unicode
22002             conversion for non-ansi chars)
22003           - Implemented get_Rtf
22004           - Implemented get_SelectedRtf
22005
22006 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
22007
22008         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
22009           to allow any captures to be released before triggering OnClick. This
22010           way a click handler may capture the mouse without interference.
22011         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
22012           This way we send them even though X may not allow a grab (if the window
22013           isn't visible, for example)
22014
22015 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
22016
22017         * DataGridViewRowEventArgs.cs: DataGridView implementation
22018         * DataGridViewElement.cs: DataGridView implementation
22019         * DataGridViewComboBoxCell.cs: DataGridView implementation
22020         * DataGridViewDataErrorContexts.cs: DataGridView implementation
22021         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
22022         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
22023         * ImageLayout.cs: DataGridView implementation
22024         * DataGridViewComboBoxColumn.cs: DataGridView implementation
22025         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
22026         * DataGridViewSelectionMode.cs: DataGridView implementation
22027         * IDataGridViewEditingControl.cs: DataGridView implementation
22028         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
22029         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
22030         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
22031         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
22032         * DataGridViewColumnSortMode.cs: DataGridView implementation
22033         * DataGridView.cs: DataGridView implementation
22034         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
22035         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
22036         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
22037         * Padding.cs: DataGridView implementation
22038         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
22039         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
22040         * DataGridViewRowEventHandler.cs: DataGridView implementation
22041         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
22042         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
22043         * DataGridViewButtonCell.cs: DataGridView implementation
22044         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
22045         * DataGridViewEditMode.cs: DataGridView implementation
22046         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
22047         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
22048         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
22049         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
22050         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
22051         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
22052         * DataGridViewCellEventHandler.cs: DataGridView implementation
22053         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
22054         * DataGridViewCellStyleConverter.cs: DataGridView implementation
22055         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
22056         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
22057         * DataGridViewColumnEventArgs.cs: DataGridView implementation
22058         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
22059         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
22060         * QuestionEventArgs.cs: DataGridView implementation
22061         * IDataGridViewEditingCell.cs: DataGridView implementation
22062         * DataGridViewTriState.cs: DataGridView implementation
22063         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
22064         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
22065         * DataGridViewColumnCollection.cs: DataGridView implementation
22066         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
22067         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
22068         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
22069         * DataGridViewColumn.cs: DataGridView implementation
22070         * DataGridViewCellBorderStyle.cs: DataGridView implementation
22071         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
22072         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
22073         * DataGridViewRow.cs: DataGridView implementation
22074         * DataGridViewImageCellLayout.cs: DataGridView implementation
22075         * DataGridViewImageCell.cs: DataGridView implementation
22076         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
22077         * DataGridViewCheckBoxCell.cs: DataGridView implementation
22078         * DataGridViewHeaderCell.cs: DataGridView implementation
22079         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
22080         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
22081         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
22082         * DataGridViewTextBoxColumn.cs: DataGridView implementation
22083         * QuestionEventHandler.cs: DataGridView implementation
22084         * DataGridViewCellStyleScopes.cs: DataGridView implementation
22085         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
22086         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
22087         * DataGridViewCell.cs: DataGridView implementation
22088         * DataGridViewCellEventArgs.cs: DataGridView implementation
22089         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
22090         * DataGridViewCellStyle.cs: DataGridView implementation
22091         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
22092         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
22093         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
22094         * TextFormatFlags.cs: DataGridView implementation
22095         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
22096         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
22097         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
22098         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
22099         * DataGridViewButtonColumn.cs: DataGridView implementation
22100         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
22101         * HandledMouseEventArgs.cs: DataGridView implementation
22102         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
22103         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
22104         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
22105         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
22106         * DataGridViewRowCollection.cs: DataGridView implementation
22107         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
22108         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
22109         * DataGridViewHitTestType.cs: DataGridView implementation
22110         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
22111         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
22112         * DataGridViewColumnEventHandler.cs: DataGridView implementation
22113         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
22114         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
22115         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
22116         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
22117         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
22118         * DataGridViewContentAlignment.cs: DataGridView implementation
22119         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
22120         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
22121         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
22122         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
22123         * DataGridViewPaintParts.cs: DataGridView implementation
22124         * DataGridViewCellCollection.cs: DataGridView implementation
22125         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
22126         * DataGridViewImageColumn.cs: DataGridView implementation
22127         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
22128         * DataGridViewElementStates.cs: DataGridView implementation
22129         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
22130         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
22131         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
22132         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
22133         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
22134         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
22135         * DataGridViewRowHeaderCell.cs: DataGridView implementation
22136         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
22137         * DataGridViewTextBoxCell.cs: DataGridView implementation
22138         * DataGridViewBand.cs: DataGridView implementation
22139         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
22140         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
22141         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
22142         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
22143         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
22144         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
22145         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
22146         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
22147         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
22148         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
22149         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
22150
22151 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
22152
22153         * ThemeWin32Classic.cs: 
22154           - Draw the outside focus rectangle around buttons
22155           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
22156             doesn't use end caps for every dash of a line anymore. This
22157             workaround ignores the forecolor.
22158
22159 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
22160
22161         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
22162           endian safe.
22163
22164 2005-11-07  Jackson Harper  <jackson@ximian.com>
22165
22166         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
22167
22168 2005-11-07  Jackson Harper  <jackson@ximian.com>
22169
22170         * ScrollableControl.cs: Calculate the maximum and change vars
22171         (more) correctly so that scrollbars appear as a sensible size.
22172
22173 2005-11-04  Jackson Harper  <jackson@ximian.com>
22174
22175         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
22176         collection.
22177         * TreeView.cs: When the tree is sorted null out the top_node so
22178         that it is recalculated.
22179         - Use dotted lines instead of dashed lines to match MS better.
22180
22181 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
22182
22183         * ListView.cs: 
22184           - Implements key search for items. Useful when browsing files with FileDialog
22185           - When changing view mode or when clear the items reset scrollbar positions
22186
22187 2005-11-04  Jackson Harper  <jackson@ximian.com>
22188
22189         * CurrencyManager.cs: Implement the MetaDataChanged event, the
22190         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
22191         as to what the method may do as there is no real way of creating a
22192         derived CurrencyManager and calling the method. 
22193
22194 2005-11-03  Jackson Harper  <jackson@ximian.com>
22195
22196         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
22197         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
22198         method which seems to just be used internally to refresh the tabs.
22199
22200 2005-11-03  Jackson Harper  <jackson@ximian.com>
22201
22202         * TabControl.cs: Implement the remove method. Fix some broken
22203         comments.
22204
22205 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22206
22207         * DateTimePicker.cs:
22208           - Added missing DateTimePickerAccessibleObject class
22209           - Added missing events
22210           - Added OnFontChanged method
22211         * Form.cs: Added missing attributes
22212         * TreeView.cs: Added missing attributes
22213
22214 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
22215
22216         * GridItemCollection.cs: Fix signatures
22217
22218 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22219
22220         * XplatUI.cs: Updated build rev/date
22221         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
22222           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
22223         * Application.cs: Trigger context-specific ExitThread events
22224
22225 2005-11-03  Jackson Harper  <jackson@ximian.com>
22226
22227         * Menu.cs:
22228         * MainMenu.cs:
22229         * GridTableStylesCollection.cs:
22230         * Timer.cs:
22231         * TabPage.cs:
22232         * HelpProvider.cs:
22233         * StatusBar.cs:
22234         * MonthCalendar.cs: Signature fixes
22235
22236 2005-11-03  Jackson Harper  <jackson@ximian.com>
22237
22238         * TreeNodeCollection.cs: Remove should not be virtual.
22239         * TreeView.cs: Implement the last of the missing methods.
22240
22241 2005-11-03  Jackson Harper  <jackson@ximian.com>
22242
22243         * TreeNodeConverter.cs: Implement to get off my class-status back.
22244
22245 2005-11-03  Jackson Harper  <jackson@ximian.com>
22246
22247         * TreeView.cs: Hookup the bits for drag and drop.
22248         * TreeNode.cs: Don't cache the tree_view or index anymore, now
22249         that nodes can be moved from tree to tree easily this just causes
22250         all sorts of problems.
22251         * TreeNodeCollection: Don't need to give treenodes an index and
22252         treeview anymore when they are added, these are computed on the
22253         fly. Also make sure to remove a node before its added.
22254
22255 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
22256
22257         * TextControl.cs:
22258           - Added CaretSelection enum
22259           - Added comparison methods to Marker struct, makes selection code
22260             more readable
22261           - Added SelectionStart and SelectionEnd as 'moveable' location for
22262             the CaretDirection enum and handler
22263           - Added selection_prev variable to track optimized invalidation for
22264             word and line selection
22265           - Added SelectionVisible property (returns true if there is a valid 
22266             selection)
22267           - Switched CaretHasFocus to only display the caret if there is no
22268             visible selection
22269           - Avoiding StringBuilder.ToString to retrieve a single char, instead
22270             using the direct character index; should be much faster
22271           - Added various conditional debug statements
22272           - Fixed invalidation calculation for selection ranges
22273           - Added ExpandSelection() method to support word and line selection
22274           - Switched SetSelectionToCaret to use new Marker compare overloads
22275           - Added central IsWordSeparator() method to determine word 
22276             separators/whitespace and FindWordSeparator() to streamline common
22277             usage of IsWordSeparator()
22278         * TextBoxBase.cs:
22279           - Removed unneeded grabbed variable, it was just mirroring
22280             Control.Capture
22281           - No longer firing OnTextChanged event when Text setter is called,
22282             since the base will fire the event for us
22283           - Added handling of Ctrl-Up/Down selection
22284           - Added handling of Shift-Cursorkey selection
22285           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
22286             words
22287           - Added handling of Shift and Ctrl-Shift-Home/End selection
22288           - Removed some debug output
22289           - Added handling for single/double/tripple-click to place caret/
22290             select word/select line respectively (Fixes bug #76031)
22291           - Added support for drag expansion of word/line selection
22292         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
22293           current selection
22294
22295 2005-11-02  Jackson Harper  <jackson@ximian.com>
22296
22297         * X11Dnd.cs: If the drag is going to and from a MWF window just
22298         copy the data instead of sending it out through the X Selection
22299         mechanism.
22300
22301 2005-11-02  Jackson Harper  <jackson@ximian.com>
22302
22303         * X11Dnd.cs:
22304         * XplatUIX11.cs: When in a drag we don't want motion notify
22305         messages to get passed on to the other controls. This prevents
22306         mouse move messages from showing up in the drag source.
22307
22308 2005-11-02  Jackson Harper  <jackson@ximian.com>
22309
22310         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
22311         the correct button is release to end a drag.
22312         * XplatUIX11.cs: Make the button state internal so the drag system
22313         can access it.  Dragging needs to know about all button releases,
22314         not just left button.
22315
22316 2005-11-02  Miguel de Icaza  <miguel@novell.com>
22317
22318         * Form.cs (Icon): If the icon is null, reset the icon to the
22319         default value. 
22320
22321         * Cursor.cs: When writing the AND-mask bitmap do not include the
22322         number of colors, but hardcode those to two (black and white),
22323         fixes the loading of color cursors (Paint Dot Net).
22324
22325         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
22326         turn off autoscaling.
22327
22328         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
22329
22330 2005-11-02  Jackson Harper  <jackson@ximian.com>
22331
22332         * X11Dnd.cs: Make sure to send a status message if the pointer
22333         enters a control that can not accept a drop, otherwise the cursor
22334         isn't updated correctly. Also tried to compress the lines of code
22335         a bit.
22336
22337 2005-11-02  Jackson Harper  <jackson@ximian.com>
22338
22339         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
22340         set actions correctly.  This isn't perfect as XDND and win32 have
22341         some differences on how you allow actions. I'll clear this up by
22342         adding a path for drag from MWF to MWF windows.
22343         * XplatUIX11.cs: Hook into the dnd system.
22344
22345 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
22346
22347         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
22348         previously shown but they are no longer need it. Very obvious when 
22349         browsing files with FileDialog.
22350
22351 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
22352
22353         * Control.cs: We always need to call OnPaintBackground. We pretty much
22354           ignore AllPaintingInWmPaint and always do the painting there, whether 
22355           it's set or not, since we always ignore the WM_ERASEBKGND message 
22356           (which we don't generate on X11). This fixes #76616.
22357         * Panel.cs: Removed unneeded background painting. This happens properly
22358           in Control.cs already
22359
22360 2005-10-31  Mike Kestner  <mkestner@novell.com>
22361
22362         * Menu.cs: Add items to collection before setting their index.
22363         * MenuItem.cs : add range checking with ArgumentException like MS.
22364         [Fixes #76510]
22365
22366 2005-10-31  Jackson Harper  <jackson@ximian.com>
22367
22368         * ListBox.cs: Invalidate if the area is visible at all not just
22369         contained in the visible rect. Fixes unselection of semi visible
22370         items.
22371
22372 2005-10-31  Jackson Harper  <jackson@ximian.com>
22373
22374         * Control.cs: Consistently name the dnd methods. Make them
22375         internal so we can override them to match some MS behavoir
22376         internally.
22377         * Win32DnD.cs: Use the new consistent names.
22378
22379 2005-10-31  Jackson Harper  <jackson@ximian.com>
22380
22381         * TreeView.cs: Don't draw the selected node when we lose focus.
22382
22383 2005-10-31  Jackson Harper  <jackson@ximian.com>
22384
22385         * X11Dnd.cs: We still need to reset the state even though a full
22386         reset isn't being done, otherwise status's still get sent all over
22387         the place.
22388
22389 2005-10-31  Jackson Harper  <jackson@ximian.com>
22390
22391         * Control.cs: Make the dnd_aware flag internal so the dnd
22392         subsystem can check it. Catch exceptions thrown in dnd handlers to
22393         match MS behavoir.
22394         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
22395         * X11Dnd.cs: Handle null data in the converters. Set the XDND
22396         version when sending a XdndEnter. Use the control/hwnd dnd_aware
22397         flags to reduce the number of dnd enters/status's sent.
22398
22399 2005-10-31  Jackson Harper  <jackson@ximian.com>
22400
22401         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
22402
22403 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
22404
22405         * PictureBox.cs: Fixes 76512
22406
22407 2005-10-28  Jackson Harper  <jackson@ximian.com>
22408
22409         * X11Dnd.cs: Early implementation to support winforms being a drag
22410         source for data on X11. Also restructured the converters so they
22411         can go both ways now.
22412         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
22413         
22414 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
22415
22416         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
22417           clipboard requests
22418
22419 2005-10-27  Jackson Harper  <jackson@ximian.com>
22420
22421         * TreeNode.cs: Implement serialization so my DnD examples will work.
22422
22423 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
22424
22425         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
22426           TreeView.cs: Don't dispose objects that are not owned.
22427           
22428 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
22429
22430         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
22431           should retrieve the current cursor and report that, but XplatUI
22432           doesn't (yet) have an interface for that (and I'm not sure I even
22433           can, on X11)
22434         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
22435           until any message loop processing is done (and the WM_SETCURSOR
22436           replaces the cursor to the proper one)
22437         * XplatUIX11.cs: 
22438           - Fixed override behaviour, we can't set the cursor globally on X11, 
22439             just for our windows.
22440           - Invalidating the System.Drawing X11 display handle when we are
22441             shutting down
22442         * Control.cs: Fix to make csc happy
22443
22444 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
22445
22446         * TextBoxBase.cs: 
22447           - get_Text: Add last line (without trailing newline) to returned
22448             value (Fixes 76212)
22449           - get_TextLength: Count last line in returned length
22450           - ToString: Call Text property instead of duplicating code
22451
22452 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
22453
22454         * ImageList.cs: Dispose ImageAttributes objects.
22455
22456 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22457
22458         * ImageList.cs: Use attribute constructors with less arguments where
22459           possible.
22460
22461 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
22462
22463         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
22464           Use typeof instead of strings when assembly is referenced. Added
22465           some more comments.
22466
22467 2005-10-21  Jackson Harper  <jackson@ximian.com>
22468
22469         * ListView.cs: Raise a double click event. Also tried to somewhat
22470         fix when the selectedindexchanged event is raised. Its still
22471         broken though.
22472
22473 2005-10-21  Jackson Harper  <jackson@ximian.com>
22474
22475         * TreeView.cs: New method to invalidate the plus minus area of a
22476         node without invalidating the whole node (maybe this can be used
22477         in some more places).
22478         * TreeNodeCollection.cs: When adding to an empty node we need to
22479         invalidate its plus minus area so the little block shows up.
22480         
22481 2005-10-21  Jackson Harper  <jackson@ximian.com>
22482
22483         * TreeView.cs: Make sure that when we invalidate a node the bounds
22484         are big enough to cover the selected box and the focus
22485         rectangle. Use a different colour for the lines connecting nodes
22486         so they show up with all themes.
22487
22488 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22489
22490         * NativeWindow.cs: Don't call anything that could call into the driver,
22491           we might be on a different thread.
22492
22493 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
22494
22495         * Control.cs(Dispose): Since Dispose might run on a different thread,
22496           make sure that we call methods that could call into the driver via
22497           invoke, to avoid thread issues
22498
22499 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
22500
22501         * XplatUI.cs: Removed finalizer
22502         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
22503           not allowing to be called on the finalizer thread.
22504
22505 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
22506
22507         * ImageList.cs:
22508           - Reverted r51889 and r51891.
22509           - Added ImageListItem class that stores unmodified image items and image
22510             properties required to create list images until handle is created.
22511           - Added AddItem and moved image creation logic to AddItemInternal.
22512           - Added CreateHandle method that creates images based on unmodified items.
22513           - Added DestroyHandle that changes state to store unmodified items.
22514           - Add and AddStrip methods no more create handle.
22515           - ReduceColorDepth has no return value.
22516           - Dispose destroys handle.
22517           - Modified other methods to reflect the above changes.
22518           - Implemented key support.
22519           - Added profile 2.0 members and attributes.
22520           - Added private Reset and ShouldSerialize methods that provide the same
22521             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
22522             them as they are private.
22523           - Added some more comments about implementation details.
22524
22525 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22526
22527         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
22528
22529 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22530
22531         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
22532
22533 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
22534
22535         * DataGridDrawingLogic.cs: Fixes column hit calcultation
22536         * DataGridColumnStyle.cs: Remove debug message
22537
22538 2005-10-20  Jackson Harper  <jackson@ximian.com>
22539
22540         * TreeView.cs: We can always get input keys regardless of whether
22541         or not editing is enabled. They are used for navigation.
22542
22543 2005-10-20  Jackson Harper  <jackson@ximian.com>
22544
22545         * TreeNode.cs: Use the viewport rect for determining if a node
22546         needs to be moved for visibility. Don't use Begin/End edit. This
22547         calls a full refresh when its done.
22548         * TreeView.cs: New SetBottom works correctly.  Make the viewport
22549         rect property internal so the treenodes can see it. When clicking
22550         on a node we need to ensure that its visible because it might just
22551         be partly visible when clicked.
22552
22553 2005-10-20  Jackson Harper  <jackson@ximian.com>
22554
22555         * TreeNodeCollection.cs: Remove debug code.
22556
22557 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22558
22559         * Datagrid.cs: Implements column sorting in Datagrid
22560         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
22561
22562 2005-10-20  Jackson Harper  <jackson@ximian.com>
22563
22564         * TreeNodeCollection.cs: Remove items properly. Update the correct
22565         area after removing them.
22566
22567 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
22568
22569         * Datagrid.cs: Should not call base.OnPaintBackground
22570
22571 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22572
22573         * XplatUIX11.cs (GetMessage):
22574           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
22575             window instead of client window
22576           - Now properly calculates NC_xBUTTONUP message coordinates
22577           - ScreenToMenu now properly calculates it's coordinates of whole 
22578             window, since menus are in the whole window, not in the client
22579             window
22580           - Added WholeToScreen coordinate translation method
22581
22582 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
22583
22584         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
22585           want to return a message, loop back to the beginning of the function
22586           and grab the next real message to process instead.
22587
22588 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
22589
22590         * Splitter.cs: Properly set limits if no filler control is used
22591
22592 2005-10-19  Jackson Harper  <jackson@ximian.com>
22593
22594         * ColorDialog.cs: Don't show the help button if it is not enabled
22595         instead of disabling it (this is what MS does). Don't create the
22596         panel until the dialog is run, otherwise the vars (such as
22597         ShowHelp) are not set yet.
22598
22599 2005-10-19  Jackson Harper  <jackson@ximian.com>
22600
22601         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
22602         are reduced when adding nodes.
22603         * TreeNode.cs:
22604         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
22605         tree.
22606         
22607 2005-10-19  Jackson Harper  <jackson@ximian.com>
22608
22609         * FolderBrowserDialog.cs: End editing our treeview so the window
22610         actually gets refreshed.
22611
22612 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22613
22614         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
22615           Obsoleted handling of WM_ERASEBKGND, now always draws our background
22616           inside of WM_PAINT
22617
22618 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22619
22620         * MenuAPI.cs: Returns after Hidding window
22621         * XplatUIX11.cs: Added TODO found while debugging menu issues
22622
22623 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
22624
22625         * XplatUIX11.cs: Do not re-map the whole window when it's size
22626           becomes non-zero unless it's supposed to be actually visible
22627
22628 2005-10-18  Jackson Harper  <jackson@ximian.com>
22629
22630         * TreeView.cs: We don't need to keep a count anymore.
22631         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
22632         use the Grow method.
22633
22634 2005-10-18  Jackson Harper  <jackson@ximian.com>
22635
22636         * TreeNodeCollection.cs: Insert is not supported on arrays, so
22637         implement it manually here.
22638
22639 2005-10-18  Jackson Harper  <jackson@ximian.com>
22640
22641         * ImageList.cs: Dont kill the list when the colour depth is
22642         changed, just change the colour depth of all the images.
22643         - Same goes for setting the image size. Just resize them all
22644         instead of killing the list softly.
22645
22646 2005-10-18  Jackson Harper  <jackson@ximian.com>
22647
22648         * Control.cs: Don't invalidate empty rectangles.
22649
22650 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22651
22652         * ListViewItem.cs:
22653           - Adds checked item to the Checked/Item lists (where empty before)
22654           - Do not add items to the Selected lists if they are already present
22655         * ListView.cs:
22656           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
22657           - When deleting items make sure that we delete them for the Selected
22658           and Checked list also.
22659
22660 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
22661
22662         * Label.cs: Dispose objects no longer used
22663         * ThemeWin32Classic.cs: Dispose objects no longer used
22664
22665 2005-10-18  Jackson Harper  <jackson@ximian.com>
22666
22667         * TabControl.cs: Don't refresh the whole control when the tabs are
22668         scrolled, we just need to refresh the tab area.
22669
22670 2005-10-17  Jackson Harper  <jackson@ximian.com>
22671
22672         * XplatUIX11.cs: Compress code a little bit. Only calculate the
22673         after handle when we need it.
22674
22675 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22676
22677         * Control.cs: When the parent size changes, recalculate anchor 
22678           positions. Partial fix for #76462
22679
22680 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
22681
22682         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
22683           drawn. Fixes #76462
22684
22685 2005-10-17  Jackson Harper  <jackson@ximian.com>
22686
22687         * MonthCalendar.cs: Don't create the numeric up down until our
22688         handle is created. Otherwise our handle is created in the
22689         constructor and we don't know if we are a WS_CHILD or WS_POPUP
22690         yet.
22691
22692 2005-10-17  Jackson Harper  <jackson@ximian.com>
22693
22694         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
22695         correctly.
22696
22697 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
22698         * TreeNode.cs : small logical fix (was using local var instead of field)
22699         
22700 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22701
22702         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
22703
22704 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
22705
22706         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
22707
22708 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
22709
22710         * Control.cs: 
22711           - Re-implemented anchoring code. My first version was really broken.
22712             This fixes bug #76033. Unlike the previous implementation we will
22713             no longer have round errors since all numbers are calculated from
22714             scratch every time. Removed various anchor-related obsolete vars.
22715           - InitLayout no longer causes layout event firing and layout to be 
22716             performed
22717
22718 2005-10-16  Jackson Harper  <jackson@ximian.com>
22719
22720         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
22721         which was broken).
22722
22723 2005-10-16  Jackson Harper  <jackson@ximian.com>
22724
22725         * TabControl.cs: Remove debug code.
22726
22727 2005-10-16  Jackson Harper  <jackson@ximian.com>
22728
22729         * XEventQueue.cs: Increase the default queue size (very simple
22730         apps needed to grow the queue).
22731         * Hwnd.cs: No finalizer so we don't need to suppress
22732         finalization. Compute the invalid area manually so a new rectangle
22733         does not newto be created.
22734         * ScrollableControl.cs: Don't set any params (otherwise visibility
22735         isn't set correctly).
22736         * MdiChildContext.cs: New constructor takes the mdi parent so it
22737         doesn't have to be computed and avoids a crash on windows. Draw
22738         the window icon properly, and allow the text to be seen.
22739         * Form.cs: Use new MdiChildContext constructor. Make sure the
22740         child context isn't null in wndproc.
22741         * TabControl.cs: Don't set focus, this is muddling keyboard
22742         behavoir. Expand the tab rows when a window size increase will
22743         allow extra tabs to be seen. Don't allow tabs smaller than the
22744         width of a window to be scrolled out of view.
22745         * TreeNode.cs:
22746         * TreeView.cs: Use measure string to calculate a nodes width, the
22747         width is cached and only updated when the text or the font is
22748         changed. Don't check for expand/collapse clicks on the first level
22749         nodes if root lines are disabled.
22750         
22751 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
22752
22753         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
22754
22755 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22756
22757         * DataGridBoolColumn.cs: fixes warning
22758
22759 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
22760
22761         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
22762         to match more to match more precisely the MS Net behavior
22763
22764 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22765
22766         * Hwnd.cs: Added field to track if window is mapped
22767         * XplatUIX11.cs: 
22768           - Unmap windows if they become 0-size, re-map when 
22769             they are >0 again; fixes #76035
22770           - Re-set our error handler after initializing X11Desktop
22771             to override any error handlers Gtk or whatever was called
22772             may have set.
22773
22774 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
22775
22776         * CheckedListBox.cs: Removed unused vars
22777         * ListView.cs: Fixed signatures
22778         * RichTextBox.cs: Removed unused vars
22779         * TextBoxBase.cs: Removed unused vars
22780         * XplatUIWin32.cs: Removed unused vars
22781         * XplatUIX11.cs: Removed unused vars
22782         * XplatUI.cs: Updated version and date to latest published
22783
22784 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22785
22786         * Cursor.cs: Added private .ctor to work around a bug in
22787           resourceset (Thanks to Geoff Norton for the help on this)
22788         * SplitterEventArgs.cs: Made fields accessible so we don't
22789           waste boatloads of objects and can reuse the same one
22790           in Splitter
22791         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
22792           any captions and borders when generating screen coordinates
22793         * Splitter.cs: Reimplemented control, now fully complete, uses
22794           rubberband drawing, supports and obeys all properties, has
22795           proper cursors
22796
22797 2005-10-13  Miguel de Icaza  <miguel@novell.com>
22798
22799         * Form.cs (Form): Setup default values for autoscale and
22800         autoscale_base_size;  Make these instance variables, not static
22801         variables. 
22802
22803         (OnLoad): on the first load, adjust the size of the form.
22804
22805 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
22806
22807         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
22808           width argument to DrawReversibleRectangle()
22809         * XplatUIWin32.cs, XplatUIX11.cs: 
22810           - Implemented width for DrawReversibleRectangle()
22811           - Added logic to DrawReversibleRectangle that recognizes a zero
22812             width or height and only draws a line in that situation
22813         
22814 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
22815
22816         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
22817         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
22818         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
22819           method (it uses our FosterParent window to get a graphics context)
22820
22821 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
22822
22823         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
22824           and SetWindowBackground methods
22825         * Control.cs:
22826           - Setting proper ControlStyles
22827           - We no longer call XplatUI.SetWindowBackground and XplatUI.
22828             EraseWindowBackground, instead we draw the window background
22829             ourselves in PaintControlBackground. This behaviour is
22830             required to match MS, where, when OnPaintBackground is not
22831             called, the background is not drawn.
22832           - Removed unneeded Refresh() in set_Text
22833         * Hwnd.cs: Dropped the ErasePending support. No longer needed
22834         * XplatUIX11.cs:
22835           - Created DeriveStyles method to translate from CreateParams to
22836             FormBorderStyle and TitleStyle, also handles BorderStyle (which
22837             matches FormBorderStyle enum values)
22838           - Consolidated SetHwndStyles and CalculateWindowRect border/title
22839             style calculations into single DeriveStyles method
22840           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
22841             from redrawing the whole window on any resize or expose.
22842           - Fixed CreateWindow usage of SetWindowValuemask. Before not
22843             all styles were applied to our whole/client window appropriately
22844           - Removed EraseWindowBackground() and SetWindowBackground() methods
22845           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
22846             no longer clear/redraw the background through X
22847           - Removed handling of erase_pending bit, we have no use for it (or
22848             so it seems)
22849         * XplatUIOSX.cs:
22850           - Removed generation and handling of WM_ERASEBKGND message
22851           - Removed EraseWindowBackground() and SetWindowBackground() methods
22852           - Removed handling of hwnd.ErasePending flag
22853         * XplatUIWin32.cs:
22854           - Removed EraseWindowBackground() and SetWindowBackground() methods
22855           - We no longer call EraseWindowBackground on PaintEventStart, we 
22856             ignore the fErase flag, erasing is handled in Control in the
22857             background handler
22858         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
22859           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
22860           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
22861           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
22862           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
22863           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
22864           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
22865
22866 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
22867
22868         * PropertyGrids.cs: Get sub properties
22869         * PropertyGridView.cs: Fix drawing code
22870
22871 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22872
22873         * ListBox.cs: Fixes 76383
22874
22875 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22876
22877         * DataGridTextBoxColumn.cs: Sets location and size before attachment
22878         * ThemeWin32Classic.cs: Fixes border drawing and calculations
22879         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
22880
22881
22882 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22883
22884         * ComboBox.cs: Fixes border drawing
22885
22886 2005-10-10  Miguel de Icaza  <miguel@novell.com>
22887
22888         * MimeIcon.cs: Ignore errors if the file can not be read.
22889
22890 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
22891
22892         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
22893          - Fixed border calculations
22894          - Fixed horizontal scrolling in single column listboxes
22895          - Fixed drawing issues
22896
22897 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
22898
22899         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
22900           FormBorderStyle enum
22901         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
22902           code to determine FormBorderStyles from CreateParams
22903         * Form.cs:
22904           - Fixed bug where we'd set the wrong window styles if we were
22905             not creating an MDI window
22906           - Added call to XplatUI.SetBorderStyle when form borders are set
22907         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
22908         * Hwnd.cs:
22909           - Removed obsolete edge style
22910           - Switched from BorderStyle to FormBorderStyle
22911         
22912 2005-10-10  Jackson Harper  <jackson@ximian.com>
22913
22914         * Form.cs: Use the property to get the window handle instead of
22915         accessing it directly. Prevents a null reference exception.
22916
22917 2005-10-10  Jackson Harper  <jackson@ximian.com>
22918
22919         * TreeView.cs: Don't adjust the rect given to DrawString now that
22920         our libgdiplus draws correctly.
22921
22922 2005-10-08  Jackson Harper  <jackson@ximian.com>
22923
22924         * TreeView.cs: Don't try to find the clicked on node if there are
22925         no nodes in the tree.
22926
22927 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22928
22929         * RichTextBox.cs:
22930
22931           restore
22932
22933 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
22934
22935         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
22936           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
22937           ErrorProvider.cs:
22938           Use ResPool for brushes and dispose System.Drawing objects that
22939           are not used anymore.
22940
22941 2005-10-07  Jackson Harper  <jackson@ximian.com>
22942
22943         * MdiChildContext.cs: Use the new borders instead of drawing them
22944         ourselves.
22945
22946 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22947
22948         * Calling UpdateBounds after changing the window's BorderStyle 
22949         since the style can change the ClientSize
22950
22951 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22952
22953         * Control.cs: Made PaintControlBackground virtual
22954         * Panel.cs: Overriding PaintControlBackground instead of using paint
22955           event; paint event method was interfering with 'real' users of the
22956           event.
22957
22958 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
22959
22960         * ThemeWin32Classic.cs: remove border drawing since it is handled
22961         by the base control class now and was causing double border drawing.
22962
22963 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22964
22965         * Panel.cs: Redraw our background on paint. Not a pretty solution,
22966           but it does seem to match MS behaviour. This fixes bug #75324
22967
22968 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22969
22970         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
22971           somewhat hackish looking
22972
22973 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
22974
22975         * TextBoxBase.cs:
22976           - We now accept Enter even if AcceptEnter is false, if the containing
22977             form does not have an AcceptButton configured (fixes bug #76355)
22978           - Calculations are now fixed to no longer use Width/Height, but
22979             ClientSize.Width/Height, since we now support borders (this was
22980             a result of fixing borders and therefore bug #76166)
22981           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
22982             true (fixes bug #76354)
22983         
22984 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
22985
22986         * Control.cs: 
22987           - Defaulting BorderStyle and setting it in XplatUI when our window 
22988             is created
22989           - Added enum check to InternalBorderStyle setter
22990         * XplatUIX11.cs: 
22991           - Added drawing of window borders
22992           - Now properly calculates WM decorations offset for toplevel 
22993             windows (fixes bug #74763)
22994         * XplatUIWin32.cs: 
22995           - Implemented BorderStyles for windows (we're letting win32 draw 
22996             the border for us)
22997           - Fixed the signature for SetWindowLong
22998         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
22999           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
23000           setting borders
23001         * UpDownBase.cs: Remove drawing of borders, this is handled by
23002           the driver, outside the client area
23003         * ListView.cs: Removed bogus border calculations. The control should
23004           be oblivious to borders, since those are not part of the client
23005           area. 
23006         * X11DesktopColors.cs: Commented out (currently) unneeded variables
23007         * ThemeWin32Classic.cs: Removed border calculations from ListView 
23008           drawing code
23009
23010 2005-10-06  Jackson Harper  <jackson@ximian.com>
23011
23012         * MdiChildContext.cs: Clear out the old virtual position remove
23013         all the unneeded calls to CreateGraphics.
23014
23015 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
23016
23017         * TextControl.cs: Use proper color for highlighted text; fixes #76350
23018
23019 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
23020
23021         * Form.cs: 
23022           - Added loading and setting of our new default icon
23023           - Only set icon if window is already created
23024
23025 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
23026
23027         * Label.cs:
23028           - Do not explicitly set the foreground and background colors, to
23029             allow inheriting from parents (fixes #76302)
23030           - Use Control's InternalBorderStyle property to deal with borders
23031
23032 2005-10-06  Jackson Harper  <jackson@ximian.com>
23033
23034         * MdiChildContext.cs: Use the new xplatui function to draw a
23035         reversible rect.
23036
23037 2005-10-06  Jackson Harper  <jackson@ximian.com>
23038
23039         * Form.cs: Add the parent before creating the child context cause
23040         we need the parent when setting up the child.
23041
23042 2005-10-06  Jackson Harper  <jackson@ximian.com>
23043
23044         * FolderBrowserDialog.cs: redo the tree population code so a
23045         second thread isn't used. Should be a lot faster and more stable
23046         now.
23047
23048 2005-10-05  Jackson Harper  <jackson@ximian.com>
23049
23050         * TreeView.cs: There are no expand/collapse boxes if the node has
23051         no children.
23052
23053 2005-10-05  Jackson Harper  <jackson@ximian.com>
23054
23055         * X11DesktopColors.cs: Get menu colours for the gtk theme.
23056
23057 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
23058
23059         * FileDialog.cs: Fix InitialDirectory
23060
23061 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23062
23063         * ComboBox.cs:
23064                 - Fixes changing between styles
23065                 - Fixes simple mode
23066                 - Fixes last item crashing when navigating with keyboard
23067
23068 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
23069
23070         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
23071
23072 2005-10-05  Jackson Harper  <jackson@ximian.com>
23073
23074         * TreeView.cs: If updating the root node do a full refresh.
23075         * TreeNode.cs: The root node should be expanded by default. Also
23076         added a utility prop to tell if we are the root node.
23077         * TreeNodeCollection.cs: Only refresh if the node we are being
23078         added to is expanded. Also added a comment on a potential
23079         optimization.
23080         
23081 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
23082
23083         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
23084           in dispose method. Fixes #76330
23085
23086 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
23087
23088         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
23089
23090                 - Implements vertical and horizontal scrolling using XplatUI
23091                 - Fixes keyboard navagation
23092                 - Fixes EnsureVisible
23093                 - Drawing fixes
23094                 - Handles and draws focus properly
23095
23096
23097 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
23098
23099         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
23100           Create handle. NET_2_0: Destroy handle when value is null.
23101
23102 2005-10-03  Jackson Harper  <jackson@ximian.com>
23103
23104         * ScrollBar.cs: My last scrollbar patch was broken. This is a
23105         revert and a new patch to prevent the thumb from refreshing so
23106         much.
23107
23108 2005-10-02  Jackson Harper  <jackson@ximian.com>
23109
23110         * ScrollBar.cs: Don't update position if it hasn't actually
23111         changed. This occurs when you hold down the increment/decrement
23112         buttons and the thumb gets to the max/min.
23113
23114 2005-10-01  Jackson Harper  <jackson@ximian.com>
23115
23116         * Form.cs:
23117         * MdiChildContext.cs:
23118         * MdiClient.cs: Implement ActiveMdiChild in Form.
23119
23120 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
23121
23122         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
23123
23124 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
23125
23126         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
23127           be found
23128
23129 2005-09-30  Jackson Harper  <jackson@ximian.com>
23130
23131         * ListBox.cs: Don't do a full refresh unless some data has
23132         actually changed.
23133
23134 2005-09-30  Jackson Harper  <jackson@ximian.com>
23135
23136         * TreeView.cs: Make sure that the checkboxes size is factored in
23137         even when not visible.
23138
23139 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23140
23141         * FileDialog.cs: Fix Jordi's build break
23142
23143 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23144
23145         * FileDialog.cs: 
23146                 - Use standard the Windows colours for the combobox as espected
23147                 - Dispose objects that use resouces when no longer need them
23148
23149 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
23150
23151         * X11DesktopColors.cs: Initial incomplete implementation
23152         * XplatUIX11.cs: Added call to initialize X11DesktopColors
23153
23154 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
23155
23156         * Theme.cs: 
23157           - Switched Theme color names to match the names defined in 
23158             System.Drawing.KnownColors. Life's hard enough, no need to make 
23159             it harder.
23160           - Added setters to all theme color properties so themes can set
23161             their color schemes. The setters also propagate the color changes
23162             to System.Drawing.KnownColors via reflection
23163         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
23164           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
23165           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
23166           use the new, more logical theme color names
23167         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
23168           post-NT colors
23169         * ThemeWin32Classic.cs:
23170           - Removed code to set the old classic Windows colors. Instead it
23171             now relies on the colors returned by System.Drawing.KnownColors
23172             which will be either modern static colors (Unix) or colors
23173             read from the user's configuration (Win32)
23174           - Updated to use the new, more logical theme color names
23175           - Switched DataGrid drawing code to use only Theme colors instead of
23176             a mix of System.Drawing.KnownColors and Theme colors
23177           - DrawFrameControl(): Removed code that fills the button area, the
23178             fill would overwrite any previous fill done by a control. This
23179             fixes bug #75338 
23180           - Added DrawReversibleRectangle() stub
23181         * ScrollableControl.cs: Set visible state to false when scrollbars
23182           are removed (pdn fix)
23183         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
23184           DrawReversibleRectangle() method to allow drawing primitive 
23185           'rubber bands'
23186         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
23187
23188 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23189
23190         * ImageList.cs: Add(Icon): Create handle.
23191
23192 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
23193
23194         * ListView.cs:
23195         * ThemeWin32Classic.cs:
23196                 - Fixes detail mode
23197                 - Sets clippings
23198                 - Issues with drawing
23199
23200 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23201
23202         * ImageList.cs: Moved RecreateHandle back to ImageList as event
23203           source has to be the ImageList.
23204
23205 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23206
23207         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
23208
23209 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23210
23211         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
23212
23213 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23214
23215         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
23216
23217 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
23218         * GridItem.cs: Fixed TODOs
23219         * GridItemCollection.cs: Added ICollection interface
23220
23221 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
23222
23223         * ImageList.cs: Resize icons when needed.
23224
23225 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
23226
23227         * ListViewItem.cs
23228                 - Fixes GetBounds and returns on screen rects
23229         * ListView.cs:
23230                 - Fixes vertical and horzintal scrolling of items
23231         * ThemeWin32Classic.cs:
23232                 - Fixes drawing
23233                 
23234 2005-09-29  Raja R Harinath  <harinath@gmail.com>
23235
23236         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
23237
23238 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
23239
23240         * ImageList.cs: Added comments about handle creation. Moved Handle,
23241           HandleCreated and OnRecreateHandle implementations to ImageCollection.
23242           Handle is created in Add methods.
23243
23244 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23245          
23246         * DataGridDrawingLogic.cs: 
23247                 - Takes rows into account on Colum calculations
23248                 - Returns the column when clickig
23249         * DataGrid.cs:
23250                 - Fixes default HitTestInfo values
23251                 - Fixes HitTestInfo.ToString
23252                 - Fixes ResetBackColor          
23253         
23254 2005-09-28  Jackson Harper  <jackson@ximian.com>
23255
23256         * MdiChildContext.cs: Obey rules for fixed sized windows (no
23257         sizing or cursor changes). Also added some temp code to draw the
23258         titlebars text (Makes dev a little easier).
23259
23260 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23261
23262         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
23263
23264 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
23265          
23266         * ListBox.cs: Fixes bug 76253
23267
23268 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
23269
23270         * ImageList.cs: Added comments about the current implementation. Added
23271           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
23272           Format32bppArgb to preserve transparency and can use Graphics.FromImage
23273           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
23274           with Bitmap.LockBits for better performance. Revised the whole file to
23275           match MS.NET behaviour and provide better performance. Non-public
23276           interface members are calling public members even when they throw
23277           NotSupportedException for better maintainability. Moved ColorDepth,
23278           ImageSize, ImageStream and TransparentColor implementations to
23279           ImageCollection for better performance as these properties are not used
23280           by ImageList.
23281         * ImageListStreamer.cs: Added a new internal constructor that takes an
23282           ImageList.ImageCollection and serializes Images based on
23283           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
23284           match ImageList property name.
23285
23286 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
23287
23288         * ListBox.cs: Fixes IndexFromPoint for last item
23289
23290 2005-09-27  Jackson Harper  <jackson@ximian.com>
23291
23292         * Form.cs: Set the position of new mdi children correctly.
23293
23294 2005-09-27  Jackson Harper  <jackson@ximian.com>
23295
23296         * MdiClient.cs: New mdi children need to be added to the back of
23297         the controls collection so the zorder is set correctly. Also add a
23298         count of all the child windows that have been created.
23299
23300 2005-09-27  Jackson Harper  <jackson@ximian.com>
23301
23302         * Form.cs (CreateParams): Setup MDI forms correctly.
23303
23304 2005-09-27  Jackson Harper  <jackson@ximian.com>
23305
23306         * MdiChildContext.cs:
23307         * MonthCalendar.cs:
23308         * UpDownBase.cs:
23309         * ListBox.cs:
23310         * ListView.cs:
23311         * TextBoxBase.cs:
23312         * TreeView.cs:
23313         * ScrollableControl.cs:
23314         * ComboBox.cs: Add implicit controls using the new implict control
23315         functionality in ControlCollection. Also try to block multiple
23316         control add in a suspend/resume layout to save some cycles.
23317         
23318 2005-09-27  Jackson Harper  <jackson@ximian.com>
23319
23320         * Control.cs: Add functionality to the controls collection to add
23321         'implicit controls' these are controls that are created by the
23322         containing control but should not be exposed to the user. Such as
23323         scrollbars in the treeview.
23324         * Form.cs: The list var of the ControlsCollection is no longer
23325         available because of the potential of implicit controls getting
23326         ignored by someone accessing the list directly.
23327
23328 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
23329
23330         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
23331           loose it's parent. (Fixed bug introduced in r49103 when we added
23332           setting the child parent to null on Remove)
23333
23334 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
23335
23336         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
23337         * Splitter.cs: Added missing attributes for BorderStyle property.
23338         * TextBoxBase.cs: Marked Calculate* methods internal.
23339         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
23340         MS.NET.
23341
23342 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
23343          
23344         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
23345
23346 2005-09-25  Jackson Harper  <jackson@ximian.com>
23347
23348         * TreeView.cs: Update the node bounds correctly regardless of
23349         whether the node is visible.
23350
23351 2005-09-25  Jackson Harper  <jackson@ximian.com>
23352
23353         * ImageList.cs: Don't dispose the image after it is added to the
23354         image list. Only reformat images that need to be resized.
23355
23356 2005-09-25  Jackson Harper  <jackson@ximian.com>
23357
23358         * ImageList.cs: Don't set the format when changing the image.
23359
23360 2005-09-25  Jackson Harper  <jackson@ximian.com>
23361
23362         * TreeView.cs: We can't just assume the node has a font. Use the
23363         treeviews font if no node font is available.
23364
23365 2005-09-25  Jackson Harper  <jackson@ximian.com>
23366
23367         * TreeView.cs: Allow the scrollbars to be reset with negative
23368         values.
23369         - Don't add scrollbars to negative sized windows.
23370
23371 2005-09-23  Jackson Harper  <jackson@ximian.com>
23372
23373         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
23374         old Mono.Posix. Also remove some stray code that shouldn't have
23375         been committed.
23376
23377 2005-09-23  Jackson Harper  <jackson@ximian.com>
23378
23379         * TreeView.cs: Attempt at proper sizing of the horizontal
23380         scrollbar. Also don't resize the scrollbars unless they are
23381         visible.
23382
23383 2005-09-23  Jackson Harper  <jackson@ximian.com>
23384
23385         * TreeView.cs: We don't need to expand the invalid area when the
23386         selection changes, as this is all drawn in the node's bounding
23387         box. The area needs to be expanded (previous typo was contracting
23388         it) when the focus rect moves.
23389
23390 2005-09-23  Jackson Harper  <jackson@ximian.com>
23391
23392         * TreeView.cs: Display the selection box under the correct
23393         circumstances. We were rendering white text with no selection box
23394         before.
23395
23396 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
23397
23398         * TextControl.cs(Split): Now updates selection start/end if it points 
23399           into a line that's being split. Fixes a FIXME and bug #75258
23400
23401 2005-09-23  Jackson Harper  <jackson@ximian.com>
23402
23403         * Binding.cs:
23404         * ListControl.cs: Don't use the path when retrieving binding
23405         managers from the binding context. My bat sense tells me that the
23406         path is only used on insertion.
23407
23408 2005-09-22  Jackson Harper  <jackson@ximian.com>
23409
23410         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
23411
23412 2005-09-22  Jackson Harper  <jackson@ximian.com>
23413
23414         * Splitter.cs: There are special cursors used for splitting.
23415         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
23416
23417 2005-09-22  Jackson Harper  <jackson@ximian.com>
23418
23419         * Splitter.cs: Change the cursor appropriately when the splitter
23420         is moused over, so the user actually knows there is a splitter
23421         there.
23422
23423 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23424
23425        * Label.cs : Fix ToString method to give same output as MS.NET
23426
23427 2005-09-22  Jackson Harper  <jackson@ximian.com>
23428
23429         * TreeView.cs: Create the scrollbars when the handle is created
23430         and add them right away, just make them invisble. Also account for
23431         the window being shrunk vertically to the point that the vert
23432         scrollbar needs to be added.
23433         - Remove some 0.5 adjustments to get around anti aliasing issues.
23434         
23435 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
23436          
23437         * MainMenu.cs: Fixes default value
23438         * MenuItem.cs: Fixes default value
23439
23440 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
23441
23442         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
23443
23444 2005-09-21  Jackson Harper  <jackson@ximian.com>
23445
23446         * Control.cs: Don't try to set the border style on the window if
23447         it hasn't been created. When the window is created the border
23448         style will be used.
23449
23450 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23451
23452         * Control.cs (Update): Don't call XplatUI if we don't have a
23453           window handle yet
23454
23455 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23456
23457         * ContainerControl.cs: Instead of throwing an exception, print
23458           a one-time warning about Validate not being implemented
23459         * XplatUIWin32.cs: Removed debug output
23460
23461 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
23462
23463         * Control.cs: Only set XplatUI background if we expect the windowing
23464           system to handle the background. This stops controls that draw their
23465           own background from flickering
23466
23467         * XplatUIX11.cs: Support custom visuals and colormaps for window 
23468           creation. This allows, amongst other things, using MWF X11 windows 
23469           with OpenGL.
23470
23471 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
23472
23473         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
23474           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
23475           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
23476           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
23477           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
23478           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
23479           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
23480           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
23481           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
23482           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
23483           GridColumnStylesCollection.cs, 
23484           IDataGridColumnStyleEditingNotificationService.cs,
23485           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
23486           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
23487           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
23488           TreeNodeCollection.cs, AmbientProperties.cs, 
23489           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
23490           DataObject.cs, ErrorProvider.cs, Splitter.cs,
23491           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
23492           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
23493           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
23494           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
23495           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
23496           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
23497           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
23498           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
23499           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
23500           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
23501           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
23502           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
23503           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
23504           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
23505           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
23506           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
23507           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
23508           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
23509           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
23510           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
23511           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
23512           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
23513           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
23514           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
23515           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
23516           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
23517           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
23518           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
23519           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
23520           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
23521           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
23522           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
23523           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
23524           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
23525           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
23526
23527 2005-09-21  Jackson Harper  <jackson@ximian.com>
23528
23529         * TreeNode.cs: Call Before/After Expand not Collapse when
23530         expanding.
23531
23532 2005-09-20  Jackson Harper  <jackson@ximian.com>
23533         
23534         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
23535
23536 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23537          
23538         * ListViewItem.cs:
23539                 - Fixes bug 76120
23540                 - Fixes proper storing of subitems
23541                 - Fixes not updated items
23542
23543 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
23544
23545         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
23546           things if our window handle isn't created yet. Also disabled 
23547           debug for TextBoxBase
23548
23549 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
23550
23551         * MenuAPI.cs: Remove filtering of events to allow menu usage
23552
23553 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23554
23555         * Cursor.cs: Allow null to be passed to Cursor.Current.
23556
23557 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
23558
23559         * ThemeWin32Classic.cs:
23560           - Change some private methods/fields to protected virtual so that 
23561             they can be accessed and overriden in derived classes
23562           - First refactoring of some methods. Derived themes now don't 
23563             need to duplicate the complete code from ThemeWin32Classic
23564         * ThemeNice.cs:
23565           - Added nice StatusBar
23566           - Derive from ThemeWin32Classic and not Theme
23567           - Removed duplicate ThemeWin32Classic code
23568
23569 2005-09-20  Miguel de Icaza  <miguel@novell.com>
23570
23571         * Control.cs (ControlCollection.Add): If the value null is passed
23572         the control is ignored. 
23573
23574         Optimize this loop.
23575
23576 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
23577
23578         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
23579           PostQuitMessage state.
23580         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
23581
23582 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
23583
23584         * Application.cs: Our constructor will never get called, move 
23585           initialization to fields; fixes bug #75933
23586
23587 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
23588
23589         * FileDialog.cs :
23590                 - Allow files to be selected properly using file name
23591                 combo box.
23592                 - Add ability to change diretory (absolute / relative)
23593                 using file name combo box.
23594
23595 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
23596          
23597         * ListBox.cs: 
23598                 - Fixes Multicolumn listboxes item wrong calculations
23599                 - Allows to click when only one item is in the listbox
23600                 - Fixes crash when no items using keyboard navigation
23601
23602 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
23603
23604         * ComboBox.cs: Reverted almost everything from the latest patch which
23605           broke ComboBox
23606
23607 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
23608         
23609         * ToolTip.cs:
23610                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
23611         * ComboBox.cs:
23612                 - When DropDownStyle is Simple, it does not show scrollbar 
23613                 to the last item of the list.
23614                 - When DropDownStyle is Simple, it crashed when the list was 
23615                 scrolled down with the down cursor key.
23616                 - Fixed a bug that when DropDownStyle is DropDownList, the 
23617                 selected item was not shown.
23618                 - The position of the selected item was not preserved when 
23619                 the next dropdown happened.
23620         * ThemeWin32Classic.cs:
23621                 - Items were wrapped at the right end.
23622         * CheckedListBox.cs:
23623                 - Fixed Add method
23624         * ListBox.cs:
23625                 - Items should be fully shown.
23626                 - When resizing and vertical scrollbar disappeared, the item 
23627                 of index 0 should be on the top of the list.
23628                 - GetItemRectangle should consider the size of ver. scrollbar
23629         * StatusBar.cs:
23630                 - SizingGrip area should not be allocated when it is not 
23631                 displayed.
23632                 - Now it reflects MinWidth of the containing panel and 
23633                 fixed a crash that happens when its width becomes so small.
23634
23635 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23636
23637         * CheckedListBox.cs: Fixes bug 76028
23638         * ListBox.cs: Fixes bug 76028
23639
23640 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
23641
23642         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
23643         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
23644
23645 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
23646
23647         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
23648
23649 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23650
23651         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
23652
23653 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
23654
23655         * IRootGridEntry.cs: Added
23656         * PropertyGridCommands.cs: Added
23657         * PropertiesTab.cs: Added missing methods and property
23658         * PropertyGridView.cs: Made class internal
23659         * PropertyGridTextBox.cs: Made class internal
23660
23661 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23662
23663         * MimeIcon.cs: Try to check some other environment variables
23664           if "DESKTOP_SESSION" returns "default"
23665
23666 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23667
23668         * ThemeNice.cs: Corrected background colors (e.g. menus)
23669         * ColorDialog.cs: Use correct background colors for controls
23670
23671 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
23672
23673         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
23674
23675 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
23676
23677         * RichTextBox.cs: Added initial implementation
23678         * lang.cs: Removed. Was accidentally checked in long time ago
23679         * TODO: Removed. Contents were obsolete
23680
23681 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23682                                                                                 
23683         * PropertiesTab.cs : Added
23684
23685 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
23686                                                                                 
23687         * PropertyGrid.cs : Update
23688         * PropertyGridView.cs : Update
23689         * System.Windows.Forms.resx : Added images and strings
23690
23691 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
23692
23693         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
23694  
23695 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
23696
23697         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
23698           a busy loop right after the Ungrab the X11 display is otherwise 
23699           blocked
23700
23701 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
23702
23703         * ThemeWin32Classic.cs: Optimise the use of clipping
23704
23705 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
23706
23707         * DataGrid.cs: fixes recursion bug
23708
23709 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
23710
23711         * ThemeNice.cs: 
23712           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
23713           - Cleanup
23714
23715 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
23716
23717         * ThemeNice.cs: Draw nice ProgressBars
23718
23719 2005-09-01  Miguel de Icaza  <miguel@novell.com>
23720
23721         * VScrollBar.cs: Another buglet found by Aaron's tool. 
23722
23723         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
23724         bug finder.
23725
23726 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
23727
23728         * ThemeNice.cs:
23729           - Added nicer menu drawing
23730           - Updated DrawTab
23731           - some refactoring
23732
23733 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23734
23735         * CreateParams.cs (ToString): Made output match MS
23736         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
23737             handle is already created (to avoid forcing window creation)
23738         * XplatUIX11.cs: Set window text to caption after creating window,
23739           in case Text was set before window was created
23740         * Form.cs: Use this.Text instead of a static string as caption
23741
23742 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23743
23744         * NotifyIcon.cs: Don't set the window to visible; this screws
23745           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
23746           OnPaint without a bitmap)
23747         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
23748           happen very often anyway; we could add the check to the WM_PAINT 
23749           event generation code
23750
23751 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
23752
23753         * NotifyIcon.cs: Fill the icon area with a background color, to 
23754           avoid 'residue' when transparent icons are drawn
23755         * XplatUIX11.cs:
23756           - Handle whole_window == client_window when destroying windows
23757           - SystrayAdd(): Set client_window to whole_window value to
23758             get mouse and other events passed to NotifyIcon
23759
23760 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
23761
23762         * Form.cs: Set proper default for Opacity property
23763         * NotifyIcon.cs:
23764           - ShowSystray(): Don't bother creating telling the OS
23765             about the systray item if no icon is provided
23766           - Now handles WM_NCPAINT message to deal with whole/client window
23767             split
23768           - Create window as visible to not get caught by Expose optimization
23769         * Hwnd.cs: Removed debug message
23770         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
23771           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
23772             PaintEventStart/End to use new client argument
23773         * TextBoxBase.cs:
23774           - Commented out debug messages
23775           - Switched PaintEventStart/End to use new client argument
23776         * XplatUI.cs: Added client window bool to PaintEventStart()/
23777           PaintEventEnd() calls, to support drawing in non-client areas
23778         * XplatUIDriver.cs: 
23779           - Added client window bool to PaintEventStart()/PaintEventEnd() 
23780             calls, to support drawing in non-client areas
23781           - Added conditional compile to allow using MWF BeginInvoke 
23782             on MS runtime
23783         * XplatUIX11.cs:
23784           - Added some conditional debug output
23785           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
23786             whole/client window split
23787           - Implemented handling of client argument to PaintEventStart()/End()
23788         * Control.cs:
23789           - Throw exception if BeginInvoke() is called and the window handle
23790             or one of the window's parent handles is not created
23791           - Added conditional compile to allow using MWF BeginInvoke on
23792             MS runtime
23793           - get_Parent(): Only sets parent if handle is created. This avoids
23794             forcing window handle creation when parent is set.
23795           - Now fires Layout and Parent changed events in proper order
23796           - Switched to use Handle instead of window.Handle for Z-Order setting,
23797             the get_Parent() patch above causes us to possibly get null for 'window'
23798           - Implemented handling of client argument to PaintEventStart()/End()
23799           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
23800             default handling)
23801           - Now sends a Refresh() to all child windows when Refresh() is called
23802
23803 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
23804
23805         * Form.cs: Added (non-functional) Opacity property
23806         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
23807
23808 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
23809         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
23810           use export MONO_THEME=nice to activate it.
23811           Currently supported controls:
23812           - Button
23813           - ComboBox
23814           - ScrollBar
23815           - TabControl (TabAlignment.Top only, other will follow)
23816         * ThemeEngine.cs: Add theme nice
23817         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
23818           if enabled
23819
23820 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
23821
23822         * Splitter.cs: Resize docked control and its neighbor.
23823
23824 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23825         -- Making Windows with Menus layout correctly --
23826         * Form.cs : The first leg of the fix
23827                 Menu setter - adjust Client Size as needed to make space for the menu
23828                 SetClientSizeCore - doesn't call base version to be able to pass the 
23829                         menu handle to XplatUI.CalculateWindowRect
23830         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
23831         * XplatUIX11.cs: The critical second leg of the fix
23832                 GetWindowPos needs to use a recalculated client_rect
23833                 so that resizing the window doesn't break layout of child controls. 
23834                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
23835                 Lots of \t\n killed
23836
23837 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
23838
23839         * Label.cs: Now properly recalculates width and height on Font and Text
23840           changes if AutoSize is set
23841
23842 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
23843         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
23844
23845 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
23846
23847         * ImageList.cs: Makes ToString method compatible with MS
23848
23849 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
23850
23851         * MenuAPI.cs: fixes bug 75716
23852
23853 2005-08-11 Umadevi S <sumadevi@novell.com>
23854         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
23855
23856 2005-08-11 Umadevi S <sumadevi@novell.com>
23857         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
23858
23859 2005-08-10  Umadevi S <sumadevi@novell.com>
23860         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
23861
23862 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
23863
23864         * Menu.cs: fixes bug 75700
23865         * MenuAPI.cs: fixes navigation issues
23866
23867 2005-08-09  Umadevi S <sumadevi@novell.com>
23868         * CheckedListBox.cs - simple fix for GetItemChecked.
23869
23870 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
23871
23872         * ComboBox.cs: Serveral fixes
23873         * ListBox.cs: Serveral fixes
23874
23875 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23876
23877         * ComboBox.cs: Fixes FindString methods and GetItemHeight
23878         * ListBox.cs: Fixes FindString methods
23879
23880 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
23881
23882         * DataGrid.cs: fixes bugs exposed by new tests
23883
23884 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
23885
23886         * Mime.cs: Compile Mono assembly references only if compiling
23887           with Mono (Allows to build with VS.Net again)
23888
23889 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
23890
23891         * Control.cs (PaintControlBackground): Draw background image
23892         corrrectly.
23893         (CheckForIllegalCrossThreadCalls): Stubbed.
23894         
23895         * Form.cs (OnCreateControl): Center when should be centered.
23896         
23897         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
23898
23899 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
23900
23901         * Binding.cs: Binding to properties should be case unsensitive
23902
23903 2005-07-18 vlindos@nucleusys.com
23904
23905         * DataGrid.cs: fixes setmember order
23906
23907 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
23908
23909         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
23910         * FileDialog.cs: FileDialog is now resizable and uses the new
23911           MimeIconEngine
23912
23913 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
23914
23915         * DataGridTextBoxColumn.cs: default value
23916         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
23917         * GridTableStylesCollection.cs: fixes checking MappingName
23918         * DataGridDrawingLogic.cs: fixes drawing logic issues
23919         * DataSourceHelper.cs: rewritten to make compatible with more data sources
23920         * DataGrid.cs: fixes    
23921
23922 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
23923
23924         * MimeGenerated.cs: Use case sensitive comparer for
23925           NameValueCollections
23926
23927 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
23928
23929         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
23930         * ThemeWin32Classic.cs: bug fixes, code refactoring
23931         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
23932         * DataGrid.cs: bug fixes, code refactoring
23933         * DataGridTextBox.cs: bug fixes, code refactoring
23934         * DataGridColumnStyle.cs:  bug fixes, code refactoring
23935         * Theme.cs:  bug fixes, code refactoring
23936
23937 2005-07-01  Peter Bartok  <pbartok@novell.com> 
23938
23939         * TextControl.cs: Quick fix for the reported crash on ColorDialog
23940           and other text box usage
23941
23942 2005-07-01  Jackson Harper  <jackson@ximian.com>
23943
23944         * TabControl.cs: Make sure the bottom of the tab covers the pages
23945         border.
23946
23947 2005-06-30  Peter Bartok  <pbartok@novell.com> 
23948
23949         * Form.cs (ShowDialog): Assign owner of the dialog
23950         * TextBoxBase.cs: Always refresh caret size when deleting, caret
23951           might have been moved to a tag with different height
23952
23953 2005-06-30  Jackson Harper  <jackson@ximian.com>
23954
23955         * Form.cs: Don't create an infinite loop when setting focus
23956         * MenuItem.cs: Don't dirty the parents if we don't have any
23957
23958 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
23959
23960         * LibSupport.cs: Rename
23961
23962 2005-06-29  Peter Bartok  <pbartok@novell.com>
23963
23964         * TextBoxBase.cs: Re-align caret after deleting a character
23965         * TextControl.cs:
23966           - DeleteChars(): Ensure that tag covers the provided position
23967           - StreamLine(): Drop reference for dropped tag
23968
23969 2005-06-29  Peter Bartok  <pbartok@novell.com> 
23970
23971         * TextControl.cs: 
23972           - Selections now work properly, anchoring at the initial location
23973             and properly extending in either direction (SetSelectionToCaret(),
23974             SetSelectionStart() and SetSelectionEnd())
23975           - No longer redraws the whole control on selection change, now
23976             calculates delta between previous and new selection and only
23977             invalidates/redraws that area
23978           - Fixed FindPos() math off-by-one errors
23979           - Changed DeleteChars() to verify the provided tag covers the
23980             provided position, selections may have a tag that doesn't cover
23981             the position if the selection is at a tag border
23982           - Fixed off-by-one errors in DeleteChars()
23983           - Added missing streamlining check in DeleteChars() to remove
23984             zero-length tags
23985           - Implemented Invalidate() method, now properly calculates exposures
23986             between two given lines/positions
23987           - Implemented SetSelection()
23988           - Obsoleted and removed FixupSelection()
23989           - Improved RecalculateDocument() logic, removing code duplication
23990
23991 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23992
23993         * LibSupport.cs: changes to match different input/output arguments.
23994
23995 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23996
23997         * LibSupport.cs: added libsupport.so init routine.
23998
23999 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
24000         
24001         * ControlBindingsCollection.cs
24002                 - Throws an exception on null datasource when adding
24003                 - Checks for duplicated bindings when adding
24004
24005 2005-06-28  Jackson Harper  <jackson@ximian.com>
24006
24007         * TreeView.cs (OnKeyDown): Support left and right properly
24008         (navigates as well as expanding and collapsing.
24009         - Add support for Multiply, this expands all the selected nodes
24010         children.
24011         - Fix some tabbing.
24012
24013 2005-06-28  Jackson Harper  <jackson@ximian.com>
24014
24015         * TreeView.cs: Implement keyboard navigation, currently supports,
24016         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
24017         support for toggling checkboxes with the space bar.
24018
24019 2005-06-28  Jackson Harper  <jackson@ximian.com>
24020
24021         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
24022         tree.
24023
24024 2005-06-28  Jackson Harper  <jackson@ximian.com>
24025
24026         * TreeView.cs: Add missing event.
24027
24028 2005-06-27  Peter Bartok  <pbartok@novell.com> 
24029
24030         * TextControl.cs:
24031           - Made line ending size configurable (now allows for counting 
24032             lineendings as \n or \r\n)
24033           - Added margin to viewport to keep caret visible on right side
24034           - Fixed translation routines for line/pos to documentpos to consider
24035             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
24036           - Fixed some line-endings to be unix style
24037           - Fixed Document.FormatText to perform it's calculations 1-based
24038           - Added descriptions for a few methods that might otherwise get 
24039             used wrong
24040           - Added NOTE section with some basic conventions to remember at 
24041             the top of the file
24042           - Major fixup for RichTextBox selection drawing:
24043             * Fixed crashes when multiple tags on a single line were selected
24044             * fixed selection box drawing not overlaying text
24045             * fixed bogus offset calculation for tags not starting at index 1
24046             * Switched behaviour from using multiple Substrings of a 
24047               StringBuilder.ToString() to using multiple 
24048               StringBuilder.ToString(start, length) statements, hoping this is
24049               faster (kept original version commented out in the code, in case
24050               original version was faster)
24051         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
24052           alignment != Left
24053         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
24054           call it as well
24055
24056 2005-06-27  Jackson Harper  <jackson@ximian.com>
24057
24058         * TabControl.cs: Move to the left and right with the arrow
24059         keys. These keys don't cycle beyond first and last like
24060         tab. Refresh all the tabs when scrolling them to the left or
24061         right.
24062
24063 2005-06-27  Jackson Harper  <jackson@ximian.com>
24064
24065         * TabControl.cs:
24066           - ToString: Added method
24067           - CreateParams: Remove TODO and comment
24068           - OnKeyDown: Cycle through bounds properly.
24069           - SelectedIndex: Scroll to the right or left if we need to
24070           display the newly selected tab.
24071
24072 2005-06-23  Jackson Harper  <jackson@ximian.com>
24073
24074         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
24075         set.
24076
24077 2005-06-23  Jackson Harper  <jackson@ximian.com>
24078
24079         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
24080         CTRL-SHIFT-TAB, and HOME, END are there any others?
24081
24082 2005-06-23  Jackson Harper  <jackson@ximian.com>
24083
24084         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
24085
24086 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24087         
24088         * DataGridTextBoxColumn.cs: fixes and enhancements
24089         * ThemeWin32Classic.cs: fixes and enhancements
24090         * DataGridBoolColumn.cs:  fixes and enhancements
24091         * DataGridDrawingLogic.cs:  fixes and enhancements
24092         * CurrencyManager.cs: fixes and enhancements
24093         * DataGrid.cs: fixes and enhancements
24094         * DataGridColumnStyle.cs:  fixes and enhancements
24095
24096 2005-06-22  Jackson Harper  <jackson@ximian.com>
24097
24098         * TabControl.cs: Add some missing methods that just call into the
24099         base. Make the TabPageCollection's IList interface behave in the
24100         same manner as the MS implementation.
24101
24102 2005-06-22  Peter Bartok  <pbartok@novell.com> 
24103
24104         * TextControl.cs: Added sanity check
24105         * TextBoxBase.cs: 
24106           - Fixed wrapping behaviour, don't set wrap on single line controls
24107             (this fixes the breakage of colordialog introduced in an earlier
24108              checkin)
24109           - Added rudimentary support for autoscrolling right-aligned controls
24110             (still needs fixing, also, center alignment scroll is missing)
24111
24112 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
24113         
24114         * ScrollBar.cs: Fixes thumbpos on Maximum values
24115
24116 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
24117         
24118         * PropertyGridView.cs: Pass context information to UITypeEditors 
24119
24120 2005-06-21  Peter Bartok  <pbartok@novell.com> 
24121
24122         * TextBoxBase.cs:
24123           - Now calling PositionCaret with absolute space coordinates
24124           - Enabled vertical scrolling
24125           - Better tracking of scrollbar changes, tied into WidthChange
24126             event
24127           - Improved cursor tracking
24128           - Removed debug output
24129         * TextControl.cs:
24130           - PositionCaret coordinates are now works in absolute space, not 
24131             the canvas
24132           - Improved tracking of document size
24133           - Added events for width and height changes
24134
24135 2005-06-21  Peter Bartok  <pbartok@novell.com>
24136
24137         * Form.cs: Set focus to active control when form is activated
24138         * TextControl.cs: 
24139           - Added word-wrap functionality to RecalculateLine() 
24140           - Added some short function descriptions for VS.Net to aid in
24141             writing dependent controls
24142           - Added Caret property, returning the current coords of the caret
24143           - Added ViewPortWidth and ViewPortHeight properties
24144           - Added Wrap property
24145           - Added CaretMoved event
24146           - Removed some old debug code
24147           - Split() can now create soft splits
24148           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
24149           - Added method to format existing text
24150           - Fixed size/alignment calculations to use viewport
24151           - RecalculateDocument now can handle changing line-numbers while
24152             calculating lines
24153
24154         * TextBox.cs:
24155           - Added some wrap logic, we don't wrap if alignment is not left
24156           - Added casts for scrollbar var, base class switched types to
24157             also support RichTextBoxA
24158           - Implemented handling of scrollbar visibility flags
24159
24160         * TextBoxBase.cs:
24161           - Switched scrollbars type to RichTextBoxScrollBars to support
24162             RichTextBox
24163           - Added tracking of canvas width/height
24164           - Switched scrollbars to be not selectable (to keep focus on text)
24165           - Added central CalculateDocument() method to handle all redraw
24166             requirements
24167           - Added ReadOnly support
24168           - Added WordWrap support
24169           - Fixed handling of Enter key (we now treat it as a DialogKey)
24170           - Fixed caret positioning when h or v scroll is not zero
24171           - Fixed placing/generation of vertical scrollbar
24172           - Added CalculateScrollBars() method to allow updating scrollbar
24173             limits and visibility
24174           - Fixed handling of horizontal scroll
24175           - Added handling of vertical scroll
24176           - Implemented auto-'jump' when caret moves to close to a left or
24177             right border and there is text to be scrolled into view (currently
24178             there's the potential for a stack overflow, until a bug in
24179             scrollbar is fixed)
24180
24181 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
24182         
24183         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
24184
24185 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
24186
24187         * Mime.cs:
24188         - added inodes.
24189         - return application/x-zerosize for files with size zero
24190           (if no extension pattern matches).
24191         - check matches collection for strings too.
24192         - return only the first mime type if the name value
24193           collection has more than one mime type.
24194
24195 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
24196         
24197         * PropertyGrid.cs: Cleaned up some TODOs
24198         * PropertyGridView.cs: Added support for UITypeEditors
24199
24200 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24201         
24202         * DataGrid.cs: clears cached value
24203
24204 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
24205
24206         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
24207         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
24208         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
24209         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
24210         
24211 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
24212
24213         * ThemeWin32Classic.cs: fixes colour
24214
24215 2005-06-15  Peter Bartok  <pbartok@novell.com>
24216
24217         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
24218         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
24219         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
24220         * Control.cs: Added some MWFCategory and MWFDescription attributes
24221         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
24222
24223 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
24224
24225         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
24226         usage
24227
24228 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
24229
24230         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
24231         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
24232         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
24233         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
24234         * DataGrid.cs: default datagrid settings for Default Styles, fixes
24235         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
24236
24237 2005-06-13  Jackson Harper  <jackson@ximian.com>
24238
24239         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
24240         isn't printed when the user enables dropping. (X11 does accept
24241         drops).
24242         
24243 2005-06-13  Jackson Harper  <jackson@ximian.com>
24244
24245         * TreeView.cs: Remove some TODOS.
24246
24247 2005-06-13  Jackson Harper  <jackson@ximian.com>
24248
24249         * Form.cs: Hook into the mdi framework.
24250         * MdiClient.cs: Use the base control collections add method so
24251         parents get setup correctly. Set the default back colour and dock
24252         style.
24253         * MdiChildContext.cs: New class, this bad actor handles an
24254         instance of an MDI window. Right now there is only basic
24255         support. You can drag, close, and resize windows. Minimize and
24256         Maximize are partially implemented.
24257
24258 2005-06-13  Jackson Harper  <jackson@ximian.com>
24259
24260         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
24261         freaky when both vals are negative. NOTE: There are probably other
24262         places in XplatUIX11 that this needs to be done.
24263
24264 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
24265
24266         * DataGrid.cs: implement missing methods, move KeyboardNavigation
24267         * DataGridColumnStyle.cs: fixes signature
24268
24269 2005-06-12  Jackson Harper  <jackson@ximian.com>
24270
24271         * XplatUIX11.cs: Use sizing cursors similar to the ones on
24272         windows.
24273
24274 2005-06-11  Jackson Harper  <jackson@ximian.com>
24275
24276         * StatusBarPanel.cs: Signature cleanups. Implement
24277         BeginInit/EndInit.
24278
24279 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
24280
24281         * DataGridTextBoxColumn.cs: Honors aligment
24282         * GridColumnStylesCollection.cs: Contains is case unsensitive
24283         * GridTableStylesCollection.cs: several fixes
24284         * DataGridTableStyle.cs: default column creation
24285         * DataGridDrawingLogic.cs: fixes
24286         * CurrencyManager.cs: ListName property
24287         * DataGrid.cs: multiple styles support
24288         * DataGridColumnStyle.cs: fixes
24289         
24290
24291 2005-06-10  Peter Bartok  <pbartok@novell.com>
24292
24293         * Control.cs(Select): Moved SetFocus call to avoid potential
24294           loops if controls change the active control when getting focus
24295         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
24296           the up/down buttons
24297
24298 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
24299
24300         * ImageListConverter.cs: Implemented
24301
24302 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24303
24304         * MonthCalendar.cs: Wired in NumericUpDown control for year
24305
24306 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
24307
24308         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
24309           DoubleClick events, since they are not meant to be fired.
24310
24311 2005-06-09  Peter Bartok  <pbartok@novell.com>
24312
24313         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
24314           Jonathan's standalone controls into MWF, implemented missing
24315           events, attributes and methods; added xxxAccessible classes
24316         * AccessibleObject.cs: Made fields internal so other classes
24317           can change them if needed
24318
24319 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
24320
24321         * UpDownBase.cs: Complete implementation
24322         * NumericUpDown.cs: Complete implementation
24323         * DomainUpDown.cs: Complete implementation
24324
24325 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
24326
24327         * DataGridTextBoxColumn.cs: drawing fixes
24328         * DataGridCell.cs: fixes ToString method to match MSNet
24329         * DataGridTableStyle.cs: fixes
24330         * DataGridBoolColumn.cs: fixes, drawing
24331         * DataGridDrawingLogic.cs: fixes, new methods
24332         * DataGridTextBox.cs: Keyboard and fixes
24333         * DataGrid.cs:
24334                 - Keyboard navigation
24335                 - Scrolling fixes
24336                 - Row selection (single, multiple, deletion, etc)
24337                 - Lots of fixes
24338         
24339 2005-06-07  Jackson Harper  <jackson@ximian.com>
24340
24341         * ThemeWin32Classic.cs: Clear the background area when drawing
24342         buttons.
24343
24344 2005-06-06  Peter Bartok  <pbartok@novell.com>
24345
24346         * ImageListStreamer.cs: Fixed signature for GetData
24347         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
24348         * ComboBox.cs:
24349           - Added missing ChildAccessibleObject class
24350           - Added missing OnXXXFocus overrides, switched to using those
24351             instead of the event handler
24352         * Control.cs:
24353           - Added Parent property for ControlAccessibleObject
24354           - Fixed signatures
24355           - Fixed attributes
24356           - Added ResetBindings()
24357         * ListBindingConverter.cs: Implemented some methods
24358         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
24359         * ImageList.cs: Implemented basic handle scheme, removed TODOs
24360         * ContainerControl.cs: Fixed signature, now subscribing to the
24361           ControlRemoved event instead of overriding the handler, LAMESPEC
24362         * CurrencyManager.cs: Added missing attribute
24363         * MonthCalendar.cs: Added missing properties
24364
24365 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24366
24367         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
24368         
24369 2005-06-06  Gaurav Vaish and Ankit Jain
24370
24371         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
24372         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
24373         
24374 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
24375
24376         * Control.cs: fixes CreateParams Width / Height.
24377
24378 2005-06-05  Peter Bartok  <pbartok@novell.com>
24379
24380         * Win32DnD.cs: Removed compilation warnings
24381
24382 2005-06-05  Peter Bartok  <pbartok@novell.com>
24383
24384         * Control.cs (CreateParams): Since we don't know if one of the
24385           properties we use is overridden, lets make sure if we fail accessing
24386           we continue with a backup plan
24387
24388 2005-06-05  Peter Bartok  <pbartok@novell.com>
24389
24390         * Win32DnD.cs:
24391           - Removed debug output
24392           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
24393             struct
24394           - Plugged resource leak
24395         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
24396           MS size
24397
24398 2005-06-05  Peter Bartok  <pbartok@novell.com>
24399
24400         * XplatUIWin32.cs: Removed DnD code
24401         * Win32DnD.cs: Implemented drop source and drop target functionality
24402
24403 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24404
24405         * UpDownBase.cs: remove duplicate addition of event, enable some code
24406         that was commented out.
24407         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
24408         Validate input when a key is pressed. It works fine now for every
24409         combination of Hexadecimal. Only missing some drawing love when sharing
24410         space with other controls.
24411
24412 2005-06-04  Peter Bartok  <pbartok@novell.com>
24413
24414         * Control.cs:
24415           - We need to pass a window for DragDrop, so enable callback events
24416           - Added DnD callback events when being a DragSource
24417         * XplatUI.cs (StartDrag): Added window handle argument
24418         * XplatUIDriver.cs (StartDrag): Added window handle argument
24419         * QueryContinueDragEventArgs: Made fields internally accessible so
24420           drivers can set them
24421         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
24422           can set them
24423
24424 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
24425
24426         * DataGridTextBoxColumn.cs: column text editing
24427         * DataGridTableStyle.cs: Respect columns styles created by the user
24428         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
24429         * DataGridBoolColumn.cs: bool column editing
24430         * DataGrid.cs: fixes to scrolling, properties, etc
24431         * DataGridTextBox.cs: handle keyboard
24432         * DataGridColumnStyle.cs: fixes
24433
24434 2005-06-02  Jackson Harper  <jackson@ximian.com>
24435
24436         * ImageListStreamer.cs: Somewhat broken implementation of
24437         GetObjectData. The RLE needs some work to match MS properly.
24438
24439 2005-06-02  Jackson Harper  <jackson@ximian.com>
24440
24441         * X11Dnd.cs: Attempting to keep at least one file in MWF
24442         monostyled.
24443
24444 2005-06-02  Peter Bartok  <pbartok@novell.com>
24445
24446         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
24447           that way
24448
24449 2005-06-02  Peter Bartok  <pbartok@novell.com>
24450
24451         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
24452         * XplatUI.cs: Added DoDragDrop() method
24453         * XplatUIDriver.cs: Added DoDragDrop() method
24454
24455 2005-06-02  Jackson Harper  <jackson@ximian.com>
24456
24457         * Splitter.cs: Implement BorderStyle.
24458
24459 2005-06-02  Jackson Harper  <jackson@ximian.com>
24460
24461         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
24462         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
24463         X11 using XDND.
24464
24465 2005-06-02  Peter Bartok  <pbartok@novell.com>
24466
24467         * DataObject.cs:
24468           - Added Data setter
24469           - Fixed broken insertion code for SetData, now also
24470             overwrites any existing entry of the same format name
24471         * Hwnd.cs: Added list of pointers that automatically gets
24472           freed when the window is disposed
24473         * XplatUI.cs: Call driver initialization method when loading
24474           a driver
24475         * Control.cs:
24476           - OnDragLeave takes EventArgs, not DragEventArgs
24477           - Added setting of WS_EX_ACCEPTFILES style when dropping is
24478             supported
24479           - Forces style update when drop state changes
24480         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
24481           not perfect since we cannot (yet) call the IDataObject.GetData()
24482           method, we keep getting 0x80004005 error, dunno why)
24483
24484 2005-06-02  Peter Bartok  <pbartok@novell.com>
24485
24486         * DragEventArgs.cs: Make fields internal so we can cache the
24487           object and re-set the fields from XplatUI
24488
24489 2005-06-02  Jackson Harper  <jackson@ximian.com>
24490
24491         * Control.cs: Add some internal methods so the DnD subsystem can
24492         raise DnD events. Also call into the driver when AllowDrop is set.
24493         * XplatUI.cs:
24494         * XplatUIDriver.cs: New method for setting whether or not a window
24495         is allowed to accept drag and drop messages.
24496                 
24497 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
24498         
24499         * ScrollBar.cs: Make sure that values sent in Scroll events
24500         are always between Maximum and Minimum.
24501
24502 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
24503
24504         * Menu.cs: Call MenuChanged when menuitem visibility has been
24505         changed.
24506         * MenuItem.cs: Rebuild menu when item is (not) visible.
24507         * MainMenu.cs: MainMenu has special MenuChanged.
24508         * Theme.cs: Caption and FrameBorderSize are not fixed.
24509         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
24510         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
24511         * XplatUIX11.cs,
24512         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
24513         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
24514
24515 2005-05-30  Jackson Harper  <jackson@ximian.com>
24516
24517         * DataFormat.cs: We can't statically initialize this stuff because
24518         it calls into the xplatui and could create a loop. So we lazy init
24519         it.
24520
24521 2005-05-28  Jackson Harper  <jackson@ximian.com>
24522
24523         * Control.cs: Proper implementation of Product(Name/Version).
24524
24525 2005-05-27  Jackson Harper  <jackson@ximian.com>
24526
24527         * DataObject.cs: Dont crash if no data is found.
24528
24529 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
24530         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
24531                 as per status page, guessing it should be set to true
24532
24533 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
24534
24535         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
24536         * DataGridTableStyle.cs: set proper formatting text, def header text
24537         * ThemeWin32Classic.cs: new themable paramaters
24538         * DataGridBoolColumn.cs: paint check box, get data, fixes
24539         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
24540         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
24541         * DataGridColumnStyle.cs: fixes
24542         * Theme.cs: new themable paramaters
24543                 
24544 2005-05-26  Peter Bartok  <pbartok@novell.com>
24545
24546         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
24547
24548 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24549         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
24550
24551 2005-05-24  Peter Bartok  <pbartok@novell.com>
24552
24553         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
24554           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
24555           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
24556           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
24557           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
24558           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
24559           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
24560           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
24561           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
24562           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
24563           missing attributes, etc
24564         * DataGridPreferredColumnWidthTypeConverter.cs: Added
24565
24566 2005-05-24  Peter Bartok  <pbartok@novell.com>
24567
24568         * Help.cs: Added, implemented trivial functions, throws up MessageBox
24569           when user tries to get help
24570         * DataObject.cs, DataFormats.cs, LinkArea.cs,
24571           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
24572           to suppress warnings
24573         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
24574           avoid unreachable code warning
24575
24576 2005-05-20  Peter Bartok  <pbartok@novell.com>
24577
24578         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
24579
24580 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24581
24582         * DataGridTextBoxColumn.cs: Basic painting methods
24583         * DataGridTableStyle.cs: Set table style in the column
24584         * ThemeWin32Classic.cs: Use Theme for colors
24585         * DataGridDrawingLogic.cs: Implement more drawing
24586         * DataGrid.cs: drawing, theming, enhacements, fixes
24587         * DataGridColumnStyle.cs: fixes, drawing
24588         * Theme.cs: theming for Datagrid
24589
24590 2005-05-20  Peter Bartok  <pbartok@novell.com>
24591
24592         * Cursor.cs: Implemented GetObjectData() method
24593
24594 2005-05-20  Peter Bartok  <pbartok@novell.com>
24595
24596         * Cursors.cs: Added setting of cursor name
24597         * Cursor.cs:
24598           - Implemented constructors
24599           - Implemented Draw and DrawStretched
24600           - Implemented Current property
24601           - Implemented == and != operators
24602           - Implemented Dispose()
24603           - Implemented ToString
24604           - Added missing attributes
24605         * XplatUIX11.cs:
24606           - Added missing reset for OverrideCursor when DoEvents is called
24607           - Fixed creation of cursor, logic was wrong
24608         * XplatUIWin32.cs:
24609           - Added missing reset for OverrideCursor when DoEvents is called
24610           - Fixed creation of cursor, bit arrays were swapped
24611         * Clipboard.cs: Removed obsolete MonoTODO attribute
24612
24613 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24614
24615         * ComboBox.cs: fixes OnSelectedItemChanged
24616         * ControlBindingsCollection.cs: fixes item range check
24617
24618 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
24619
24620         * UpDownBase.cs:
24621                 - Calc preferred height properly
24622                 - Implement missing properties
24623                 
24624         * NumericUpDown.cs: Implement missing events
24625
24626 2005-05-19  Jackson Harper  <jackson@ximian.com>
24627
24628         * TabControl.cs: New method that resizes the tab pages before
24629         redrawing them. This as needed as the control is double buffered
24630         and sizing will not be recalculated unless ResizeTabPages is
24631         called.
24632         * TabPage.cs: Set base.Text instead of Text in the constructor so
24633         that UpdateOwner does not get called. Use the new Redraw method of
24634         TabControl instead of Refresh so the sizing is recalculated.
24635         * ThemeWin32Classic.cs: Draw the text for button tabs.
24636
24637 2005-05-19  Jackson Harper  <jackson@ximian.com>
24638
24639         * Control.cs: Paint control background images. Fix typo where
24640         PaintControlBackground was not getting called correctly.
24641
24642 2005-05-19  Peter Bartok  <pbartok@novell.com>
24643
24644         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
24645           I can investigate, apparently I broke FileDialog
24646
24647 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
24648
24649         * AxHost.cs: Some simple properties.
24650         * Control.cs: window must be accessible after ctor.
24651         * Form.cs: Added TransparencyKey property.
24652         * TextBoxBase.cs: Implemented Clear. Text property can be null.
24653         * XplatUIWin32.cs: SetBorderStyle implemented.
24654
24655 2005-05-18  Peter Bartok  <pbartok@novell.com>
24656
24657         * DataObject.cs: Entries are not global but particular to the
24658           DataObject, now it behaves that way
24659         * XplatUIWin32.cs: Implemented Clipboard methods
24660         * Clipboard.cs: Implemented
24661         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
24662         * XplatUIOSX.cs: Updated to final clipboard prototypes
24663         * XplatUIX11.cs: Implemented Clipboard methods
24664         * XplatUIDriver.cs: Updated to final clipboard prototypes
24665         * XplatUIStructs.cs:
24666           - Added BITMAPINFOHEADER struct
24667           - Added ClipboardFormats enum
24668         * X11Structs.cs:
24669           - Added ClipboardStruct
24670           - Added Atom enum items for clipboard types
24671           - Fixed atom types for Selection event structures
24672         * DataFormats.cs:
24673           - Added internal properties and methods for drivers to enumerate
24674             all known formats
24675           - Switched initialization method to allow drivers to assign their
24676             own IDs even for the MS predefined clipboard IDs
24677         * XplatUI.cs: Updated to final clipboard interface
24678
24679 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24680         * PropertyGridView.cs: Fixed compiler warnings.
24681
24682 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
24683         * PropertyGrid.cs: Added some event calls
24684         * PropertyGridView.cs: Change drawing code to use double buffering
24685         * PropertyGridTextBox.cs: Changed Text property name
24686         * GridItem.cs: Added Bounds property.
24687         * GridEntry.cs: Added Bounds property.
24688
24689 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
24690
24691         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
24692         since GetType() may not return the correct type if the object is
24693         a remoting proxy.
24694
24695 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
24696
24697         * TreeNodeCollection.cs: fixes get/set item ranges
24698         
24699 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24700
24701         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
24702                 
24703 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
24704
24705         * ComboBox.cs: Fix item range comparation
24706         * ListView.cs: Fix item range comparation
24707
24708 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24709
24710         * FontDialog.cs:
24711           - Clear example panel when OnPaint is called
24712           - Better solution for displaying the example panel text
24713           - Select default indexes in the ListBoxes
24714
24715 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24716
24717         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
24718
24719 2005-05-11  Peter Bartok  <pbartok@novell.com>
24720
24721         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
24722         * SelectionRangeConverter.cs: Implemented
24723         * PropertyGrid.cs: Fixed attribute value
24724         * Control.cs:
24725           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
24726           - Added Sebastien Pouliot's CAS Stack Propagation fixes
24727         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
24728           that's common to all drivers. First methods to go there are
24729           Sebastien Pouliot's CAS Stack Propagation helper methods
24730         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
24731           Sebastien Pouliot for CAS Stack Propagation
24732
24733 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
24734
24735         * OSXStructs.cs:
24736           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
24737
24738 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
24739
24740         * DataGridTextBoxColumn.cs: fixed some members
24741         * GridColumnStylesCollection.cs: indexed column is case insensitive
24742         * DataGridTableStyle.cs: fixes
24743         * ThemeWin32Classic.cs: add new theme parameter
24744         * Theme.cs: add new theme parameter
24745         * DataGridDrawingLogic.cs: Datagrid's drawing logic
24746         * DataGrid.cs: fixes, new internal properties, etc.
24747         * DataGridColumnStyle.cs: allows to set grid value
24748         *
24749
24750 2005-05-10  Peter Bartok  <pbartok@novell.com>
24751
24752         * AccessibleObject.cs:
24753           - Removed MonoTODO attribute on help, method is correct
24754           - Fixed Bounds property
24755         * AxHost.cs: Moved MonoTODO
24756         * ButtonBase.cs: Now setting AccessibleObject properties
24757         * RadioButton.cs: Setting proper AccessibleObject role
24758         * CheckBox.cs: Setting proper AccessibleObject role
24759         * ControlBindingsCollection.cs: Added properties, methods and attributes
24760         * DataFormats.cs: Fixed awkward internal API, and changed to enable
24761           userdefined DataFormats.Format items as well
24762         * ListControl.cs: Removed data_member from the public eye
24763         * OpenFileDialog.cs:
24764           - Made class sealed
24765           - Added missing attributes
24766         * SaveFileDialog.cs: Added missing attributes
24767         * ImageListStreamer.cs: Fixed code that caused warnings
24768         * LinkLabel.cs: Removed unreachable code
24769         * TreeView.cs: Fixed code that caused warnings
24770         * PropertyGridView.cs: Fixed code that caused warnings
24771         * GridColumnStylesCollection.cs: Added missing attributes
24772         * GridTableStylesCollection: Added missing attribute
24773         * PropertyManager: Added .ctor
24774         * SecurityIDType: Added
24775         * DataObject.cs: Implemented class
24776         * LinkArea.cs: Added missing attribute
24777
24778 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
24779
24780         * RadioButton.cs: call base method to allow to fire OnClick event
24781         * UpDownBase.cs: OnMouseUp call base method
24782         * CheckedListBox.cs: call base method before returning
24783         * TrackBar.cs: call base method before returning
24784         
24785
24786 2005-05-10  Peter Bartok  <pbartok@novell.com>
24787
24788         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
24789           for messages
24790
24791 2005-05-10  Peter Bartok  <pbartok@novell.com>
24792
24793         * DataFormats.cs: Implemented
24794         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
24795           XplatUIX11.cs: Added Clipboard APIs
24796         * XplatUIWin32.cs: Implemented Clipboard APIs
24797         * FolderBrowserDialog.cs: Added missing event, attributes
24798
24799 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
24800
24801         * CheckBox.cs: call base method to allow to fire OnClick event
24802
24803 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
24804
24805         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
24806
24807 2005-05-06  Peter Bartok  <pbartok@novell.com>
24808
24809         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
24810         * Screen.cs: Implemented
24811         * HelpNavigator.cs: Added
24812         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
24813           property
24814         * HelpProvider.cs: Implemented all we can do until we have a CHM
24815           help library (which means that "What's This" does work now)
24816
24817 2005-05-06  Jackson Harper  <jackson@ximian.com>
24818
24819         * XplatUIX11.cs: Fix waking up the main loop.
24820                 
24821 2005-05-05  Peter Bartok  <pbartok@novell.com>
24822
24823         * XplatUI.cs: Updated revision
24824         * Form.cs: Removed enless loop
24825         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
24826         * Label.cs (OnPaint): Added call to base.OnPaint()
24827         * ToolTip.cs: Made ToolTipWindow reusable for other controls
24828         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
24829         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
24830         * AxHost.cs: Added
24831         * ButtonBase.cs: Moved base.OnPaint() call to end of method
24832         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
24833           to ToolTip.ToolTipWindow for drawing and size methods; this allows
24834           reuse of ToolTipWindow by other controls
24835         * SizeGrip.cs: Moved base.OnPaint() call to end of method
24836         * XplatUIX11.cs: Now clipping drawing area (experimental)
24837         * PictureBox.cs: Moved base.OnPaint() call to end of method
24838         * Theme.cs: Fixed ToolTip abstracts to match new format
24839         * ErrorProvider.cs: Implemented
24840
24841 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
24842
24843         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
24844         * LinkLabel.cs:
24845                 - Adds cursors
24846                 - Handles focus
24847                 - Implements LinkBehavior
24848                 - Fixes many issues
24849
24850 2005-05-03  Jackson Harper  <jackson@ximian.com>
24851
24852         * ListView.cs: Calculate the scrollbar positioning on resize and
24853         paint, so they get put in the correct place.
24854
24855 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
24856
24857         * ColorDialogs.cs: The small color panels are now handled by
24858           SmallColorControl. This fixes drawing of the focus rectangle
24859           and adds a 3D border.
24860
24861 2005-05-03  Peter Bartok  <pbartok@novell.com>
24862
24863         * Control.cs: Modified version of Jonathan Chamber's fix for
24864           double-buffering
24865
24866 2005-05-03  Jackson Harper  <jackson@ximian.com>
24867
24868         * ListView.cs: Remove redraw variable. Control now handles whether
24869         or not a redraw needs to be done, and will only raise the paint
24870         event if redrawing is needed.
24871
24872 2005-05-03  Jackson Harper  <jackson@ximian.com>
24873
24874         * Splitter.cs: No decorations for the splitter form. Cache the
24875         hatch brush.
24876
24877 2005-05-03  Jackson Harper  <jackson@ximian.com>
24878
24879         * TreeView.cs: Use dashed lines to connect nodes. Use the
24880         ControlPaint method for drawing the focus rect instead of doing
24881         that in treeview.
24882
24883 2005-05-02  Peter Bartok  <pbartok@novell.com>
24884
24885         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
24886
24887 2005-04-29  Jackson Harper  <jackson@ximian.com>
24888
24889         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
24890         entire image buffer. Just clear the clipping rectangle.
24891
24892 2005-04-29  Jackson Harper  <jackson@ximian.com>
24893
24894         * ThemeWin32Classic.cs: Don't draw list view items that are
24895         outside the clipping rectangle.
24896
24897 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
24898
24899         * ListBox.cs: added horizontal item scroll
24900
24901 2005-04-29  Jackson Harper  <jackson@ximian.com>
24902
24903         * ThemeWin32Classic.cs: Remove some old debug code that was
24904         causing flicker with the new double buffering code.
24905
24906 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
24907
24908         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
24909         behave like combobox and comboboxlist (still not sure if this is
24910         correct though).
24911
24912 2005-04-28  Jackson Harper  <jackson@ximian.com>
24913
24914         * ThemeWin32Classic.cs: Don't fill the middle of progress
24915         bars. This fills areas outside of the clip bounds that don't need
24916         to be filled.
24917
24918 2005-04-28  Jackson Harper  <jackson@ximian.com>
24919
24920         * Control.cs: Don't expose functionality to touch the image buffers.
24921         * ProgressBar.cs:
24922         * ListView.cs: We do not need to (and no longer can) manipulate
24923         the image buffers directly. All of this is handled by Control.
24924
24925 2005-04-28  Peter Bartok  <pbartok@novell.com>
24926
24927         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
24928           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
24929           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
24930
24931 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24932
24933         * Combobox:
24934                 - Adjust control's height for non-simple comboboxes (bug fix)
24935                 - Remove dead code
24936         * MenuAPI.cs: remove unused var
24937         * ScrollBar.cs: remove unsed var
24938                  
24939         * ListBox.cs: unselect items when clearing
24940
24941 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
24942
24943         * ListControl.cs: honors OnPositionChanged and default Selected Item
24944         * ListBox.cs: unselect items when clearing
24945
24946 2005-04-27  Jackson Harper  <jackson@ximian.com>
24947
24948         * X11Keyboard.cs: Initialize a default keyboard and give a warning
24949         if a "correct" keyboard is not found. This will make us not crash,
24950         but might give some users bad keyboard layouts...seems to be the
24951         same thing rewind does.
24952
24953 2005-04-27  Jackson Harper  <jackson@ximian.com>
24954
24955         * BindingManagerBase.cs: Attach the current/position changed
24956         handlers to their respective events.
24957
24958 2005-04-27  Jackson Harper  <jackson@ximian.com>
24959
24960         * Control.cs: Make sure that the first WM_PAINT does a full draw,
24961         not just a blit.
24962         * ThemeWin32Classic.cs: Don't fill the background for picture
24963         boxes. This could overright user drawing.
24964         * ComboBox.cs: Just fill the clipping rect not the entire client
24965         rect when drawing the background. This prevents pieces of the
24966         image buffer from getting overwritten and is theoretically faster.
24967
24968 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
24969
24970         * ComboBox.cs: Databinding support fixes, fire missing events
24971         * ListControl.cs: implement missing methods and properties, fixes
24972         * ThemeWin32Classic.cs: Databiding support on Drawing
24973         * CheckedListBox.cs: Databinding support fixes, fire missing events
24974         * ListBox.cs: Databinding support fixes, fire missing events
24975         
24976 2005-04-25  Peter Bartok  <pbartok@novell.com>
24977
24978         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
24979
24980 2005-04-25  Jackson Harper  <jackson@ximian.com>
24981
24982         * TreeView.cs: Use the horizontal scrollbars height not width when
24983         determining how much of the client area is available.
24984
24985 2005-04-25  Jackson Harper  <jackson@ximian.com>
24986
24987         * Control.cs: Double buffering is handled differently now. As per
24988         the spec, the extra buffer is created in the WM_PAINT message and
24989         passed down to the control's drawing code.
24990         * GroupBox.cs:
24991         * Label.cs:
24992         * CheckBox.cs:
24993         * ProgressBar.cs:
24994         * RadioButton.cs:
24995         * ColorDialog.cs:
24996         * ComboBox.cs:
24997         * PropertyGridView.cs:
24998         * UpDownBase.cs:
24999         * MessageBox.cs:
25000         * MenuAPI.cs:
25001         * ListView.cs:
25002         * ButtonBase.cs:
25003         * SizeGrip.cs:
25004         * ScrollBar.cs:
25005         * ListBox.cs:
25006         * TrackBar.cs:
25007         * ToolBar.cs:
25008         * PictureBox.cs:
25009         * DateTimePicker.cs:
25010         * StatusBar.cs:
25011         * TreeView.cs: Update to new double buffering system.
25012         * MonthCalendar.cs: Uncomment block, as Capture is now
25013         working. Update to new double buffering
25014         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
25015         * PaintEventArgs.cs: New internal method allows us to set the
25016         graphics object. This is used for double buffering.
25017         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
25018         rectangle. The internal paint_area var has been removed from
25019         StatusBar. The clipping rect should be used instead.
25020         * Theme.cs: Give the PictureBox drawing method a clipping rect.
25021         * TabPage.cs: The RefreshTabs method was removed, so just call the
25022         tab controls Refresh method now.
25023         * TabControl.cs: Update to new double buffering. Make sure the
25024         handle is created before sizing the tab pages, otherwise we will
25025         get stuck in a loop.
25026
25027 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
25028
25029         * LinkLabel.cs: Fix typo, bug #74719; patch
25030           from Borja Sanchez Zamorano
25031
25032 2005-04-22  Jackson Harper  <jackson@ximian.com>
25033
25034         * TreeNode.cs: Implement Handle stuff.
25035         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
25036
25037 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
25038
25039         * DataGridTextBoxColumn.cs: call base constructors, fixes
25040         * GridColumnStylesCollection.cs: missing events, methods, and functionality
25041         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
25042         * DataGridTableStyle.cs: implements create default column styles
25043         * DataGridBoolColumn.cs: which types can handle
25044         * DataGrid.cs: missing methods, fixes, new functionality
25045         * DataGridColumnStyle.cs: fixes
25046
25047 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
25048         * FolderBrowserDialog.cs:
25049         - Use a thread to fill the TreeView
25050         - Adjusted some sizes
25051
25052 2005-04-19  Peter Bartok  <pbartok@novell.com>
25053
25054         * LinkLabel.cs: (Re-)create the pieces when setting the Text
25055           property. Fixes #74360.
25056
25057 2005-04-19  Jackson Harper  <jackson@ximian.com>
25058
25059         * XEventQueue.cs: Lock when getting the lockqueue size.
25060         * PictureBox.cs: Call base OnPaint
25061         
25062 2005-04-19  Peter Bartok  <pbartok@novell.com>
25063
25064         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
25065           messages were no longer being processed (this broke BeginInvoke)
25066
25067           
25068 2005-04-18  Jackson Harper  <jackson@ximian.com>
25069
25070         * TreeView.cs: buglet that caused node images to get drawn
25071         regardless of whether or not they were in the clipping rectangle.
25072
25073 2005-04-18  Jackson Harper  <jackson@ximian.com>
25074
25075         * CurrencyManager.cs: There are four rules for GetItemProperties:
25076         - If the type is an array use the element type of the array
25077         - If the type is a typed list, use the type
25078         - If the list contains an Item property that is not an object, use
25079         that property
25080         - use the first element of the list if there are any elements in
25081         the list.
25082         
25083 2005-04-17  Jackson Harper  <jackson@ximian.oom>
25084
25085         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
25086         click. This handles offsets for scrolling properly and reduces
25087         memory. Also fixed GetNode to not offset now that TopNode works
25088         properly.
25089         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
25090         
25091 2005-04-17  Jackson Harper  <jackson@ximian.com>
25092
25093         * CursorConverter.cs: Initial implementation.
25094
25095 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25096
25097         * ListControl.cs: work towards complex data binding support on ListControl
25098         * CurrencyManager.cs: work towards complex data binding support on ListControl
25099         * ListBox.cs: work towards complex data binding support on ListControl
25100
25101
25102 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
25103
25104         * GridTableStylesCollection.cs: fixes name and constructor
25105         * DataGridTableStyle.cs: fixes
25106         * DataGridBoolColumn.cs: fixes names and constructors
25107         * DataGrid.cs: define methods and properties. Some init implementations
25108         * DataGridCell.cs: define methods and properties. Some init implementations
25109         * GridTablesFactory.cs: Define methods and properties
25110
25111 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
25112
25113         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
25114         graphics port changes.  We still want the coordinates in global screen
25115         coordinates.
25116
25117 2005-04-14  Jackson Harper  <jackson@ximian.com>
25118
25119         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
25120         check plus minus or checkbox clicks unless those features are enabled.
25121
25122 2005-04-14  Jackson Harper  <jackson@ximian.com>
25123
25124         * TreeView.cs: Add methods for setting the top and bottom visible
25125         nodes. TreeNode::EnsureVisible uses these methods.
25126         * TreeNode.cs: Implement EnsureVisible
25127
25128 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
25129
25130         * Form.cs: Pospone menu assignation if the window has not been created yet
25131         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
25132         size and position
25133
25134 2005-04-12  Jackson Harper  <jackson@ximian.com>
25135
25136         * TreeView.cs: Set the TopNode properly when scrolling
25137         occurs. This has the added benifit of reducing the amount of
25138         walking that needs to be done when drawing. Also removed an old
25139         misleading TODO.
25140         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
25141         
25142 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
25143
25144         * Timer.cs: fixes interval setting when the timer is already enabled
25145         
25146 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
25147
25148         * FolderBrowserDialog.cs: First approach
25149
25150 2005-04-09  Peter Bartok  <pbartok@novell.com>
25151
25152         * FolderBrowserDialog: Added
25153
25154 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
25155
25156         * LinkLabel.cs: move drawing code into the theme
25157         * ThemeWin32Classic.cs: drawing code and painting background bugfix
25158         * Theme.cs: define DrawLinkLabel method
25159
25160 2005-04-05  Jackson Harper  <jackson@ximian.com>
25161
25162         * BindingContext.cs: Use weak references so these bad actors don't
25163         stay alive longer then they need to.
25164
25165 2005-04-05  Jackson Harper  <jackson@ximian.com>
25166
25167         * ListControl.cs: Basic implementation of complex databinding.
25168         * ComboBox.cs:
25169         * ListBox.cs: Add calls to ListControl databinding methods.
25170
25171 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
25172
25173         * FileDialog.cs:
25174           - Don't change PopupButtonState to Normal when the
25175             PopupButton gets pressed several times.
25176           - Renamed ButtonPanel to PopupButtonPanel
25177
25178 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
25179
25180         * ColorDialog.cs: Use cached objects instead of creating them
25181         * LinkLabel.cs: Use cached objects instead of creating them
25182         * Splitter.cs: Use cached objects instead of creating them
25183         * FontDialog.cs: Use cached objects instead of creating them
25184         * PropertyGridView.cs: Use cached objects instead of creating them
25185         * MessageBox.cs: Use cached objects instead of creating them
25186         * FileDialog.cs: Use cached objects instead of creating them
25187         * ThemeWin32Classic.cs: Use cached objects instead of creating them
25188         * TreeView.cs: Use cached objects instead of creating them
25189         
25190 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
25191
25192         * Control.cs: use Equals to compare the font since no == op
25193         * ScrollBar.cs: use Equals to compare the font since no == op
25194
25195 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
25196
25197         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
25198
25199 2005-04-01  Jackson Harper  <jackson@ximian.com>
25200
25201         * Binding.cs: Implement IsBinding.
25202         * BindingManagerBase.cs:
25203         * PropertyManager.cs:
25204         * CurrencyManager.cs: Add IsSuspended property.
25205
25206 2005-04-01  Jackson Harper  <jackson@ximian.com>
25207
25208         * Binding.cs: Had some IsAssignableFrom calls backwards.
25209
25210 2005-04-01  Jackson Harper  <jackson@ximian.com>
25211
25212         * Binding.cs: Handle null data members when pulling data.
25213         * PropertyManager.cs: Handle the data member being a property that
25214         does not exist.
25215
25216 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25217
25218         * DataGridTextBoxColumn.cs: fixes signature
25219         * DataGrid.cs: calls right constructor
25220
25221 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
25222
25223         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
25224         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
25225         * GridTableStylesCollection.cs: implements GridTableStylesCollection
25226         * DataGridTableStyle.cs: implements DataGridTableStyle
25227         * DataGridBoolColumn.cs: implements DataGridBoolColumn
25228         * DataGridTextBox.cs: implements DataGridTextBox
25229         * DataGridColumnStyle.cs: implements DataGridColumnStyle
25230
25231 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
25232
25233         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
25234
25235 2005-03-29  Peter Bartok  <pbartok@novell.com>
25236
25237         * Application.cs:
25238           - Properly implemented CompanyName property
25239           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
25240             returns a path that includes CompanyName, ProductName and
25241             Version (fixes bug #70330)
25242
25243 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
25244
25245         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
25246           fixes bug #72588.
25247
25248 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25249
25250         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
25251         
25252           - Added ReadOnly CheckBox
25253           - Further refactoring: moved some code from Open-/SaveFileDialog
25254             to FileDialog
25255
25256 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
25257
25258         * OpenFileDialog.cs: Fixed CheckFileExists
25259         * FileDialog.cs:
25260           Moved FileView and DirComboBox outside FileDialog class.
25261           They can now be used outside FileDialog
25262
25263 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25264
25265         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
25266         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
25267
25268 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
25269
25270         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25271           - Added missing CreatePrompt property in SaveDialog
25272           - Overall SaveDialog handling should be better now
25273           - Added non standard ShowHiddenFiles property
25274           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
25275           - Added InitialDirectory and RestoreDirectory support
25276
25277 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
25278
25279         * FileDialog.cs: Made dirComboBox usable
25280
25281 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
25282
25283         * FileDialog.cs: Added Filter support (case sensitiv)
25284
25285 2005-03-24  Jackson Harper  <jackson@ximian.com>
25286
25287         * TabControl.cs: Need a couple more pixels for the lines.
25288
25289 2005-03-23  Jackson Harper  <jackson@ximian.com>
25290
25291         * TabControl.cs: Give the tab page focus when it is selected.
25292
25293 2005-03-23  Jackson Harper  <jackson@ximian.com>
25294
25295         * TabControl.cs: Account for the drawing of tabs borders when
25296         invalidating. If the slider was clicked dont do click detection on
25297         the tabs.
25298
25299 2005-03-23  Jackson Harper  <jackson@ximian.com>
25300
25301         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
25302
25303 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
25304
25305         * CategoryGridEntry.cs: Added
25306         * GridItem.cs: Added helper properties
25307         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
25308         * GridEntry.cs: Updated code for collection
25309         * PropertyGrid.cs: Cleaned up some formatting
25310         * PropertyGridView.cs: Added drop down functionality for enums.
25311         * GridItemCollection.cs: Added enumerator logic
25312         * PropertyGridEntry.cs: Added
25313
25314 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25315
25316         * FileDialog.cs:
25317           - Removed unnecessary commented code
25318           - Fixed handling for entering the filename manually in the combobox
25319
25320 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
25321
25322         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
25323
25324 2005-03-18  Peter Bartok  <pbartok@novell.com>
25325
25326         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
25327           them being touching the border
25328
25329 2005-03-18  Peter Bartok  <pbartok@novell.com>
25330
25331         * TextControl.cs: Quick hack to center text better
25332
25333 2005-03-18  Peter Bartok  <pbartok@novell.com>
25334
25335         * ControlPaint.cs:
25336           - Don't throw NotImplemented exceptions, just print a notice once
25337             instead (requested by Miguel). This makes running existing SWF
25338             apps a bit easier
25339         * Control.cs:
25340           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
25341           - Added context menu trigger on right click
25342         * Panel.cs: Trigger invalidate on resize
25343         * StatusBar.cs:
25344           - Removed old double-buffer drawing
25345           - Added ResizeRedraw style to force proper update of statusbar
25346         * ListView.cs:
25347           - Removed debug output
25348         * ThemeWin32Classic.cs:
25349           - Fixed drawing of status bar, now draws Text property if there
25350             are no defined panels
25351
25352 2005-03-18  Jackson Harper  <jackson@ximian.com>
25353
25354         * ImageList.cs: When the image stream is set pull all the images
25355         from it.
25356         * ImageListStreamer.cs: Implement reading image list streams.
25357
25358 2005-03-18  Peter Bartok  <pbartok@novell.com>
25359
25360         * ThemeWin32Classic.cs (DrawPictureBox):
25361           - Fixed calculations for centered drawing
25362           - Fixed drawing for normal mode, not scaling the image on normal
25363
25364 2005-03-18  Peter Bartok  <pbartok@novell.com>
25365
25366         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
25367           textbox
25368         * FileDialog.cs:
25369           - Made Open/Save button the accept button for FileDialog
25370           - Tied the cancel button to the IButtonControl cancel button
25371           - Save/Open now properly builds the pathname
25372           - Now handles user-entered text
25373           - Preventing crash on right-click if no item is selected
25374           - Fixed Text property, now uses contents of textbox
25375           - Fixed SelectedText property, now just returns the text part that
25376             is selected in the text box
25377
25378 2005-03-18  Jackson Harper  <jackson@ximian.com>
25379
25380         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
25381         rect, make sure to de-adjust the interior rect after drawing the
25382         tab text.
25383
25384 2005-03-18  Peter Bartok  <pbartok@novell.com>
25385
25386         * MenuAPI.cs: Remove menu *before* executing selected action to
25387           prevent the menu from 'hanging around'
25388           
25389 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
25390
25391         * XplatUIOSX.cs: Implemented WorkingArea property
25392
25393 2005-03-17  Peter Bartok  <pbartok@novell.com>
25394
25395         * XplatUIX11.cs: Fixed menu coord calculations
25396         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
25397           for calculating offsets
25398
25399 2005-03-17  Peter Bartok  <pbartok@novell.com>
25400
25401         * Hwnd.cs: Do not consider menu presence for default client
25402           rectangle location/size
25403         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
25404           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
25405           translation functions
25406         * FileDialog.cs: Fixed (what I presume is a) typo
25407
25408 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
25409
25410         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
25411           X access (avoids X-Async errors)
25412
25413 2005-03-16  Jackson Harper  <jackson@ximian.com>
25414
25415         * TabControl.cs: Raise the SelectedIndexChanged event.
25416
25417 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
25418
25419         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
25420           - Removed vertical ToolBar and replaced it with a custom panel
25421             (desktop and home button already work)
25422           - Added Help button (some controls get resized or relocated then)
25423           - Draw correct text depending on Open or Save.
25424           - Fixed some typos...
25425
25426 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
25427
25428         * ScrollBar.cs:
25429           - Only change Maximum and Minimum when need it (bug fix)
25430
25431 2005-03-15  Peter Bartok  <pbartok@novell.com>
25432
25433         * Form.cs: Use Handle for icon, to trigger creation if
25434           the window does not yet exist
25435         * Control.cs:
25436           - CanSelect: Slight performance improvement
25437           - Focus(): Preventing possible recursion
25438           - Invalidate(): Removed ControlStyle based clear flag setting
25439           - WM_PAINT: fixed logic for calling OnPaintBackground
25440           - WM_ERASEBKGND: Fixed logic, added call to new driver method
25441             EraseWindowBackground if the control doesn't paint background
25442         * XplatUIWin32.cs:
25443           - Moved EraseWindowBackground() method to internal methods
25444           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
25445             is sent via SendMessage on BeginPaint call on Win32
25446         * XplatUIX11.cs:
25447           - Added EraseWindowBackground() method
25448           - No longer sends WM_ERASEBKGND on .Expose, but on call to
25449             PaintEventStart, which more closely matches Win32 behaviour
25450           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
25451           - Fixed SetFocus() to properly deal with client and whole windows
25452         * Hwnd.cs: Added ErasePending property
25453         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
25454         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
25455
25456 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
25457
25458         * XplatUIOSX.cs:
25459           - Fix hard loop when timers exist.
25460           - Fix bugs with middle and right click for 3 button mice.
25461
25462 2005-03-11  Peter Bartok  <pbartok@novell.com>
25463
25464         * XplatUIX11.cs:
25465           - get_WorkingArea: Need to call X directly, GetWindowPos only
25466             returns cached data now
25467           - Added sanity check to GetWindowPos hwnd usage
25468
25469 2005-03-11  Jackson Harper  <jackson@ximian.com>
25470
25471         * BindingManagerBase.cs: This method isn't used anymore as
25472         PullData now updates the data in the control.
25473
25474 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
25475
25476         * Form.cs: fixes menu drawing on X11
25477         * MenuAPI.cs:  fixes menu drawing on X11
25478
25479 2005-03-11  Peter Bartok  <pbartok@novell.com>
25480
25481         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
25482           from Jonathan Gilbert; should fix bug #73606
25483         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
25484           in Screen coordinates. Thanks, Jordi.
25485         * Form.cs: Added missing attribute
25486
25487 2005-03-11  Peter Bartok  <pbartok@novell.com>
25488
25489         * Form.cs:
25490           - Rudimentary Mdi support
25491           - Removed outdated FormParent code
25492           - Implemented lots of missing properties and methods, still missing
25493             transparency support
25494           - Added missing attributes
25495           - Implemented support for MaximumBounds
25496           - Added firing of various events
25497         * XplatUI.cs: Added SetIcon() method
25498         * XplatUIDriver.cs: Added SetIcon() abstract
25499         * XplatUIOSX.cs: Stubbed out SetIcon() method
25500         * XplatUIX11.cs:
25501           - Implemented SetIcon() support
25502           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
25503           - Switched to unix line endings
25504         * XplatUIWin32.cs:
25505           - Made POINT internal so for can access it as part of MINMAX
25506           - Implemented SetIcon() support
25507           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
25508             native Mdi support again, might have to go managed)
25509         * Control.cs: Now fires the StyleChanged event
25510         * MdiClient.cs: Added; still mostly empty
25511
25512 2005-03-10  Peter Bartok  <pbartok@novell.com>
25513
25514         * SaveFileDialog.cs: Added emtpy file
25515
25516 2005-03-08  Peter Bartok  <pbartok@novell.com>
25517
25518         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
25519           in turn triggers OnCreateContro) when creating a handle for the
25520           first time.
25521         * TextControl.cs: Fixed endless loop in certain cases when
25522           replacing the current selection
25523
25524 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
25525
25526         * ScrollBar.cs:
25527           - Honors NewValue changes in Scroll events allowing apps to change it
25528           - Adds First and Last Scroll events
25529           - Fixes Thumb events
25530
25531 2005-03-07  Peter Bartok  <pbartok@novell.com>
25532
25533         * Hwnd.cs: Added DefaultClientRectangle property
25534         * XplatUI.cs: Now using the X11 driver Where() method, which provides
25535           more detailed debug information
25536         * XplatUIX11.cs:
25537           - Fixed size-change feedback loop, where we would pull an old size
25538             off the queue and mistakenly change our window's size to an
25539             earlier value
25540           - Now compressing ConfigureNotify events, to reduce looping and
25541             redraw issues
25542         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
25543           is called
25544
25545 2005-03-07  Jackson Harper  <jackson@ximian.com>
25546
25547         * Binding.cs: Push data pushes from data -> property. Check if the
25548         property is readonly when attempting to set it.
25549
25550 2005-03-07  Jackson Harper  <jackson@ximian.com>
25551
25552         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
25553         instead of IsSubclassOf. Pulling data now sets the value on the
25554         control.
25555         * PropertyManager.cs:
25556         * CurrencyManager.cs: Just need to pull data when updating now,
25557         because PullData will set the value on the control.
25558
25559 2005-03-04  Jackson Harper  <jackson@ximian.com>
25560
25561         * Binding.cs: Implement data type parsing and converting on pulled
25562         data. TODO: Are there more ways the data can be converted?
25563
25564 2005-03-04  Jackson Harper  <jackson@ximian.com>
25565
25566         * Binding.cs: Support <Property>IsNull checks. Also bind to the
25567         controls Validating method so we can repull the data when the
25568         control loses focus.
25569
25570 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
25571
25572         * ColumnHeader.cs:
25573           - Fixes null string format
25574           
25575         * ListView.cs:
25576           - Adds enum type checks
25577           - Fixes redrawing and recalc need after changing some properties
25578           - Fixes on focus_item set after the event
25579           - Fixes adding columns after the control has been created
25580           
25581         * ThemeWin32Classic.cs:
25582           - Fixes CheckBox focus rectangle
25583           - Fixes ColumnHeader drawing
25584
25585
25586 2005-03-03  Jackson Harper  <jackson@ximian.com>
25587
25588         * Binding.cs: Bind to <Property>Changed events so we can detect
25589         when properties are changed and update the data.
25590
25591 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
25592
25593         * ImageList.cs:
25594           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
25595           - Fixes ImageList constructor with ImageList container
25596           - Fixes image scaling (wrong parameters at DrawImage)
25597
25598 2005-02-02  Jackson Harper  <jackson@ximian.com>
25599
25600         * Binding.cs: Make property searches case-insensitive. Eliminate
25601         some duplicated code.
25602
25603 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
25604
25605         * ComboBox.cs:
25606                 - Handle focus event
25607                 - Fix scrollbar events
25608                 - Discard highlighted item if remove it
25609                 - Fixes SelectedItem with strings
25610
25611 2005-03-01  Peter Bartok  <pbartok@novell.com>
25612
25613         * Control.cs:
25614           - Fixed Visible property, now follows (once again) parent chain
25615             to return false if any control in the chain is visible=false
25616           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
25617           - Fixed several places where is_visible instead of Visible was used
25618           - Implemented FIXME related to focus selection when setting focused
25619             control to be invisible
25620
25621         * XplatUIWin32.cs: Now using proper method to find out if window is
25622           visible. Thanks to Jordi for pointing it out
25623
25624 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
25625
25626         * ComboBox.cs: show/hide scrollbar instead of creating it
25627
25628 2005-02-27  Jackson Harper  <jackson@ximian.com>
25629
25630         * CurrencyManager.cs: Add PositionChanged stuff.
25631
25632 2005-02-27  Peter Bartok  <pbartok@novell.com>
25633
25634         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
25635         * XplatUIOSX.cs: Added GetMenuOrigin() stub
25636         * XplatUIWin32.cs: Implemented GetMenuOrigin()
25637         * XplatUIX11.cs:
25638           - Implemented GetMenuDC()
25639           - Implemented GetMenuOrigin()
25640           - Implemented ReleaseMenuDC()
25641           - Implemented generation of WM_NCPAINT message
25642           - Implemented generation and handling of WM_NCCALCSIZE message
25643         * Form.cs: Added debug helper message for Jordi's menu work
25644         * Hwnd.cs:
25645           - Modified ClientRect property; added setter, fixed getter to handle
25646             setting of ClientRect
25647           - Added MenuOrigin property
25648
25649 2005-02-26  Peter Bartok  <pbartok@novell.com>
25650
25651         * XplatUIX11.cs:
25652           - Destroys the caret if a window that's being destroyed contains it
25653           - Ignores expose events coming from the X11 queue for windows that
25654             already are destroyed
25655           - Now uses the proper variable for handling DestroyNotify, before we
25656             marked the wrong window as destroyed
25657           - Improved/added some debug output
25658
25659 2005-02-26  Peter Bartok  <pbartok@novell.com>
25660
25661         * X11Keyboard.cs: Fixes to work on 64bit systems
25662
25663 2005-02-26  Peter Bartok  <pbartok@novell.com>
25664
25665         * Control.cs:
25666           - Now calling OnHandleDestroyed from DestroyHandle()
25667             instead of Dispose()
25668           - Removed bogus call to controls.Remove() from DestroyHandle()
25669
25670 2005-02-26  Peter Bartok  <pbartok@novell.com>
25671
25672         * Control.cs: Properly destroy child windows when our handle is
25673           destroyed
25674
25675 2005-02-25  Peter Bartok  <pbartok@novell.com>
25676
25677         * XplatUI.cs:
25678           - Added 'DriverDebug' define to allow tracing XplatUI API calls
25679           - Alphabetized Static Methods and Subclasses
25680
25681         * XplatUIX11.cs:
25682           - Added XException class to allow custom handling of X11 exceptions
25683           - Created custom X11 error handler, tied into XException class
25684           - Added support for MONO_XEXCEPTIONS env var to allow the user
25685             to either throw an exception on X errors or continue running
25686             after displaying the error
25687           - Added handling of DestroyNotify message
25688           - Added handler for CreateNotify message (still disabled)
25689           - Improved (tried to at least) Where method to provide file and lineno
25690         * X11Structs.cs:
25691           - Added XErrorHandler delegate
25692           - Added XRequest enumeration (to suppor translation of errors)
25693
25694 2005-02-25  Jackson Harper  <jackson@ximian.com>
25695
25696         * PropertyManager.cs: Implement editing features
25697         * CurrencyManager.cs:
25698         * Binding.cs: First attempt at UpdateIsBinding
25699         * BindingManagerBase.cs: Call UpdateIsBinding before
25700         pushing/pulling data.
25701
25702 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
25703
25704         * MenuAPI.cs: Respect disabled items
25705         * ThemeWin32Classic.cs
25706                 - Caches ImageAttributes creation for DrawImageDisabled
25707                 - Fixes vertical menu line drawing
25708                 - Draws disabled arrows in disable menu items
25709
25710 2005-02-24  Peter Bartok  <pbartok@novell.com>
25711
25712         * Hwnd.cs:
25713           - Added UserData property to allow associating arbitrary objects
25714             with the handle
25715           - Fixed leak; now removing Hwnd references from static windows array
25716         * XplatUIWin32.cs:
25717           - Fixed Graphics leak in PaintEventEnd
25718           - Removed usage of HandleData, switched over to Hwnd class
25719         * HandleData.cs: Removed, obsoleted by Hwnd.cs
25720
25721 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25722
25723         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
25724         * ScrollBar.cs: Fixes bug
25725         * TrackBar.cs: removes death code, clipping, mimize refreshes,
25726          keyboard navigation enhancements
25727
25728 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
25729
25730         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
25731         * GroupBox.cs: Add control styles
25732         * Label.cs: Add control styles
25733         * UpDownBase.cs: Add control styles
25734         * ListBox.cs: Add control styles
25735         * XplatUIWin32.cs: Fixes wrong parameter order
25736
25737
25738 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
25739
25740         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
25741
25742 2005-02-23  Jackson Harper  <jackson@ximian.com>
25743
25744         * PropertyManager.cs: Implement property binding. This doesn't
25745         seem to work yet though as (I think) there are some bugs in
25746         System.ComponentModel.PropertyDescriptor.
25747         * BindingContext.cs: Use new PropertyManager constructor.
25748
25749 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
25750
25751         * ProgressBar.cs: use clip region in ProgressBar
25752         * ThemeWin32Classic.cs: use clip region in ProgressBar
25753
25754 2004-02-22  Jackson Harper  <jackson@ximian.com>
25755
25756         * BindingsCollection.cs: Remove some debug code.
25757
25758 2005-02-22  Jackson Harper  <jackson@ximian.com>
25759
25760         * BindingContext.cs:
25761         * ControlBindingsCollection.cs:
25762         * CurrencyManager.cs:
25763         * Binding.cs:
25764         * BindingManagerBase.cs: Initial implementation
25765         * BindingsCollection.cs: Add an internal contains method that the
25766         BindingManagerBase uses to ensure bindings aren't added twice to
25767         the collection.
25768         * PropertyManager.cs: Stubbed out.
25769         * Control.cs:
25770         * ContainerControl.cs: Hook up databinding
25771         
25772 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
25773
25774         * XplatUIOSX.cs:
25775           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
25776           Fixed Invalidate/Update chain.
25777           Fixed tons of other minor bugs (this is almost a complete rewrite).
25778
25779 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
25780
25781         * ComboBox.cs: do subcontrol creation when the control is created
25782
25783 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25784
25785         * Label.cs: fixes image drawing (image and imagelist)
25786         * ThemeWin32Classic.cs: cache brushes
25787         
25788 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25789
25790         * Form.cs: Move menu drawing code to Theme class
25791         * ComboBox.cs: Move ComboBox drawing code to Theme class
25792         * MenuItem.cs: Move menu drawing code to Theme class
25793         * MenuAPI.cs: Move menu drawing code to Theme class
25794         * ThemeWin32Classic.cs: New methods
25795         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
25796         * ListBox.cs: Move Listbox drawing code to Theme class
25797         * Theme.cs: New methods
25798
25799 2005-02-20  Peter Bartok  <pbartok@novell.com>
25800
25801         * Control.cs:
25802           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
25803             only process mnemonics on those)
25804           - Fixed event sequence for key handling; first calling
25805             ProcessKeyEventArgs now
25806         * TextBoxBase.cs:
25807           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
25808             for processing non-character keys
25809           - Fixed WM_CHAR to generate proper event sequence before processing
25810         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
25811           generation
25812
25813 2005-02-19  Peter Bartok  <pbartok@novell.com>
25814
25815         * UserControl.cs: Added TextChanged event; added attributes
25816         * SizeGrip.cs: Implemented resizing and optional display of grip
25817         * Form.cs: Fixed attribute
25818         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
25819           Changed meaning of ScrollWindow bool argument; instead of the
25820           clear attribute (which will be true usually anyway), it gives the
25821           option of moving child controls as well.
25822         * XplatUIX11.cs:
25823           - Changed to match new ScrollWindow argument
25824           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
25825             now handles the implicit parent window a WM puts around us
25826         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
25827           to work)
25828         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
25829         * TreeView.cs: Adjusted to new ScrollWindow arguments
25830
25831 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
25832
25833         * Form.cs: Menu integration with non-client area
25834         * MenuItem.cs: Menu integration with non-client area
25835         * MenuAPI.cs: Menu integration with non-client area
25836
25837 2005-02-18  Peter Bartok  <pbartok@novell.com>
25838
25839         * MethodInvoker.cs: Added
25840         * MdiLayout.cs: Added
25841         * SendKeys.cs: Started implementation
25842         * ErrorIconAlignment.cs: Added
25843
25844 2005-02-18  Peter Bartok  <pbartok@novell.com>
25845
25846         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
25847         * Form.cs: Added handling for Menu-related Non-client messages
25848
25849 2005-02-17  Peter Bartok  <pbartok@novell.com>
25850
25851         * UpDownBase.cs: Fixed typo, compilation errors
25852         * DomainUpDown.cs: Fixed attribute value
25853
25854 2005-02-16  Miguel de Icaza  <miguel@novell.com>
25855
25856         * UpDownBase.cs: Attach entry events.
25857         Propagate events.
25858         Add ForeColor property, Focused, InterceptArrowKeys (interception
25859         does not work yet).
25860
25861 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
25862
25863         * Form.cs:
25864                 - Redraw non client are on Setmenu
25865                 - Calc proper menu starting point
25866
25867 2005-02-17  Peter Bartok  <pbartok@novell.com>
25868
25869         * Application.cs: Fixed message_filter check
25870
25871 2005-02-17  Peter Bartok  <pbartok@novell.com>
25872
25873         * Application.cs: Now calls registered message filters
25874         * DockStyle.cs: Fixed attribute
25875         * Form.cs: Fixed attribute
25876         * Menu.cs: Fixed attribute
25877         * ToolTip.cs: Fixed attribute
25878         * TreeNode.cs: Added missing attributes and arranged in regions
25879         * PropertyGrid.cs: Fixed signatures
25880         * TreeNodeCollection.cs: Added attributes
25881         * Splitter.cs: Added missing attributes; arranged into regions
25882         * TabPage.cs: Added missing attributes; arranged into regions
25883         * TextBoxBase.cs: Added missing attributes
25884         * TextBox.cs: Added missing attributes
25885         * ArrangeDirection.cs: Added missing attributes
25886         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
25887         * ToolBarButton.cs: Fixed attributes
25888         * AnchorStyles.cs: Fixed attribute
25889         * TrackBar.cs: Fixed attributes
25890         * TabControl.cs: Added missing attributes and arranged into regions
25891         * ToolBar.cs: Fixed attribute
25892         * StatusBar.cs: Fixed signature, organized into regions and added
25893           attributes
25894         * StatusBarPanel.cs: Fixed attributes
25895         * ContentsResizedEventArgs.cs: Implemented
25896         * ContentsResizedEventHandler.cs: Implemented
25897         * DateBoldEventArgs.cs: Implemented
25898         * DateBoldEventHandler.cs: Implemented
25899         * UpDownEventArgs.cs: Implemented
25900         * UpDownEventHandler.cs: Implemented
25901         
25902 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
25903
25904         * Form.cs: first Menu NC refactoring
25905         * MenuAPI.cs: first Menu NC refactoring
25906         
25907 2005-02-16  Peter Bartok  <pbartok@novell.com>
25908
25909         * ImeMode.cs: Added missing attributes
25910         * Menu.cs: Fixed attribute
25911         * GroupBox.cs: Fixed attribute
25912         * Label.cs: Fixed attribute
25913         * ColorDialog.cs (RunDialog): Removed TODO attribute
25914         * ComboBox.cs: Fixed attributes
25915         * ListControl.cs: Added missing attributes
25916         * PropertyGrid.cs: Fixed attributes
25917         * Control.cs: Fixed attributes
25918         * ListViewItem.cs: Added TypeConverter attribute
25919         * NotifyIcon.cs: Fixed attributes
25920         * ListView.cs: Fixed attributes
25921         * ButtonBase.cs: Fixed attribute
25922         * ImageList.cs: Added missing attributes
25923         * ContainerControl.cs: Fixed signature
25924         * CheckedListBox.cs: Fixed attribute; added missing attributes
25925         * Panel.cs: Fixed attributes
25926         * PropertyTabChangedEventArgs.cs: Added missing attribute
25927         * PropertyValueChangedEventArgs.cs: Added missing attribute
25928         * Binding.cs: Fixed attribute
25929         * ListViewItemConverter: Implemented ListViewSubItemConverter class
25930         * ListBox.cs: Fixed attribute; added missing attributes;
25931         * ScrollableControl.cs: Added missing attributes
25932         * PictureBox.cs: Added missing attributes; implemented missing property
25933         * DateTimePicker.cs: Added missing attributes
25934         * Theme.cs (ToolWindowCaptionHeight): Fixed type
25935         * MonthCalendar.cs: Fixed attributes
25936         * StatusBarPanel.cs: Added missing attributes
25937         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
25938
25939 2005-02-16  Peter Bartok  <pbartok@novell.com>
25940
25941         * TextBoxBase.cs: The previous method to enforce height yet remember
25942           the requested high was less than ideal, this is an attempt to do
25943           it better.
25944         * Control.cs: Added comment about possible problem
25945         * Copyright: Updated format
25946         * GridItemType.cs: Fixed swapped values
25947
25948 2005-02-15  Jackson Harper  <jackson@ximian.com>
25949
25950         * BaseCollection.cs: Use property so we never access an
25951         uninitialized list. Also initialize the list in the property.
25952
25953 2005-02-15  Peter Bartok  <pbartok@novell.com>
25954
25955         * GroupBox.cs (ProcessMnemonic): Implemented
25956         * Label.cs (ProcessMnemonic): Implemented
25957         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
25958           hotkeys
25959
25960 2005-02-15  Peter Bartok  <pbartok@novell.com>
25961
25962         * RadioButton.cs (ProcessMnemonic): Implemented
25963         * CheckBox.cs (ProcessMnemonic): Implemented
25964         * Control.cs:
25965           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
25966             handling
25967           - Added internal method to allow calling ProcessMnemonic from other
25968             controls
25969         * ContainerControl.cs:
25970           - Started support for handling validation chain handling
25971           - Implemented ProcessMnemonic support
25972           - Added Select() call to Active, to make sure the active control
25973             receives focus
25974         * Form.cs: Setting toplevel flag for Forms (this was lost in the
25975           FormParent rewrite)
25976         * ThemeWin32Classic.cs:
25977           - DrawCheckBox(): Fixed stringformat to show hotkeys
25978           - DrawRadioButton(): Fixed stringformat to show hotkeys
25979         * CommonDialog.cs: Removed WndProc override, not needed
25980
25981 2005-02-14  Peter Bartok  <pbartok@novell.com>
25982
25983         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
25984           missed those in the rewrite
25985
25986 2005-02-14  Miguel de Icaza  <miguel@novell.com>
25987
25988         * NumericUpDown.cs (Increment, ToString): Add.
25989         (DecimalPlaces): implement.
25990         
25991         Add attributes.
25992         
25993         * UpDownBase.cs: Add the designer attributes.
25994
25995 2005-02-13  Peter Bartok  <pbartok@novell.com>
25996
25997         * Panel.cs: Removed border_style, now in Control
25998         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
25999           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
26000
26001 2005-02-13  Peter Bartok  <pbartok@novell.com>
26002
26003         * MouseButtons.cs: Added missing attributes
26004         * XplatUIStructs.cs: Added enumeration for title styles
26005         * LeftRightAlignment.cs: Added missing attributes
26006         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
26007           it compatible with Graphics.FromHwnd()
26008         * SelectedGridItemChangedEventArgs.cs: Fixed property type
26009         * Keys.cs: Added missing attributes
26010         * SelectionRange.cs: Added missing attributes
26011         * SelectionRangeConverter.cs: Added
26012         * XplatUI.cs:
26013           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
26014             ReleaseMenuDC methods
26015           - Renamed ReleaseWindow to UngrabWindow
26016           - Added proper startup notice to allow version identification
26017         * Form.cs:
26018           - Added missing attributes
26019           - Removed FormParent concept
26020         * Label.cs: Removed border_style field, now in Control
26021         * RadioButton.cs: Now properly selects RadioButton when focus is
26022           received
26023         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
26024         * Control.cs:
26025           - Added missing attributes
26026           - Added borderstyle handling
26027           - Removed FormParent concept support
26028           - Fixed calls to XplatUI to match changed APIs
26029           - Fixed bug that would case us to use disposed Graphics objects
26030           - Removed unneeded internal methods
26031           - PerformLayout(): Fixed to handle DockStyle.Fill properly
26032           - SelectNextControl(): Fixed to properly check common parents
26033         * TextBoxBase.cs: Removed border_style field (now in Control)
26034         * MessageBox.cs:
26035           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
26036             fixed calculations for form size
26037           - Added support for localized strings and icons
26038           - Improved form size calculations, added border
26039         * ListView.cs: Removed border_style field (now in Control)
26040         * X11Structs.cs: Moved several structs from X11 driver here
26041         * X11Keyboard.cs: Changed debug message
26042         * Application.cs: Removed FormParent concept support
26043         * CommonDialog.cs:
26044           - Resetting end_modal flag
26045           - Removed FormParent concept support
26046         * NativeWindow.cs: Removed FormParent concept support
26047         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
26048           Client area and Non-Client whole window to allow support for WM_NC
26049           messages
26050         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
26051           prevent using it until it supports Hwnd as per Geoff Norton's request
26052         * ToolBar.cs: Fixed drawing, was not doing proper drawing
26053         * PictureBox.cs: Removed border_style field, now in Control
26054         * XplatUIWin32.cs: Added new driver methods
26055
26056 2005-02-12  Peter Bartok  <pbartok@novell.com>
26057
26058         * OpacityConverter.cs: Implemented
26059         * Hwnd.cs: Internal class to support drivers that need to emulate
26060           client area/non-client area window behaviour
26061
26062 2005-02-11  Peter Bartok  <pbartok@novell.com>
26063
26064         * KeysConverter.cs: Implemented
26065
26066 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
26067
26068         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
26069         * LinkLabel: Added missing attributes
26070         * MainMenu.cs: fixes ToString
26071         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
26072         * ListBox.cs: fixes event position
26073         * TrackBar.cs: adds missing attributes and events
26074         
26075 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
26076
26077         * MenuItem.cs: Use SystemInformation and bug fixes
26078         * MenuAPI.cs: Use SystemInformation and bug fixes
26079
26080 2005-02-09  Jackson Harper  <jackson@ximian.com>
26081
26082         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
26083         their keystate otherwise things like VK_MENU get stuck "on".
26084
26085 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
26086
26087         * ListBox.cs: Fixes AddRange bug
26088         
26089 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
26090
26091         * ProgressBar.cs
26092                 - Add missing attributes
26093                 - Add missing method
26094                 
26095         * CheckedListBox.cs: Added missing attributes
26096                 - Add missing attributes
26097                 - Remove extra method
26098         
26099         * ComboBox.cs: Added missing attributes
26100         * VScrollBar.cs: Added missing attributes
26101         * ScrollBar.cs:  Added missing attributes
26102         * ListBox.cs: Fixes signature, add missing consts
26103         * LinkArea.cs:   Added missing attributes
26104         
26105
26106 2005-02-08  Peter Bartok  <pbartok@novell.com>
26107
26108         * Menu.cs: Added missing attributes
26109         * MainMenu.cs: Added missing attributes
26110         * GroupBox.cs: Added missing attributes
26111         * Label.cs: Added missing attributes
26112         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
26113         * ColorDialog.cs:
26114           - Added Instance and Options properties
26115           - Added missing attributes
26116         * Cursor.cs: Made Serializable
26117         * NotifyIcon: Added missing attributes
26118         * MenuItem.cs: Added missing attributes
26119         * TextBoxBase.cs: Implemented AppendText() and Select() methods
26120         * Panel.cs: Added Missing attributes
26121         * MonthCalendar.cs: Fixed CreateParams
26122
26123 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26124         
26125         * LinkLabel.cs:
26126                 - Fixes signature
26127                 - Fixes issues with links
26128                 - Adds the class attributes
26129
26130 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
26131         
26132         * ComboBox.cs:
26133                 - Fixes button when no items available in dropdown
26134                 - Fixes repainting problems
26135                 - Adds the class attributes
26136                 
26137 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26138
26139         * XplatUIOSX.cs: Detect the menu bar and title bar height from
26140         the current theme.  Cache these on startup.
26141
26142 2005-02-07  Jackson Harper  <jackson@ximian.com>
26143
26144         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
26145         the scrollbar buttons when they are depressed.
26146
26147 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26148
26149         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
26150         Get the display size from the main displayid.  We currently dont
26151         support multiple display configurations.
26152
26153 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
26154
26155         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
26156
26157 2005-02-07  Miguel de Icaza  <miguel@novell.com>
26158
26159         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
26160
26161 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
26162
26163         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
26164
26165 2005-02-04  Jackson Harper  <jackson@ximian.com>
26166
26167         * ThemeWin32Classic.cs: Respect the clipping rect when
26168         drawing. Only fill the intersection of clips and rects so there
26169         isn't a lot of large fills.
26170         * ScrollBar.cs: Pass the correct clipping rect to the theme
26171         engine. Remove some debug code.
26172
26173 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
26174         
26175         * DateTimePicker.cs:
26176                 - Fixed crash on DateTime.Parse, use Constructor instead
26177
26178 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26179         
26180         * MenuItem.cs:
26181         * MenuAPI.cs:
26182                 - Owner draw support (MeasureItem and DrawItem)
26183
26184 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
26185         
26186         *  Menu.cs:
26187                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
26188                 - Fixes MenuItems.Add range
26189         * MenuItem.cs:
26190                 - MergeMenu and Clone and CloneMenu functions
26191
26192 2005-02-03  Jackson Harper  <jackson@ximian.com>
26193
26194         * ScrollBar.cs: Make abstract
26195         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
26196         is abstract.
26197
26198 2005-02-03  Jackson Harper  <jackson@ximian.com>
26199
26200         * ScrollBar.cs: First part of my scrollbar fixups. This removes
26201         all the unneeded refreshes and uses invalidates with properly
26202         computed rects.
26203
26204 2005-02-03  Peter Bartok  <pbartok@novell.com>
26205
26206         * ComponentModel.cs: Added
26207         * IDataGridEditingService.cs: Added
26208         * Timer.cs: Added missing attributes
26209         * ToolTip.cs: Added missing attributes
26210
26211 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
26212
26213         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
26214
26215 2005-02-03  Peter Bartok  <pbartok@novell.com>
26216
26217         * ListBox.cs: Added missing attributes
26218
26219 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
26220         
26221         * ListBox.cs:
26222                 - Fixes font height after font change
26223                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
26224                 
26225 2005-02-02  Peter Bartok  <pbartok@novell.com>
26226
26227         * HandleData.cs: Introduced static methods to allow class
26228           to be more self-contained and track it's own HandleData objects
26229         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
26230           HandleData to use new static methods
26231
26232 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
26233
26234         * Combobox.cs:
26235                 - Fixes default size and PreferredHeight
26236                 - Missing events
26237                 - ObjectCollection.Insert implementation
26238                 
26239         * ListControl.cs
26240                 - Fixes signature
26241         * ListBox.cs:
26242                 - Several fixes
26243                 - ObjectCollection.Insert implementation
26244                 - No selection after clean
26245                 - Small fixes
26246
26247 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26248
26249         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
26250
26251 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
26252
26253         * Combobox.cs:
26254                 - Caches ItemHeight calculation for OwnerDrawVariable
26255                 - Handles dropdown properly
26256                 - Fixes several minor bugs
26257
26258 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26259
26260         * ListBox.cs:
26261                 - Fixes 71946 and 71950
26262                 - Fixes changing Multicolumn on the fly
26263                 - Fixes keyboard navigation on Multicolumn listboxes
26264
26265 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26266         
26267         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
26268         crash reporter log.
26269
26270 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26271
26272         * XplatUIOSX.cs: Allow applications to actually exit.
26273
26274 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
26275
26276         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
26277         their parent at creation time rather than lazily later.  Fixes a major
26278         regression we were experiencing.
26279
26280 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
26281
26282         * ThemeWin32Classic.cs: more date time picker painting fixes
26283         * DateTimePicker.cs: more monthcalendar drop down fixes
26284         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
26285
26286 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
26287
26288         * ScrollBar.cs:
26289                 - When moving the thumb going outside the control should stop the moving
26290                 - Adds the firing of missing events
26291                 - Fixes no button show if Size is not specified
26292                 - End / Home keys for keyboard navigation
26293
26294 2005-01-30  Peter Bartok  <pbartok@novell.com>
26295
26296         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
26297           sanity check to prevent theoretical loop
26298         * XplatUIWin32.cs (SetVisible): Removed debug output
26299         * XplatUIX11.cs (SystrayChange): Added sanity check
26300         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
26301         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
26302           behaviour, valid until the X11 client window rewrite is done
26303         * TextBox.cs (ctor): Setting proper default foreground and background
26304           colors
26305
26306 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
26307
26308         * Theme: Added DrawDateTimePicker to interface
26309         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
26310         * DateTimePicker.cs: Created (still needs keys and painting code)
26311         * DateTimePickerFormat.cs: added
26312         * MonthCalendar.cs: fixed CreateParams for popup window mode
26313           
26314 2005-01-29  Peter Bartok  <pbartok@novell.com>
26315
26316         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
26317           this should also the calculations for ligher/darker
26318         * Theme.cs: Fixed defaults for ScrollBar widths/heights
26319
26320 2005-01-29  Peter Bartok  <pbartok@novell.com>
26321
26322         * ArrangeDirection.cs: Added
26323         * ArrangeStartingPositon.cs: Added
26324         * SystemInformation.cs: Implemented
26325         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26326           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
26327           used by SystemInformation class
26328         * X11Strucs.cs: Added XSizeHints structure
26329         * MenuAPI.cs:
26330           - Fixed CreateParams to make sure the menu window is always visible
26331           - TrackPopupMenu: Added check to make sure we don't draw the
26332             menu offscreen
26333
26334 2005-01-29  Peter Bartok  <pbartok@novell.com>
26335
26336         * HandleData.cs: Added method for altering invalid area
26337         * TextBoxBase.cs: Implemented TextLength
26338
26339 2005-01-28  Peter Bartok  <pbartok@novell.com>
26340
26341         * XplatUIX11.cs: Improvement over last patch, not sending
26342           the WM_PAINT directly anymore, instead we scroll any pending
26343           exposed areas and let the system pick out the WM_PAINT later
26344
26345 2005-01-28  Peter Bartok  <pbartok@novell.com>
26346
26347         * SWF.csproj: Deleted, no longer used. Instead,
26348           Managed.Windows.Forms/SWF.csproj should be used
26349         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
26350           directly, to avoid a potential race condition with the next
26351           scroll
26352
26353 2005-01-28  Peter Bartok  <pbartok@novell.com>
26354
26355         * XplatUI.cs: Made class internal
26356
26357 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
26358
26359         * CheckedListBox.cs:
26360                 - Draw focus
26361                 - Fixed Drawing
26362                 - Missing methods and events
26363
26364 2005-01-27  Peter Bartok  <pbartok@novell.com>
26365
26366         * Application.cs (Run): Don't use form if we don't have one
26367
26368 2005-01-27  Peter Bartok  <pbartok@novell.com>
26369
26370         * TextBoxBase.cs (get_Lines): Fixed index off by one error
26371
26372 2005-01-27  Peter Bartok  <pbartok@novell.com>
26373
26374         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
26375         * GridItem.cs: Added; Patch by Jonathan S. Chambers
26376         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
26377         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
26378         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
26379         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
26380         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26381         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26382         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26383         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26384         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
26385         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
26386
26387 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26388
26389         * Combobox.cs:
26390                 - Draw focus on Simple Combobox
26391                 - Fixes drawing issues
26392                 - fixes 71834
26393
26394 2005-01-27  Peter Bartok  <pbartok@novell.com>
26395
26396         * Form.cs:
26397           - Place window in default location, instead of hardcoded 0/0
26398           - Send initial LocationChanged event
26399         * Control.cs:
26400           - UpdateBounds after creation to find out where the WM placed us
26401           - Make sure that if the ParentForm changes location the Form
26402             is notified
26403         * XplatUIX11.cs: XGetGeometry will not return the coords relative
26404             to the root, but to whatever the WM placed around us.
26405             Translate to root coordinates before returning toplevel
26406             coordinates
26407         * XplatUIWin32.cs: Removed debug output
26408         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
26409           flag to GetWindowPos, to allow translation of coordinates on X11
26410
26411 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
26412
26413         * ListBox.cs: connect LostFocus Event
26414
26415 2005-01-27  Peter Bartok  <pbartok@novell.com>
26416
26417         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
26418           XplatUIX11.cs: Extended the Systray API
26419         * Form.cs: Removed debug output
26420         * Application.cs: Fixed focus assignment, always need to call
26421           XplatUI.Activate() since Form.Activate() has rules that may
26422           prevent activation
26423         * NotifyIcon.cs: Should be complete now
26424         * ToolTip.cs: Worked around possible timer bug
26425
26426 2005-01-27  Jackson Harper  <jackson@ximian.com>
26427
26428         * TabControl.cs:
26429         - Only invalidate the effected tabs when the
26430         selected index changes. This reduces drawing and gets rid of some
26431         flicker.
26432         - Only refresh if the tabs need to be shifted, otherwise only
26433         invalidate the slider button.
26434         - On windows the tabs are not filled to right if the slider is
26435         visible.
26436         
26437 2005-01-27  Jackson Harper  <jackson@ximian.com>
26438
26439         * TabControl.cs: Only refresh on mouseup if we are showing the
26440         slider. Also only invalidate the button whose state has changed.
26441
26442 2005-01-26  Peter Bartok  <pbartok@novell.com>
26443
26444         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
26445         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
26446           and SystrayRemove() methods
26447         * XplatUIOSX.cs: Stubbed Systray methods
26448         * XplatUIX11.cs:
26449           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
26450             methods
26451           - Fixed broken XChangeProperty calls (marshalling messed up things)
26452         * X11Structs.cs: Added enums and structs required for Size hinting
26453         * NotifyIcon.cs: Added & implemented
26454
26455 2005-01-26  Jackson Harper  <jackson@ximian.com>
26456
26457         * TabControl.cs: Space vertically layed out tabs properly.
26458
26459 2005-01-26  Peter Bartok  <pbartok@novell.com>
26460
26461         * Form.cs (CreateClientParams): Always set the location to 0,0
26462           since we're a child window.
26463
26464         * Control.cs (SetVisibleCore): Always explicitly setting the location
26465           of a toplevel window, apparently X11 doesn't like to move windows
26466           while they're not mapped.
26467
26468 2005-01-26  Jackson Harper  <jackson@ximian.com>
26469
26470         * TabControl.cs: Implement FillToRight size mode with vertically
26471         rendered tabs.
26472
26473 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26474
26475         * ControlPaint.cs, ThemeWin32Classic.cs
26476                 - Fixes DrawFocusRectangle
26477
26478 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
26479
26480         * MenuAPI.cs:
26481                 - MenuBar tracking only starts when item is first clicked
26482                 - Fixes menu hidding for multiple subitems
26483                 - Unselect item in MenuBar when item Executed
26484                 - Fixes bug 71495
26485
26486 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
26487
26488         * ListControl.cs:
26489                 - IsInputKey for ListBox
26490         * ListBox.cs:
26491                 - Focus item
26492                 - Shift and Control item selection
26493                 - Implement SelectionMode.MultiExtended
26494                 - Fixes RightToLeft
26495         * ComboBox.cs:
26496                 - IsInputKey implemented
26497                 - Do not generate OnTextChangedEdit on internal txt changes
26498                 
26499 2005-01-23  Peter Bartok  <pbartok@novell.com>
26500
26501         * AccessibleObject.cs: Partially implemented Select()
26502         * MonthCalendar.cs: Added missing attributes and events
26503         * Form.cs: Fixed CreateParams behaviour, now controls derived from
26504           form can properly override CreateParams.
26505         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
26506           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
26507           Control performs Invalidate & Update
26508         * NativeWindow (CreateHandle): Added special handling for Form
26509           and Form.FormParent classes to allow overriding of From.CreateParams
26510         * Control.cs:
26511           - ControlNativeWindow: Renamed 'control' variable to more intuitive
26512             name 'owner'
26513           - ControlNativeWindow: Added Owner property
26514           - Removed usage of Refresh() on property changes, changed into
26515             Invalidate(), we need to wait until the queue is processed for
26516             updates, direct calls might cause problems if not all vars for
26517             Paint are initialized
26518           - Added call to UpdateStyles() when creating the window, to set any
26519             styles that CreateWindow might have ignored.
26520           - Added support for Form CreateParent overrides to UpdateStyles()
26521         * MessageBox.cs: Removed no longer needed FormParent override stuff,
26522           CreateParams are now properly overridable
26523         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
26524           CreateParams are now properly overridable
26525
26526 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
26527
26528         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
26529         OnTextBoxChanged.
26530
26531         Capture LostFocus and OnTextBoxChanged.  The later introduces a
26532         recursive invocation that I have not figured out yet.
26533
26534         Reset the timer when not using (it was accumulating).
26535
26536
26537         (OnTextBoxChanged): Set UserEdit to true here to track whether the
26538         user has made changes that require validation.
26539
26540         Reset changing to avoid loops.
26541
26542 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
26543
26544         * NumericUpDown.cs: Display value at startup.
26545
26546         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
26547         ValidateEditText.
26548
26549         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
26550         filled in.  Added some basic parsing of text.
26551
26552         Still missing the OnXXX method overrides, and figuring out the
26553         events that must be emitted.
26554
26555         * UpDownBase.cs: Handle UserEdit on the Text property.
26556         
26557 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
26558
26559         * ComboBox.cs:
26560           - Fixes IntegralHeight
26561           - ToString method
26562
26563 2005-01-21  Jackson Harper  <jackson@ximian.com>
26564
26565         * TabControl.cs: Set the SelectedIndex property when SelectedTab
26566         is set so that the page visibility is updated and the tabs are
26567         sized correctly.
26568
26569 2005-01-21  Jackson Harper  <jackson@ximian.com>
26570
26571         * TabControl.cs: Use cliping rectangle for blitting. Give the
26572         theme the clipping rect so we can do clipping while
26573         drawing. Remove some debug code.
26574
26575 2005-01-21  Jackson Harper  <jackson@ximian.com>
26576
26577         * TabPage.cs: Add a new method so tab pages can force the tab
26578         control to recalculate the tab page sizes.
26579         * TabControl.cs: UpdateOwner needs to make the tab control recalc
26580         sizes.
26581
26582 2005-01-20  Jackson Harper  <jackson@ximian.com>
26583
26584         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
26585
26586 2005-01-20  Jackson Harper  <jackson@ximian.com>
26587
26588         * TreeView.cs: Set the bounds for nodes properly. They were
26589         getting screwed up when checkboxes were not enabled, but images
26590         were.
26591
26592 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
26593
26594         * ListBox.cs:
26595                 - Owner draw support
26596                 - Fixes
26597                 
26598 2005-01-20  Jackson Harper  <jackson@ximian.com>
26599
26600         * XplatUIStructs.cs: More misc keys
26601         * X11Keyboard.cs: Ignore some control keys.
26602
26603 2005-01-20  Jackson Harper  <jackson@ximian.com>
26604
26605         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
26606         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
26607
26608 2005-01-19  Peter Bartok  <pbartok@novell.com>
26609
26610         * Control.cs: Un-selecting the control when it is loosing focus
26611
26612 2005-01-19  Jackson Harper  <jackson@ximian.com>
26613
26614         * TreeView.cs: Hook up to the text controls leave event so we can
26615         end editing when the users clicks outside the text box.
26616         
26617 2005-01-19  Jackson Harper  <jackson@ximian.com>
26618
26619         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
26620         get set in the conversion array.
26621
26622 2005-01-19  Peter Bartok  <pbartok@novell.com>
26623
26624         * Application.cs (ModalRun): Added a call to CreateControl to ensure
26625           focus is properly set
26626         * Button.cs:
26627           - Added missing attributes
26628           - removed styles, those are already set in the base class
26629         * ButtonBase.cs:
26630           - Added missing attributes
26631           - Added clip window styles
26632         * CheckBox.cs: Added missing attributes
26633         * CommonDialog.cs:
26634           - FormParentWindow.CreateParams: Added required clip styles
26635         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
26636           also filters modifier keys
26637         * MessageBox.cs:
26638           - Added assignment of Accept and Cancel button to enable Enter
26639             and Esc keys in MessageBox dialogs
26640           - FormParentWindow.CreateParams: Added required clip styles
26641         * RadioButton.cs: Added missing attributes
26642         * TextControl.cs: No longer draws selection if control does not
26643           have focus
26644         * TextBoxBase.cs:
26645           - Now draws simple rectangle around test area to make it obvious
26646             there's a control. This is a hack until we properly support borders
26647           - A few simple fixes to support selections better, now erases selected
26648             text when typing, and resets selection when using movement keys
26649
26650 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
26651
26652         * UpDownBase.cs: Added some new properties.
26653
26654         * DomainUpDown.cs: Implement a lot to get my test working.
26655
26656 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26657
26658         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
26659
26660 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26661
26662         * OSXStructs (WindowAttributes): Fixed csc complaints
26663
26664 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26665
26666         * XplayUIOSX.cs:
26667           OSXStructs.cs: Initial refactor to move enums and consts into
26668           OSXStructs and use them in the driver for greater readability.
26669
26670 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
26671
26672         * XplatUIOSX.cs: Initial support for Standard Cursors.
26673         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
26674
26675 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
26676
26677         * ComboBox.cs: ability to change style when the ctrl is already
26678         created, missing methods and events, bug fixes, signature fixes
26679
26680 2005-01-19  Peter Bartok  <pbartok@novell.com>
26681
26682         * Cursors.cs (ctor): Added ctor to fix signature
26683
26684 2005-01-18  Peter Bartok  <pbartok@novell.com>
26685
26686         * Button.cs: Implemented DoubleClick event
26687         * ButtonBase.cs:
26688           - Fixed keyboard handling to behave like MS, where the press of
26689             Spacebar is equivalent to a mousedown, and the key release is
26690             equivalent to mouseup. Now a spacebar push will give the same
26691             visual feedback like a mouse click.
26692           - Added missing attributes
26693           - Added ImeModeChanged event
26694           - Added support for generating DoubleClick event for derived classes
26695         * CheckBox.cs:
26696           - Implemented DoubleClick event
26697           - Added missing attributes
26698         * CommonDialog.cs: Added missing attribute
26699         * ContextMenu.cs: Added missing attributes
26700         * RadioButton.cs:
26701           - AutoChecked buttons do not allow to be unselected when clicked
26702             (otherwise we might end up with no selected buttons in a group)
26703           - Added missing attributes
26704           - Implemented DoubleClickEvent
26705         * ThreadExceptionDialog.cs: Enabled TextBox code
26706
26707 2005-01-18  Peter Bartok  <pbartok@novell.com>
26708
26709         * Form.cs: Removed debug output
26710         * Button.cs: Added support for DoubleClick method
26711
26712 2005-01-18  Peter Bartok  <pbartok@novell.com>
26713
26714         * Form.cs:
26715           - Added method to parent window that allows triggering size
26716             calculations when a menu is added/removed
26717           - set_Menu: Cleaned up mess from early days of Form and Control,
26718             now properly triggers a recalc when a menu is added/removed
26719           - Added case to select form itself as focused form if no child
26720             controls exist
26721           - Added PerformLayout call when showing dialog, to ensure properly
26722             placed controls
26723         * Control.cs:
26724           - Select(): Made internal so Form can access it
26725           - Focus(): Only call Xplat layer if required (avoids loop), and sets
26726             status
26727         * Application.cs (Run): Removed hack and calls PerformLayout instead
26728           to trigger calculation when Form becomes visible
26729
26730 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
26731
26732         * ComboBox.cs: fixes for ownerdraw
26733
26734 2005-01-18  Peter Bartok  <pbartok@novell.com>
26735
26736         * TextControl.cs:
26737           - Sentinel is no longer static, each Document gets it's own, this
26738             avoids locking or alternatively overwrite problems when more
26739             than one text control is used simultaneously.
26740           - Switched to use Hilight and HilightText brushes for text selection
26741
26742         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
26743
26744 2005-01-18  Peter Bartok  <pbartok@novell.com>
26745
26746         * Control.cs:
26747           - Hooked up the following events:
26748                 o ControlAdded
26749                 o ControlRemoved
26750                 o HandleDestroyed
26751                 o ImeModeChanged
26752                 o ParentChanged
26753                 o TabStopChanged
26754                 o Invalidated
26755                 o SystemColorsChanged
26756                 o ParentFontChanged
26757                 o Move
26758           - Removed debug output
26759           - Added a call to the current theme's ResetDefaults when a color change
26760             is detected
26761         * Form.cs: Now setting the proper ImeMode
26762         * Theme.cs: Defined a method to force recreation of cached resources
26763           and rereading of system defaults (ResetDefaults())
26764         * ThemeWin32Classic.cs: Added ResetDefaults() stub
26765
26766 2005-01-17  Peter Bartok  <pbartok@novell.com>
26767
26768         * Control.cs: Added missing attributes
26769
26770 2005-01-17  Jackson Harper  <jackson@ximian.com>
26771
26772         * TreeNode.cs: Implement editing. Add missing properties selected
26773         and visible.
26774         * TreeView.cs: Implement node editing. Also some fixes to use
26775         Invalidate (invalid area) instead of Refresh when selecting.
26776
26777 2005-01-17  Peter Bartok  <pbartok@novell.com>
26778
26779         * Control.cs:
26780           - Implemented InvokeGotFocus() method
26781           - Implemented InvokeLostFocus() method
26782           - Implemented InvokePaint() method
26783           - Implemented InvokePaintBackground() method
26784           - Implemented InvokeClick() method
26785           - Implemented FindForm() method
26786           - Implemented RectangleToClient() method
26787           - Implemented ClientToRectangle() method
26788           - Implemented ResetBackColor() method
26789           - Implemented ResetCursor() method
26790           - Implemented ResetFont() method
26791           - Implemented ResteForeColor() method
26792           - Implemented ResetImeMode() method
26793           - Implemented ResetLeftToRight() method
26794           - Implemented ResetText() method
26795           - Implemented Scale() methods
26796           - Implemented ScaleCore() method
26797           - Implemented Update() method
26798           - Removed unused variables
26799           - Stubbed AccessibilityNotifyClients and
26800             ControlAccessibleObject.NotifyClients() methods (dunno what to do
26801             with those yet)
26802           - Now setting proper default for RightToLeft property
26803           - Fixed bug in SetClientSizeCore that would cause windows to get
26804             really big
26805           - Now sending Click/DoubleClick events
26806           - Now selecting controls when left mouse button is clicked on
26807             selectable control
26808         * AccessibleEvents.cs: Added
26809         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
26810         * XplatUIOSX.cs: Stubbed UpdateWindow() method
26811         * XplatUIWin32.cs: Implemented UpdateWindow() method
26812         * XplatUIX11.cs: Implemented UpdateWindow() method
26813         * Form.cs: Removed stray semicolon causing CS0162 warning
26814         * ThemeWin32Classic.cs: Fixed unused variable warnings
26815         * ScrollableControl.cs: Now calls base method for ScaleCore
26816         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
26817           style to avoid interference with internal click handler (which is
26818           different than standard Control click handling)
26819         * RadioButton.cs:
26820           - Now unchecks all sibling radio buttons when control is
26821             selected (Fixes #68756)
26822           - Removed internal tabstop variable, using the one inherited from
26823             Control
26824
26825 2005-01-17  Jackson Harper  <jackson@ximian.com>
26826
26827         * NavigateEventArgs.cs: Fix base type.
26828         * LinkLabel.cs: Sig fix
26829         
26830 2005-01-17  Jackson Harper  <jackson@ximian.com>
26831
26832         * TreeView.cs: Only invalidate the effected nodes bounds when
26833         selecting nodes.
26834
26835 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26836
26837         * XplatUIWin32.cs: fixes Win32 marshaling
26838         * XplatUIX11.cs: fixes method signature
26839
26840 2005-01-17  Peter Bartok  <pbartok@novell.com>
26841
26842         * XplatUIX11.cs: Clean up resources when we no longer need them
26843
26844 2005-01-17  Peter Bartok  <pbartok@novell.com>
26845
26846         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
26847           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
26848           and DestroyCursor() methods.
26849         * Cursor.cs: Partially implemented, now supports standard cursors;
26850           still contains some debug code
26851         * Cursors.cs: Implemented class
26852         * Control.cs:
26853           - WndProc(): Added handling of WM_SETCURSOR message, setting the
26854             appropriate cursor
26855           - Implemented Cursor property
26856           - Replaced break; with return; more straightforwar and possibly
26857             faster
26858           - Now properly setting the result for WM_HELP
26859         * X11Structs.cs: Added CursorFontShape enum
26860         * XplatUIStructs.cs:
26861           - Added StdCursor enum (to support DefineStdCursor() method)
26862           - Added HitTest enum (to support sending WM_SETCURSOR message)
26863         * XplatUIX11.cs:
26864           - Now sends the WM_SETCURSOR message
26865           - Implemented new cursor methods
26866         * XplatUIOSX.cs: Stubbed new cursor methods
26867         * XplatUIWin32.cs:
26868           - Implemented new cursor methods
26869           - Added GetSystemMetrics function and associated enumeration
26870
26871 2005-01-15  Peter Bartok  <pbartok@novell.com>
26872
26873         * Control.cs:
26874           - WndProc(): Now handles EnableNotifyMessage
26875           - SelectNextControl(): Fixed bug where if no child or sibling
26876             controls exist we looped endlessly
26877
26878 2005-01-14  Jackson Harper  <jackson@ximian.com>
26879
26880         * TreeView.cs: Recalculate the tab pages when a new one is added
26881         so that the proper bounding rects are created.
26882
26883 2005-01-14  Jackson Harper  <jackson@ximian.com>
26884
26885         * TreeView.cs: Draw a gray box instead of a grip in the lower
26886         right hand corner when there are both horizontal and vertical
26887         scroll bars.
26888
26889 2005-01-14  Jackson Harper  <jackson@ximian.com>
26890
26891         * Control.cs: When erasing backgrounds use FromHwnd instead of
26892         FromHdc when there is a NULL wparam. This occurs on the X driver.
26893         * XplatUIX11.cs: Set the wparam to NULL.
26894
26895 2005-01-13  Jackson Harper  <jackson@ximian.com>
26896
26897         * PictureBox.cs: Implement missing methods (except ToString, need
26898         to test that on windows) and events. When visibility is changed we
26899         need to redraw the image because the buffers are killed. When size
26900         is changed refresh if the sizemode needs it.
26901
26902 2005-01-13  Peter Bartok  <pbartok@novell.com>
26903
26904         * Control.cs (SelectNextControl): Was using wrong method to select
26905           a control
26906
26907 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26908
26909         * ComboBox.cs: fixes dropstyle
26910
26911 2005-01-13  Peter Bartok  <pbartok@novell.com>
26912
26913         * Form.cs:
26914           - Implemented Select() override
26915           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
26916           - Now sets keyboard focus on startup
26917         * Control.cs (SelectNextControl): Now properly handles directed=true
26918         * TextBoxBase.cs:
26919           - WndProc: Now passes tab key on to base if AcceptTabChar=false
26920           - Added (really bad) focus rectangle (mostly for testing)
26921         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
26922           to enforce redraw on focus changes
26923         * ContainerControl.cs:
26924           - Fixed detection of Shift-Tab key presses
26925           - Fixed traversal with arrow keys
26926         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
26927           gonna keep this or if it's complete yet
26928         
26929 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
26930
26931         * ComboBox.cs: missing properties, fixes
26932
26933 2005-01-13  Peter Bartok  <pbartok@novell.com>
26934
26935         * Panel.cs (ctor): Setting Selectable window style to off
26936         * Splitter.cs (ctor): Setting Selectable window style to off
26937         * GroupBox.cs (ctor): Setting Selectable window style to off
26938         * Label.cs (ctor): Setting Selectable window style to off
26939
26940 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
26941
26942         * UpDownBase.cs (InitTimer): If the timer has been already
26943         created, enable it.
26944
26945         Use a TextBox instead of a Label.
26946
26947 2005-01-12  Jackson Harper  <jackson@ximian.com>
26948
26949         * TreeView.cs: Refresh the tree after sorting the nodes. Always
26950         draw the connecting node lines (when ShowLines is true).
26951         * TreeNode.cs: The nodes index can now be updated. This is used
26952         when a node collection is sorted.
26953         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
26954         insert or an existing unsorted node collection can be sorted.
26955         
26956 2005-01-12  Peter Bartok  <pbartok@novell.com>
26957
26958         * ContainerControl.cs: Implemented ProcessDialogKeys()
26959
26960 2005-01-12  Peter Bartok  <pbartok@novell.com>
26961
26962         * Control.cs:
26963           - Implemented SelectNextControl() method
26964           - Several focus related bug fixes
26965           - Fixed Docking calculations to match MS documentation and
26966             behaviour
26967
26968 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
26969
26970         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
26971         bug fixes
26972
26973 2005-01-12  Peter Bartok  <pbartok@novell.com>
26974
26975         * Control.cs:
26976           - Fixed broken Contains() method
26977           - Implemented GetNextControl() method. Finally. This is the pre-
26978             requisite for focus handling.
26979
26980 2005-01-12  Peter Bartok  <pbartok@novell.com>
26981
26982         * OSXStrucs.cs: Added
26983
26984 2005-01-12  Peter Bartok  <pbartok@novell.com>
26985
26986         * XplatUIWin32.cs:
26987           - Removed PeekMessageFlags
26988           - Implemented SetWindowStyle() method
26989         * XplatUIStructs.cs: Added PeekMessageFlags
26990         * X11Structs: Added missing border_width field to XWindowChanges struct
26991         * XplatUIX11.cs:
26992           - PeekMessage: Now throws exception if flags which are not yet
26993             supported are passed
26994           - Implemented SetWindowStyle() method
26995           - Fixed SetZOrder to handle AfterHwnd properly
26996         * XplatUI.cs: Added SetWindowStyle() method
26997         * XplatUIDriver.cs: Added SetWindowStyle() abstract
26998         * Control.cs:
26999           - Implemented UpdateStyles() method
27000           - Implemented UpdateZOrder() method
27001         * XplatUIOSX.cs: Added SetWindowStyle() stub
27002
27003 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
27004
27005         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
27006         button mouse).
27007
27008
27009 2005-01-11  Jackson Harper  <jackson@ximian.com>
27010
27011         * TreeView.cs: Still need to draw lines to siblings even if out of
27012         the current node is out of the clip.
27013
27014 2005-01-11  Jackson Harper  <jackson@ximian.com>
27015
27016         * TreeView.cs: When setting the hbar/vbar/grip position use
27017         SetBounds so that perform layout is only called once. Also suspend
27018         and resume layout so layout is only done once for all controls.
27019         - Removed some debug fluff
27020         * SizeGrip.cs: Call base implmentation in overriding methods.
27021         - When visibility is changed the drawing buffers are killed so we
27022         need to redraw.
27023
27024 2005-01-11  Jackson Harper  <jackson@ximian.com>
27025
27026         * TreeView.cs: Calculate the open node count while drawing. This
27027         saves us an entire tree traversal for every paint operation. Use
27028         a member var for the open node count so less vars are passed around.
27029
27030 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
27031
27032         * MonthCalendar.cs:
27033         - fixed selection to use mousemove, not mouse polling on timer
27034         * ThemeWin32Classic.cs
27035         - removed redundant unused variable "no_more_content"
27036         
27037 2005-01-11  Peter Bartok  <pbartok@novell.com>
27038
27039         * XplatUIX11.cs (DoEvents): Needs to return when no more events
27040           are pending, so it now calls PeekMessage instead of GetMessage;
27041           implemented a incomplete version of PeekMessage
27042         
27043 2005-01-11  Peter Bartok  <pbartok@novell.com>
27044
27045         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
27046           I18n issues
27047         * TextBoxBase.cs: Added sending of TextChanged event
27048
27049 2005-01-10  Jackson Harper  <jackson@ximian.com>
27050
27051         * TreeView.cs: Try not to draw outside the clipping rectangle on
27052         each node element.
27053
27054 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
27055
27056         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
27057
27058 2005-01-10  Jackson Harper  <jackson@ximian.com>
27059
27060         * TreeView.cs:
27061         - Implement fast scrolling. Now only the newly
27062         exposed nodes are drawn and the old image is moved using the
27063         XplatUI::ScrollWindow method.
27064         - Factor in height of nodes when calculating whether or not the
27065         node is in the clipping rect.
27066
27067 2005-01-10  Jackson Harper  <jackson@ximian.com>
27068
27069         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
27070
27071 2005-01-10  Peter Bartok  <pbartok@novell.com>
27072
27073         * Application.cs: Added temporary hack to resolve all our resize
27074           required issues on startup. This will get fixed properly at
27075           some point in the future
27076
27077 2005-01-10  Jackson Harper  <jackson@ximian.com>
27078
27079         * SizeGrip.cs: New internal class that is used as a sizing
27080         grip control...hence the name.
27081
27082 2005-01-10  Peter Bartok  <pbartok@novell.com>
27083
27084         * Control.cs: Implemented proper TabIndex handling, now assigning
27085           a tabindex when a control is added to a container
27086         * GroupBox.cs (ctor): Now sets the Container style bit, required
27087           for Control.GetNextControl()
27088
27089 2005-01-09  Jackson Harper  <jackson@ximian.com>
27090
27091         * TextBoxBase.cs: Clear window when scrolling (fixes build).
27092
27093 2005-01-09  Peter Bartok <pbartok@novell.com>
27094
27095         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
27096           XplatUIX11.cs: Added ability to control ScrollWindow expose and
27097           an overload for ScrollWindow to allow only scrolling a rectangle
27098
27099 2005-01-09  Peter Bartok <pbartok@novell.com>
27100
27101         * Form.cs:
27102           - Implemented SetDesktopBounds method
27103           - Implemented SetDesktopLocation method
27104
27105 2005-01-08  Jackson Harper  <jackson@ximian.com>
27106
27107         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
27108         the node count has changed, this removes to VScroll::Refresh calls
27109         when drawing.
27110
27111 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
27112
27113         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
27114
27115 2005-01-07  Jackson Harper  <jackson@ximian.com>
27116
27117         * TreeNode.cs: Just update the single node when it is
27118         checked. Don't refresh after toggling, the Expand/Collapse already
27119         handles this.
27120         * TreeView.cs: Respect clipping a little more when drawing. Try
27121         not to redraw things that don't need to be redrawn. Just hide the
27122         scrollbars when they are no longer needed instead of removing
27123         them, so they don't have to be created again and again.
27124         
27125 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
27126
27127         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
27128         coordinates to window space to place the caret properly, FIXED.
27129         Implement GetWindowState & SetWindowState
27130
27131 2005-01-06  Peter Bartok <pbartok@novell.com>
27132
27133         * Form.cs:
27134           - Implemented ClientSize property
27135           - Implemented DesktopBounds property
27136           - Implemented DesktopLocation property
27137           - Implemented IsRestrictedWindow property
27138           - Implemented Size property
27139           - Implemented TopLevel property
27140           - Implemented FormWindowState property
27141         * Control.cs:
27142           - Implemented GetTopLevel() method
27143           - Implemented SetTopLevel() method
27144         * X11Structs.cs (Atom):
27145           - Added AnyPropertyType definition
27146           - Added MapState definiton and updated XWindowAttribute struct
27147         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
27148         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
27149         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
27150         * XplatUIWin32.cs:
27151           - Implemented GetWindowState() and SetWindowState() methods
27152           - Fixed Win32GetWindowLong return type
27153         * XplatUIX11.cs:
27154           - Introduced central function for sending NET_WM messages
27155           - Implemented GetWindowState() and SetWindowState() methods
27156         * TextBoxBase.cs (set_Lines):
27157           - Now uses Foreground color for text added via Text property (Duh!)
27158           - Added code to remember programmatically requested size (fixes
27159             behaviour when Multiline is set after Size)
27160           - Added AutoSize logic
27161
27162 2005-01-06  Jackson Harper  <jackson@ximian.com>
27163
27164         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
27165
27166 2005-01-06  Jackson Harper  <jackson@ximian.com>
27167
27168         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
27169         set to less then 0.
27170
27171 2005-01-06  Jackson Harper  <jackson@ximian.com>
27172
27173         * ScrollableControl.cs: Lazy init the scrollbars.
27174         
27175 2005-01-06  Jackson Harper  <jackson@ximian.com>
27176
27177         * Theme.cs: Speed up getting pens and solid brushes, by using
27178         their ARGB as a hash instead of tostring and not calling Contains.
27179
27180 2005-01-06  Peter Bartok <pbartok@novell.com>
27181
27182         * Form.cs:
27183           - Implemented OnActivated and OnDeactivate event trigger
27184           - Implemented Activate() method
27185           - Fixed ShowDialog() to activate the form that was active before
27186             the dialog was shown
27187         * XplatUIX11.cs:
27188           - Added global active_window var that tracks the currently active
27189             X11 window
27190           - Now always grabs Property changes from the root window to always
27191             catch changes on the active window property
27192           - Added code to PropertyNotify handler to send Active/Inactive
27193             messages when state changes. This puts X11 and Win32 en par on
27194             WM_ACTIVATE notifications (except for double notifications when
27195             the user clicks away from our modal window to another one of our
27196             windows)
27197
27198 2005-01-05  Jackson Harper  <jackson@ximian.com>
27199
27200         * ImageList.cs: Implment ctor
27201
27202 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27203
27204         * XplatUIOSX.cs: Implement Activate/SetTopmost
27205
27206 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27207
27208         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
27209
27210 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
27211
27212         * XplatUIOSX.cs: Implement GetActive/SetFocus.
27213
27214 2005-01-05  Peter Bartok <pbartok@novell.com>
27215
27216         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
27217           XplatUIOSX.cs: Added GetActive method to return the currently
27218           active window for the application (or null, if none is active)
27219         * Form.cs:
27220           - Implemented ActiveForm
27221           - Commented out owner assignment for modal dialogs (causes problems
27222             on Win32, since the owner will be disabled)
27223           - Reworked some Active/Focus handling (still incomplete)
27224         * CommonDialog.cs: Commented out owner assignment for modal dialogs
27225           (causes problems on Win32, since the owner will be disabled)
27226         * IWin32Window: Added ComVisible attribute
27227
27228 2005-01-05  Peter Bartok <pbartok@novell.com>
27229
27230         * ToolTip.cs (WndProc): Enable setting focus now that we have the
27231           required XplatUI functions.
27232
27233 2005-01-05  Peter Bartok <pbartok@novell.com>
27234
27235         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
27236           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
27237           to implement focus and activation handling; still incomplete and
27238           with debug output
27239
27240 2005-01-04  Peter Bartok <pbartok@novell.com>
27241
27242         * TextBoxBase.cs: Changed access level for Document property to
27243           match switch to internal for TextControl
27244
27245 2005-01-04  Peter Bartok <pbartok@novell.com>
27246
27247         * AccessibleObject: Added ComVisible attribute
27248
27249 2005-01-04  Jackson Harper  <jackson@ximian.com>
27250
27251         * X11Keyboard.cs: Remove unneeded var.
27252
27253 2005-01-04  Jackson Harper  <jackson@ximian.com>
27254
27255         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
27256         but PAINT.
27257         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
27258         ClientMessage. This makes apps exit cleanly (more often).
27259         
27260 2005-01-04  Jackson Harper  <jackson@ximian.com>
27261
27262         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
27263         handling focus, return correct colors and fonts,
27264         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
27265         handle selection, horizontal scrolling, and mouse interaction.
27266
27267 2005-01-04  Peter Bartok <pbartok@novell.com>
27268
27269         * ICommandExecutor.cs: Added
27270         * IDataGridColumnStyleEditingNotificationService.cs: Added
27271         * IFeatureSupport.cs: Added
27272         * IFileReaderService.cs: Added
27273         * IDataObject.cs: Added ComVisible attribute
27274         * AmbientProperties.cs: Added
27275         * BaseCollection.cs: Added missing attributes
27276         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
27277         * BaseCollection.cs: Added missing attributes
27278         * Binding.cs: Added TypeConverter attribute
27279         * BindingContext.cs: Added DefaultEvent attribute
27280         * BindingsCollection.cs: Added DefaultEvent attribute
27281         * Button.cs: Added DefaultValue attribute
27282         * DragEventArgs.cs: Added ComVisible attribute
27283         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
27284         * KeyEventArgs.cs: Added ComVisible attribute
27285         * KeyPressEventArgs.cs: Added ComVisible attribute
27286         * MouseEventArgs.cs: Added ComVisible attribute
27287         * NavigateEventArgs.cs: Added
27288         * NavigateEventHandler.cs: Added
27289         * FeatureSupport.cs: Added
27290         * OSFeature.cs: Added
27291         * Theme.cs: Added abstract Version property to support OSFeature
27292         * ThemeWin32Classic.cs: Added Version property to
27293           support OSFeature.Themes
27294         * ProgressBar.cs: Removed OnPaintBackground override, not required since
27295           the proper styles to avoid background drawing are set, also doesn't
27296           match MS signature
27297         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
27298         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
27299         * ScrollEventArgs.cs: Added ComVisible attribute
27300         * SplitterEventArgs.cs: Added ComVisible attribute
27301         * AccessibleSelection.cs: Added Flags attribute
27302         * Appearance.cs: Added ComVisible attribute
27303         * Border3DSide.cs: Added ComVisible attribute
27304         * Border3DStyle.cs: Added ComVisible attribute
27305         * BorderStyle.cs: Added ComVisible attribute
27306         * DragAction.cs: Added ComVisible attribute
27307         * ErrorBlinkStyle.cs: Added
27308         * ScrollEventType.cs: Added ComVisible attribute
27309         * AnchorStyles.cs: Added Editor attribute
27310         * DockStyle.cs: Added Editor attribute
27311         * HorizontalAlignment.cs: Added ComVisible attribute
27312         * HelpEventArgs.cs: Added ComVisible attribute
27313         * PaintEventArgs.cs: Added IDisposable
27314
27315 2005-01-04  Peter Bartok <pbartok@novell.com>
27316
27317         * TextControl.cs: Switched Line, LineTag and Document classes to
27318           internal
27319
27320 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27321
27322         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
27323         Simple mode, fixes, IntegralHeight, etc.
27324
27325 2005-01-04  Peter Bartok <pbartok@novell.com>
27326
27327         * TextBoxBase.cs: Using proper font variable now
27328
27329 2005-01-04  Peter Bartok <pbartok@novell.com>
27330
27331         * Form.cs (ShowDialog): Set parent to owner, if provided
27332         * GroupBox.cs: Removed unused vars
27333         * TextControl.cs:
27334           - Added GetHashCode() for Document and LineTag classes
27335           - Removed unused variables
27336           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
27337             to allow translation between continuous char position and line/pos
27338         * CheckBox.cs: Removed vars that are provided by base class
27339         * RadioButton.cs: Removed vars that are provided by base class, added
27340           new keyword where required
27341         * LinkLabel.cs: Added new keyword where required
27342         * Control.cs (WndProc): Removed unused variable
27343         * TextBoxBase.cs:
27344           - Finished SelectionLength property
27345           - Implemented SelectionStart property
27346           - Implemented Text property
27347           - Removed unused vars
27348         * MessageBox.cs: Added new keyword where required
27349         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
27350           WndProc signature
27351         * MenuAPI.cs: Added new keyword where required
27352         * ButtonBase.cs: Removed vars that are provided by base class, added
27353           new keyword where required
27354         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
27355           argument to double, to allow compiling with csc 2.0 (Atsushi ran
27356           into this)
27357         * Application.cs (Run): Now triggers the ThreadExit event
27358         * CommonDialog.cs: Added new keyword where required; now properly sets
27359           parent (owner) for dialog
27360         * XplatUIX11.cs: Commented out unused vars
27361         * StatusBar.cs: Fixed signature for Text property
27362         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
27363
27364 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
27365
27366         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
27367         TrackBar.cs, MonthCalendar.cs: remove unused vars
27368
27369 2005-01-03  Jackson Harper  <jackson@ximian.com>
27370
27371         * ThemeWin32Classic.cs:
27372         * X11Keyboard.cs: Remove unused vars.
27373
27374 2005-01-03  Peter Bartok  <pbartok@novell.com>
27375
27376         * TextBox.cs:
27377           - set_Text: Tied into TextControl
27378           - set_TextAlignment: Tied into TextControl
27379         * TextControl.cs:
27380           - Added alignment properties and implemented alignment handling
27381             and drawing (still has a bug, not generating proper expose events)
27382           - Added new Line() constructor to allow passing the line alignment
27383           - Fixed selection setting, properly handling end<start now
27384           - Added aligment considerations to RecalculateDocument()
27385         * TextBoxBase.cs:
27386           - Now properly enforces control height for single line controls
27387           - Added support for CharacterCasing
27388           - Added IsInputKey override
27389           - Fixed Keys.Enter logic
27390           - Added SetBoundsCore override
27391           - Fixed mouse selection handling
27392
27393 2005-01-03  Jackson Harper  <jackson@ximian.com>
27394
27395         * TreeView.cs:
27396           - Collapse and uncheck all nodes when CheckBoxes is disabled.
27397           - Checkboxes are always aligned to the bottom of the node,
27398           regardless of item height.
27399           - Use the node bounds to draw the text so we can center it when
27400           the item height is greater then the font height.
27401           - Node::Bounds are only the text part of the node.
27402         * TreeNode.cs: New method to combine collapsing and unchecking all
27403           nodes recursively.
27404
27405 2005-01-02  Jackson Harper  <jackson@ximian.com>
27406
27407         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
27408         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
27409         tree when a check is changed. TODO: Only refresh the checked node.
27410
27411 2004-12-30  Jackson Harper  <jackson@ximian.com>
27412
27413         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
27414         * TreeNode.cs: When collapsing make sure to never collapse the
27415         root node.
27416
27417 2004-12-29  Jackson Harper  <jackson@ximian.com>
27418
27419         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
27420         
27421 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
27422
27423         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
27424
27425 2004-12-28  Peter Bartok  <pbartok@novell.com>
27426
27427         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
27428           not yet assigned
27429
27430 2004-12-28  Peter Bartok  <pbartok@novell.com>
27431
27432         * Control.cs (WndProc): Added WM_HELP handler, now generates
27433           HelpRequested event
27434         * Form.cs: Added HelpButton property and required support code
27435         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
27436
27437 2004-12-28  Peter Bartok  <pbartok@novell.com>
27438
27439         * CommonDialog.cs:
27440           - Made DialogForm.owner variable internal
27441           - Added check to ensure owner form is set before setting
27442             owner properties in CreateParams
27443
27444 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
27445
27446         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
27447           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
27448           GetCursorPos.  Fix major visibility issues.  Rework the windowing
27449           system to support borderless/titleless windows (implements menus).
27450           Fix GetWindowPos.  Implement initial background color support for
27451           views.
27452
27453 2004-12-28  Peter Bartok  <pbartok@novell.com>
27454
27455         * Form.cs (get_CreateParams): Make sure we have an owner before using
27456           the owner variable. Implement proper default if no owner exists
27457
27458 2004-12-28  Peter Bartok  <pbartok@novell.com>
27459
27460         * In preparation for making Managed.Windows.Forms the default build target
27461           for System.Windows.Forms, the following stubbed files were added.
27462           Dialogs are currently being implemented by contributors and are only
27463           short-term place holders.
27464         * ColorDialog.cs: Initial check-in (minmal stub)
27465         * DataGrid.cs: Initial check-in (minimal stub)
27466         * DataGridLineStyle.cs: Initial check-in (minimal stub)
27467         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
27468         * DataGridTableStyle.cs: Initial check-in (minimal stub)
27469         * FontDialog.cs: Initial check-in (minimal stub)
27470         * FileDialog.cs: Initial check-in (minimal stub)
27471         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
27472         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
27473         * OpenFileDialog: Initial check-in (minimal stub)
27474         * IComponentEditorPageSite.cs: Initial check-in
27475         * Splitter.cs: Initial check-in (for Jackson)
27476         * SplitterEventArgs.cs: Initial check-in (for Jackson)
27477         * SplitterEventHandler.cs: Initial check-in (for Jackson)
27478         * TextBox.cs: Initial check-in; still needs some wiring to
27479           TextControl backend
27480         * Form.cs: Implemented ControlBox property
27481         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
27482         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
27483         * TextControl.cs: Added selection functionality; added todo header
27484         * TextBoxBase.cs:
27485           - Implemented Lines property
27486           - Implemented TextHeight property
27487           - Implemented SelectedText property
27488           - Implemented SelectionLength property
27489           - Implemented SelectAll method
27490           - Implemented ToString method
27491           - Removed and cleaned up some debug code
27492           - Implemented (still buggy) mouse text selection
27493
27494 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
27495
27496         * ComboBox.cs: Complete DropDownList implementation, fixes.
27497
27498 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
27499
27500         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
27501         * ComboBoxStyle.cs: ComboBoxStyle enum
27502         * ComboBox.cs: Initial work on ComboBox control
27503
27504 2004-12-21  Peter Bartok  <pbartok@novell.com>
27505
27506         * Control.cs (ctor, CreateParams): Moved setting of is_visible
27507           forward so that anything that creates a window gets the default,
27508           also no longer uses Visible property in CreateParams to avoid
27509           walking up the parent chain and possibly get the wrong visible
27510           status. Fixed IsVisible to no longer walk up to the parent.
27511
27512 2004-12-21  Peter Bartok  <pbartok@novell.com>
27513
27514         * Form.cs (ShowDialog): Unset modality for the proper window
27515  
27516 2004-12-20  Peter Bartok  <pbartok@novell.com>
27517
27518         * CommonDialog.cs: Initial check-in
27519
27520 2004-12-20  Peter Bartok  <pbartok@novell.com>
27521
27522         * Control.cs (Visible): Now uses the parent window instead of the
27523           client area window for the property
27524
27525         * Form.cs
27526           - ShowDialog(): Now uses the proper window for modality
27527           - The default visibility state for the form parent is now false. This
27528             will prevent the user from seeing all the changes to the form and
27529             its controls before the application hits Application.Run()
27530           - Removed some stale commented out code
27531
27532         * NativeWindow.cs:
27533           - Added FindWindow() method to have a method to check for existence
27534             of a window handle
27535           - Added ability to override default exception handling (for example
27536             when debugging with VS.Net; to do this the ExternalExceptionHandler
27537             define must be set
27538           - Removed some useless debug output
27539
27540         * XplatUIX11.cs:
27541           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
27542             not working as expected
27543           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
27544             property to allow switching back to the modal window if focus is
27545             given to another one of our windows (Application Modal)
27546           - Now only sets override_redirect if we create a window
27547             without WS_CAPTION
27548           - Moved EventMask selection before mapping of newly created window
27549             so we can catch the map event as well
27550           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
27551           - Added various Atom related DllImports
27552           - Implemented Exit() method
27553           - .ctor() : No longer shows window if WS_VISIBLE is not defined
27554             in the CreateParams
27555
27556         * MessageBox.cs: Now properly deals with the FormParent window by
27557           providing an override the FormParent CreateParams property to
27558           set as POPUP instead of OVERLAPPED window.
27559
27560 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27561
27562         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
27563         Minor code cleanup.
27564
27565 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
27566         
27567         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
27568
27569 2004-12-18  Peter Bartok  <pbartok@novell.com>
27570
27571         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
27572           implementing SetModal() method
27573
27574 2004-12-18  Peter Bartok  <pbartok@novell.com>
27575
27576         * X11Structs.cs (XGCValues): Fixed type of function element
27577         * XplatUI.cs: Added ScrollWindow() method
27578         * XplatUIDriver.cs: Added ScrollWindow() abstract
27579         * XplatUIWin32.cs: Implemented ScrollWindow() method
27580         * XplatUIX11.cs: Implemented ScrollWindow() method
27581         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
27582
27583 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27584
27585         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
27586         Some more keyboard support (INCOMPLETE)
27587
27588 2004-12-17  Peter Bartok  <pbartok@novell.com>
27589
27590         * TextControl.cs:
27591         - Added color attribute to line tags.
27592         - Added color argument to all functions dealing with tags
27593         - Added color argument support to various functions
27594         - Fixed miss-calculation of baseline/shift in certain circumstances
27595
27596         * TextBoxBase.cs: Added new color option to test code
27597
27598 2004-12-17  Jackson Harper  <jackson@ximian.com>
27599
27600         * TreeNode.cs:
27601         * MonthCalendar.cs: Signature fixes
27602
27603 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27604
27605         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
27606         keyboard event moved it.  Create a new graphics context for each paint resolves this
27607
27608 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
27609
27610         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
27611         Make caret exist and go blink blink.  Initial keyboard support.
27612         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
27613         works.
27614
27615 2004-12-17  Jackson Harper  <jackson@ximian.com>
27616
27617         * XplatUIStructs.cs: Updated set of virtual keycodes.
27618         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
27619
27620 2004-12-17  Jackson Harper  <jackson@ximian.com>
27621
27622         * XplatUIX11.cs: Prune old keyboard code.
27623
27624 2004-12-17  Jackson Harper  <jackson@ximian.com>
27625
27626         * XplatUIX11.cs: When generating mouse wparams get the modifier
27627         keys from the ModifierKeys property.
27628
27629 2004-12-17  Jackson Harper  <jackson@ximian.com>
27630
27631         * X11Keyboard.cs: Send up/down input when generating
27632         messages. Remove some unused vars.
27633
27634 2004-12-17  Jackson Harper  <jackson@ximian.com>
27635
27636         * TabControl.cs:
27637         * TreeView.cs: get rid of warnings.
27638
27639 2004-12-17  Jackson Harper  <jackson@ximian.com>
27640
27641         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
27642
27643 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
27644
27645         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
27646           CheckedListBox.cs: Implementation
27647
27648 2004-12-17  Peter Bartok  <pbartok@novell.com>
27649
27650         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
27651
27652 2004-12-16  Peter Bartok  <pbartok@novell.com>
27653
27654         * TextControl.cs:
27655           - InsertCharAtCaret(): Fixed start pos fixup
27656           - CaretLine_get: No longer derives the line from the tag, the tag
27657             could be stale if lines in the document have been added or deleted
27658           - RebalanceAfterDelete(): Fixed bug in balancing code
27659           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
27660           - Line.Streamline(): Now can also elminate leading empty tags
27661           - DumpTree(): Added a few more tests and prevented exception on
27662             uninitialized data
27663           - Added Debug section for Combining lines
27664           - Delete(): Now copies all remaining properties of a line
27665           
27666         * TextBoxBase.cs:
27667           - Left mousebutton now sets the caret (and middle button still acts
27668             as formatting tester, which must go away soon)
27669           - Added Debug section for Deleting/Combining lines
27670           - Fixed calculations for UpdateView after Combining lines
27671
27672 2004-12-16  Peter Bartok  <pbartok@novell.com>
27673
27674         * TextControl.cs: Now properly aligns text on a baseline, using the
27675           new XplatUI.GetFontMetrics() method. Simplified several calculations
27676         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
27677           defined
27678
27679 2004-12-16  Peter Bartok  <pbartok@novell.com>
27680
27681         * XplatUI.cs: Added GetFontMetrics() method
27682         * XplatUIDriver.cs: Added GetFontMetrics() abstract
27683         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
27684           into libgdiplus, our private GetFontMetrics function
27685         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
27686         * XplatUIWin32.cs: Implemented GetFontMetrics() method
27687
27688 2004-12-16  Jackson Harper  <jackson@ximain.com>
27689
27690         * XplatUIStruct.cs: Add enum for dead keys
27691         * X11Keyboard.cs: Map and unmap dead keys.
27692
27693 2004-12-16  Jackson Harper  <jackson@ximian.com>
27694
27695         * X11Keyboard.cs: Detect and use the num lock mask.
27696
27697 2004-12-16  Peter Bartok  <pbartok@novell.com>
27698
27699         * Control.cs (CreateGraphics): Added check to make sure the
27700           handle of the window exists before calling Graphics.FromHwnd()
27701
27702 2004-12-16  Peter Bartok  <pbartok@novell.com>
27703
27704         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
27705           contains a lot of code that's not supposed to be there for the
27706           real thing, but required for developing/testing the textbox
27707           backend.
27708
27709 2004-12-16  Peter Bartok  <pbartok@novell.com>
27710
27711         * TextControl.cs:
27712         - Fixed Streamline method
27713         - Added FindTag method to Line
27714         - Added DumpTree method for debugging
27715         - Added DecrementLines() method for deleting lines
27716         - Fixed UpdateView to update the cursor to end-of-line on single-line
27717           updates
27718         - Added PositionCaret() method
27719         - Fixed MoveCaret(LineDown) to move into the last line, too
27720         - Added InsertChar overload
27721         - Fixed InsertChar tag offset calculations
27722         - Added DeleteChar() method
27723         - Added Combine() method for folding lines
27724         - Fixed Delete() method, no longer allocates wasted Line object and
27725           now copies all properties when swapping nodes
27726         - Delete() method now updates document line counter
27727
27728 2004-12-15  Jackson Harper  <jackson@ximian.com>
27729
27730         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
27731         * X11Keyboard.cs: Expose the currently selected modifier keys
27732         through a property.
27733
27734 2004-12-15  Peter Bartok  <pbartok@novell.com>
27735
27736         * TextControl.cs: Initial check-in. Still incomplete
27737
27738 2004-12-15  Jackson Harper  <jackson@ximian.com>
27739
27740         * TreeNode.cs:
27741         * TreeView.cs: Fix build on csc (second time today ;-))
27742
27743 2004-12-15  Jackson Harper  <jackson@ximian.com>
27744
27745         * TreeView.cs: Store the treenodes plus/minus box bounds when it
27746         is calculated and use this for click testing.
27747         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
27748
27749 2004-12-15  Jackson Harper  <jackson@ximian.com>
27750
27751         * TreeView.cs: Pass the nodes image index to the image list when
27752         drawing that image.
27753
27754 2004-12-15  Jackson Harper  <jackson@ximian.com>
27755
27756         * X11Keyboard.cs: Set messages hwnd.
27757         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
27758         post_message calls.
27759
27760 2004-12-15  Jackson Harper  <jackson@ximian.com>
27761
27762         * X11Keyboard.cs: Fix to compile with csc.
27763         
27764 2004-12-15  Jackson Harper  <jackson@ximian.com>
27765
27766         * X11Structs.cs: Add key mask values
27767         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
27768         * X11Keyboard.cs: New file - Extrapolates and interpolates key
27769         down/up foo into WM_CHAR foo
27770         * KeyboardLayouts.cs: Common keyboard layouts
27771         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
27772         post messages into the main queue.
27773
27774 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
27775
27776         * Button.cs: implement ProcessMnemonic
27777         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
27778           brushes everytime
27779         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
27780         * ButtonBase.cs: Show HotkeyPrefix (not the &)
27781
27782 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
27783         
27784         * MonthCalendar.cs: Implemented click-hold for next/previous month
27785           and date selection
27786           
27787 2004-12-11  Peter Bartok  <pbartok@novell.com>
27788
27789         * X11Structs.cs:
27790           - Added XKeyboardState (moved from XplatUIX11.cs)
27791           - Added XCreateGC related enums and structures
27792           - Added GXFunction for XSetFunction
27793
27794         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
27795
27796         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
27797           CaretVisible() calls
27798
27799         * ToolTip.cs: Added code to prevent stealing focus from app windows
27800
27801         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
27802           DestroyCaret, SetCaretPos and CaretVisible)
27803
27804         * XplatUIX11.cs:
27805           - Added implementation for caret functions
27806           - Moved hover variables into a struct, to make it a bit easier
27807             on the eyes and to debug
27808           - Removed XKeyboardState (moved to XplatUIX11.cs)
27809           - Moved Keyboard properties into the properties region
27810
27811         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
27812           call to get a graphics context for our control
27813
27814         * XplatUIOSX.cs: Added empty overrides for the new caret functions
27815
27816         * TreeView.cs: Fixed bug. No matter what color was set it would always
27817           return SystemColors.Window
27818
27819         * XplatUIWin32.cs: Implemented caret overrides
27820
27821 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
27822
27823         * ListBox.cs: fire events, implement missing methods and properties,
27824         sorting.
27825
27826 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
27827
27828         * MonthCalendar.cs: invalidation bug fixing
27829         * ThemeWin32Classic.cs: paint fixing
27830
27831 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
27832
27833         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
27834         prepare the CGContextRef there now.
27835
27836 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
27837
27838         * MonthCalendar.cs:
27839           - optimisationL only invalidate areas that have changed
27840         * ThemeWin32Classic.cs:
27841           - only paint parts that intersect with clip_area
27842
27843 2004-12-09  Peter Bartok  <pbartok@novell.com>
27844
27845         * Application.cs: Undid changes from r37004 which cause problems
27846         on X11
27847
27848 2004-12-09  Ravindra  <rkumar@novell.com>
27849
27850         * ToolBar.cs: Added support for displaying ContextMenu
27851         attached to a button on ToolBar.
27852         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
27853         property.
27854
27855 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27856
27857         * Label.cs: autosize works in text change and removes unnecessary
27858         invalidate
27859
27860 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
27861
27862         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
27863         remove warnings
27864
27865 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
27866
27867         * XplatUIOSX.cs: Added mouse move/click/grab support
27868         Remove some debugging WriteLines not needed anymore.
27869         Add window resizing/positioning.
27870         Fix visibility on reparenting.
27871
27872 2004-12-08  Peter Bartok  <pbartok@novell.com>
27873
27874         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
27875
27876 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
27877
27878         * XplatUIOSX.cs: Initial checkin
27879         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
27880
27881 2004-12-03  Ravindra <rkumar@novell.com>
27882
27883         * ListView.cs: Added some keybindings and fixed scrolling.
27884         ScrollBars listen to ValueChanged event instead of Scroll
27885         Event. This would let us take care of all changes being
27886         done in the scrollbars' values programmatically or manually.
27887         * ListView.cs (CanMultiselect): Added a check for shift key.
27888         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
27889         * ListViewItem.cs (Clone): Fixed. We need to make a copy
27890         of ListViewSubItemCollection as well.
27891
27892 2004-12-06  Peter Bartok <pbartok@novell.com>
27893
27894         * Control.cs (Parent): Added check and exception to prevent
27895         circular parenting
27896
27897 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
27898
27899         * ListBox.cs: implemented clipping, selection single and multiple,
27900         bug fixing
27901
27902 2004-12-03  Ravindra <rkumar@novell.com>
27903
27904         * ListView.cs (ListView_KeyDown):
27905         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
27906         when CTRL key is pressed.
27907         * ListViewItem.cs (Selected): Fixed setting the property.
27908
27909 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27910
27911         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
27912
27913         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
27914         MinimizeBox, ShowInTaskbar, TopMost properties.
27915
27916         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
27917         will be implemented).
27918
27919 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
27920
27921         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
27922
27923         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
27924         tests.
27925         
27926         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
27927         
27928         * TreeView.cs: BackColor is Colors.Window.
27929
27930 2004-12-01  Jackson Harper  <jackson@ximian.com>
27931
27932         * TreeView.cs: When resizing the tree if the user is making it
27933         smaller we don't get expose events, so we need to handle adding
27934         the horizontal scrollbar in the size changed handler as well as
27935         the expose handler.
27936
27937 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
27938
27939         * DrawItemState.cs: fixes wrong enum values
27940
27941 2004-12-01  Jackson Harper  <jackson@ximian.com>
27942
27943         * TreeView.cs: Resize the hbar as well as the vbar on resize.
27944
27945 2004-12-01  Jackson Harper  <jackson@ximian.com>
27946
27947         * NodeLabelEditEventArgs.cs:
27948         * NodeLabelEditEventHandler.cs:
27949         * OpenTreeNodeEnumerator.cs:
27950         * TreeNode.cs:
27951         * TreeNodeCollection.cs:
27952         * TreeView.cs:
27953         * TreeViewAction.cs:
27954         * TreeViewCancelEventArgs.cs:
27955         * TreeViewCancelEventHandler.cs:
27956         * TreeViewEventArgs.cs:
27957         * TreeViewEventHandler.cs: Initial implementation.
27958
27959 2004-12-01  Ravindra <rkumar@novell.com>
27960
27961         * ListView.cs (CalculateListView): Fixed scrolling related
27962         calculations. Also, removed some debug statements from other
27963         places.
27964         * ListViewItem.cs: Changed access to 'selected' instance variable
27965         from private to internal.
27966         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
27967
27968 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
27969
27970         * ThemeWin32Classic.cs: remove cache of brush and pens for
27971         specific controls and use the global system, fixes scrollbutton
27972         bugs (for small sizes, disabled, etc)
27973         
27974         * ScrollBar.cs: does not show the thumb for very small controls
27975         (as MS) and allow smaller buttons that the regular size
27976
27977 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
27978
27979         * UpDownBase.cs: Add abstract methods for the interface.
27980         Add new virtual methods (need to be hooked up to TextEntry when it
27981         exists).
27982         Add override methods for most features.
27983         Computes the size, forces the height of the text entry.
27984
27985         * NumericUpDown.cs: Put here the current testing code.
27986
27987         * Set eol-style property on all files that do not have mixed line
27988         endings, to minimize the future problems.  There are still a few
27989         files with mixed endings, and someone should choose whether they
27990         want to move it or not.
27991
27992 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
27993
27994         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
27995         System.Colors
27996         
27997 2004-11-30  Ravindra <rkumar@novell.com>
27998
27999         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
28000         drawing and replaced use of SystemColors by theme colors.
28001         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
28002         * ListView.cs (ListViewItemCollection.Add): Throw exception when
28003         same ListViewItem is being added more than once.
28004
28005 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
28006
28007         * MonthCalendar.cs:
28008           - ControlStyles love to make the control not flicker
28009           
28010 2004-11-30  Peter Bartok  <pbartok@novell.com>
28011
28012         * CharacterCasing.cs: Added
28013
28014 2004-11-29  Peter Bartok  <pbartok@novell.com>
28015
28016         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
28017           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
28018           I am removing these files as they conflict with already completed
28019           work. While it is fantastic to get contributions to MWF, I
28020           respectfully ask that everyone please coordinate their contributions
28021           through mono-winforms-list or #mono-winforms at this time. We're
28022           explicitly avoiding stubbing and don't want controls that don't have
28023           their basic functionality implemented in svn. Please also see
28024           http://www.mono-project.com/contributing/winforms.html
28025
28026
28027 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
28028
28029         * Application.cs (ModalRun): Don't hang after exit.
28030
28031         * Theme.cs: New TreeViewDefaultSize property.
28032
28033         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
28034         with less hardcoded SystemColors constant.
28035         Implemented TreeViewDefaultSize.
28036
28037         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
28038         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
28039
28040
28041 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
28042
28043         * MonthCalendar.cs:
28044           - Fix NextMonthDate and PrevMonthDate click moving calendar
28045
28046 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28047
28048         * MonthCalendar.cs:
28049           - Fix usage of ScrollChange Property when scrolling months
28050
28051 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
28052
28053         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
28054          - Fixes menu destroying
28055          - Support adding and removing items on already created menus
28056
28057 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
28058
28059         * MonthCalendar.cs:
28060           - Re-worked all bolded dates handling to match win32
28061         * ThemeWin32Classic.cs:
28062           - Fixed rendering with bolded dates
28063
28064 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
28065
28066         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
28067         - Horizontal scroolbar
28068         - Multicolumn
28069         - Fixes
28070
28071
28072 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
28073
28074         * MonthCalendar.cs:
28075           - Fix Usage of MaxSelectionCount from SelectionRange
28076           - Fixed Shift + Cursor Selection
28077           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
28078           - Fixed normal cursor selection to be compat with win32
28079           - Fixed Shift + Mouse Click selection
28080
28081 2004-11-24  Peter Bartok <pbartok@novell.com>
28082
28083         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
28084         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
28085         * XplatUIX11.cs:
28086           - CreatedKeyBoardMsg now updates keystate with Alt key
28087           - Added workaround for timer crash to CheckTimers, Jackson will
28088             develop a proper fix and check in later
28089           - Implemented DispatchMessage
28090           - Removed calling the native window proc from GetMessage (call
28091             now moved to DispatchMessage)
28092
28093         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
28094           the keydata (Fixes bug #69831)
28095
28096         * XplatUIWin32.cs:
28097           - (DispatchMessage): Switched to return IntPtr
28098           - Added DllImport for SetFocus
28099
28100 2004-11-24  Ravindra <rkumar@novell.com>
28101
28102         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
28103         background drawing.
28104         * ListViewItem.cs: Fixed various properties, calculations
28105         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
28106         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
28107         and some internal properties. Fixed MouseDown handler and Paint
28108         method.
28109
28110 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28111
28112         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
28113
28114 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28115
28116         * ContainerControl.cs: correct accidental check in of local changes
28117
28118 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
28119
28120         * ThemeWin32Classic.cs:
28121                 - Fixed Drawing Last month in grid (sometimes not showing)
28122         * MonthCalendar.cs:
28123                 - Fixed title width calculation bug (makeing title small)
28124
28125 2004-11-23  Peter Bartok <pbartok@novell.com>
28126
28127         * XplatUIX11.cs:
28128           - Added generation of WM_MOUSEHOVER event
28129           - Added missing assignment of async_method atom
28130           - Fixed WM_ERASEBKGND; now only redraws the exposed area
28131
28132 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28133
28134         * ThemeWin32Classic.cs:
28135                 - Fixed Drawing of today circle when showtodaycircle not set
28136                 - fixed drawing of first and last month in the grid (gay dates)
28137         * MonthCalendar.cs:
28138                 - Fixed Drawing of today circle
28139                 - Fixed drawing of grady dates
28140                 - Fixed HitTest for today link when ShowToday set to false
28141                 - Fixed DefaultSize to obey ShowToday
28142
28143 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
28144
28145         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
28146         * System.Windows.Forms/Theme.cs
28147         * MonthCalendar.cs: added for MonthCalendar
28148         * SelectionRange.cs: added for MonthCalendar
28149         * Day.cs: added for MonthCalendar: added for MonthCalendar
28150         * DateRangeEventArgs.cs: added for MonthCalendar
28151         * DateRangeEventHandler.cs: added for MonthCalendar
28152
28153 2004-11-22  Ravindra <rkumar@novell.com>
28154
28155         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
28156         property.
28157
28158 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
28159
28160         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
28161         event handler.
28162         
28163         * NumericUpDown.cs: Added new implementation.
28164         * UpDownBase.cs: Added new implementation.
28165
28166         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
28167         implementations.
28168         
28169         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
28170         implementations.
28171
28172         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
28173         methods.
28174
28175 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
28176
28177         * Timer.cs  (Dispose): Should call the base dispose when
28178         overriding.
28179
28180 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28181
28182         * ScrollBar.cs: updates thumb position when max, min or increment
28183         is changed
28184
28185 2004-11-21  Ravindra <rkumar@novell.com>
28186
28187         * ListView.cs: Implemented item selection, activation and
28188         column header style. Fixed properties to do a redraw, if
28189         required. Added support for MouseHover, DoubleClick, KeyDown
28190         and KeyUp event handling and some minor fixes.
28191         * ListViewItem.cs: Fixed constructor.
28192         * ThemeWin32Classic.cs: Improved drawing for ListView.
28193
28194 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
28195
28196         * ThemeWin32Classic.cs: initial listbox drawing code
28197         * DrawMode.cs: new enumerator
28198         * ListControl.cs: stubbed class
28199         * ListBox.cs: initial implementation
28200         * Theme.cs: new methods definitions
28201         * SelectionMode.cs: new enumerator
28202
28203 2004-11-17  Peter Bartok  <pbartok@novell.com>
28204
28205         * XplatUIWin32.cs: Added double-click events to the class style
28206         * Control.cs (WndProc):
28207           - Added handling of click-count to MouseDown/ MouseUp events.
28208           - Added handling of middle and right mouse buttons
28209           - Removed old debug code
28210
28211 2004-11-17  Jackson Harper  <jackson@ximian.com>
28212
28213         * XplatUIX11.cs: Use the new Mono.Unix namespace.
28214
28215 2004-11-17  Ravindra <rkumar@novell.com>
28216
28217         * ListView.cs: Added event handling for MouseMove/Up/Down.
28218         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
28219         * ThemeWin32Classic.cs: We need to clear the graphics context and
28220         draw column header in a proper state.
28221
28222
28223 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
28224
28225         *  Menu.cs: fixes signature
28226
28227 2004-11-16  Peter Bartok  <pbartok@novell.com>
28228
28229         * XplatUIX11.cs (GetMessage): Implemented generation of
28230           double click mouse messages
28231
28232 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
28233
28234         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
28235         not by menu
28236
28237 2004-11-11  Peter Bartok  <pbartok@novell.com>
28238
28239         * HandleData.cs: Added Visible property
28240         * XplatUIX11.cs (IsVisible): Now uses Visible property from
28241           HandleData
28242         * XplatUIX11.cs: Removed old debug leftovers
28243         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
28244         * Control.cs (WndProc): Removed old debug leftovers,
28245           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
28246           needed WM_SIZE handling
28247
28248 2004-11-11  Jackson Harper  <jackson@ximian.com>
28249
28250         * OwnerDrawPropertyBag.cs:
28251         * TreeViewImageIndexConverter.cs: Initial implementation
28252
28253 2004-11-10  Jackson Harper  <jackson@ximian.com>
28254
28255         * ThemeWin32Classic.cs:
28256         * TabControl.cs: instead of moving tabs by the slider pos just
28257         start drawing at the tab that is offset by the slider. This way
28258         scrolling always moves by exactly one tab.
28259
28260 2004-11-10  Jackson Harper  <jackson@ximian.com>
28261
28262         * TabControl.cs: You can only scroll left when the slider has
28263         already ben moved right.
28264         
28265 2004-11-10  Jackson Harper  <jackson@ximian.com>
28266
28267         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
28268         the clip area.
28269         
28270 2004-11-10  Jackson Harper  <jackson@ximian.com>
28271
28272         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
28273         clip area.
28274         
28275 2004-11-09  Jackson Harper  <jackson@ximian.com>
28276
28277         * TabControl.cs (CalcXPos): New helper method so we can determine
28278         the proper place to start drawing vertical tabs.
28279         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
28280         
28281 2004-11-09  Jackson Harper  <jackson@ximian.com>
28282
28283         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
28284         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
28285         and Bottom, left and right are illegal values for this and
28286         multiline is enabled when the alignment is set to left or right.
28287         (DrawTab): Each alignment block should draw the text itself now
28288         because Left requires special love. Also add rendering for Left
28289         aligned tabs.
28290         
28291 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
28292
28293         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
28294         does not destroy the windows, removes debugging messages
28295
28296 2004-11-09  jba  <jba-mono@optusnet.com.au>
28297
28298         * ThemeWin32Classic.cs
28299         (DrawButtonBase): Fix verticle text rect clipping in windows
28300         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28301         rendering and incorrect text rect clipping
28302         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
28303         rendering and incorrect text rect clipping
28304         
28305 2004-11-08  Jackson Harper  <jackson@ximian.com>
28306
28307         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
28308         bottom when they are bottom aligned so the bottoms of the tabs get
28309         displayed.
28310         * TabControl.cs (DropRow): Move rows up instead of down when the
28311         tab control is bottom aligned.
28312
28313 2004-11-08 13:59  pbartok
28314
28315         * XplatUIX11.cs:
28316           - Added handling for various window styles
28317           - Added handling for popup windows
28318           - Added SetTopmost handling
28319
28320 2004-11-08 13:55  pbartok
28321
28322         * XplatUIWin32.cs:
28323           - Added argument to SetTopmost method
28324           - Fixed broken ClientToScreen function
28325
28326 2004-11-08 13:53  pbartok
28327
28328         * XplatUIStructs.cs:
28329           - Added missing WS_EX styles
28330
28331 2004-11-08 13:53  pbartok
28332
28333         * XplatUI.cs, XplatUIDriver.cs:
28334           - Added argument to SetTopmost
28335
28336 2004-11-08 13:52  pbartok
28337
28338         * X11Structs.cs:
28339           - Added XSetWindowAttributes structure
28340           - Improved XWindowAttributes structure
28341           - Added SetWindowValuemask enum
28342           - Added window creation arguments enum
28343           - Added gravity enum
28344           - Added Motif hints structure
28345           - Added various Motif flags and enums
28346           - Added PropertyMode enum for property functions
28347
28348 2004-11-08 13:50  pbartok
28349
28350         * Form.cs:
28351           - Fixed arguments for updated SetTopmost method
28352
28353 2004-11-08 13:49  pbartok
28354
28355         * ToolTip.cs:
28356           - Fixed arguments for updated SetTopmost function
28357           - Fixed usage of PointToClient
28358
28359 2004-11-08 13:44  pbartok
28360
28361         * MenuAPI.cs:
28362           - Added Clipping of children and siblings
28363
28364 2004-11-08 13:41  pbartok
28365
28366         * MainMenu.cs:
28367           - Removed SetMenuBarWindow call. We do this in Form.cs
28368
28369 2004-11-08 13:40  jackson
28370
28371         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
28372           scrolling jimmi in the correct location with bottom aligned tabs
28373
28374 2004-11-08 13:36  pbartok
28375
28376         * ContainerControl.cs:
28377           - Implemented BindingContext
28378           - Implemented ParentForm
28379
28380 2004-11-08 12:46  jackson
28381
28382         * TabControl.cs: Put bottom rendered tabs in the right location
28383
28384 2004-11-08 07:15  jordi
28385
28386         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
28387           removes dead code
28388
28389 2004-11-05 17:30  jackson
28390
28391         * TabControl.cs: When selected tabs are expanded make sure they
28392           don't go beyond the edges of the tab control
28393
28394 2004-11-05 14:57  jackson
28395
28396         * TabControl.cs: Reset show_slider so if the control is resized to
28397           a size where it is no longer needed it's not displayed anymore
28398
28399 2004-11-05 13:16  jackson
28400
28401         * TabControl.cs: Make tab pages non visible when added to the
28402           control
28403
28404 2004-11-05 12:42  jackson
28405
28406         * TabControl.cs: Implement SizeMode.FillToRight
28407
28408 2004-11-05 12:16  jackson
28409
28410         * Control.cs: Do not call CreateHandle if the handle is already
28411           created
28412
28413 2004-11-05 11:46  jackson
28414
28415         * TabControl.cs: Remove superflous call to CalcTabRows
28416
28417 2004-11-05 09:07  jackson
28418
28419         * XplatUIX11.cs: Update for Mono.Posix changes
28420
28421 2004-11-05 07:00  ravindra
28422
28423         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
28424           scrolling.
28425
28426 2004-11-04 22:47  jba
28427
28428         * ThemeWin32Classic.cs:
28429           - Fix Button rendering for FlatStyle = Flat or Popup
28430           - Fix RadioButton and CheckBox rendering when Appearance = Button
28431             (normal and flatstyle).
28432           - Correct outer rectangle color when drawing focus rectangle
28433           - Adjust button bounds to be 1 px smaller when focused
28434           - Make button not draw sunken 3d border when pushed (windows compat)
28435           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
28436           - Offset the text in RadioButton and Checkbox when being rendered as
28437           a button.
28438           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
28439           radiobuttons
28440           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
28441           - Fixed disabled text rendering for normally rendered radiobuttons
28442
28443 2004-11-04 10:26  jackson
28444
28445         * TabControl.cs: Recalculate tab rows when resizing
28446
28447 2004-11-04 07:47  jordi
28448
28449         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
28450           collection completion, drawing issues, missing features
28451
28452 2004-11-04 05:03  ravindra
28453
28454         * ScrollBar.cs:
28455                 - We need to recalculate the Thumb area when
28456                 LargeChange/maximum/minimum values are changed.
28457           - We set the 'pos' in UpdatePos() method to minimum, if it's less
28458                 than minimum. This is required to handle the case if large_change is
28459                 more than max, and use LargeChange property instead of large_change
28460                 variable.
28461           - We return max+1 when large_change is more than max, like MS does.
28462
28463 2004-11-04 04:29  ravindra
28464
28465         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
28466                 - Changed default value signatures (prefixed all with ListView).
28467                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
28468                 ListView.
28469           - Fixed calculations for ListViewItem and implemented Clone()
28470           method.
28471
28472 2004-11-04 04:26  ravindra
28473
28474         * Theme.cs, ThemeWin32Classic.cs:
28475                 - Changed default ListView values signatures (prefixed all with
28476                 ListView).
28477           - Fixed default size values for VScrollBar and HScrollBar.
28478                 - Fixed DrawListViewItem method.
28479
28480 2004-11-04 04:05  ravindra
28481
28482         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
28483
28484 2004-11-04 04:04  ravindra
28485
28486         * ImageList.cs: Implemented the missing overload for Draw method.
28487
28488 2004-11-03 19:29  jackson
28489
28490         * TabControl.cs: Handle dropping rows on selection properly
28491
28492 2004-11-03 11:59  jackson
28493
28494         * TabControl.cs: remove debug code
28495
28496 2004-11-03 11:52  jackson
28497
28498         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
28499           the scrolly widgerywoo
28500
28501 2004-11-02 13:52  jackson
28502
28503         * TabControl.cs: Resize the tab pages and tabs when the tab control
28504           is resized
28505
28506 2004-11-02 13:40  jackson
28507
28508         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
28509           selected tab to the bottom
28510
28511 2004-11-02 13:39  jackson
28512
28513         * TabPage.cs: Store the tab pages row
28514
28515 2004-11-02 12:33  jordi
28516
28517         * MenuItem.cs: fixes handle creation
28518
28519 2004-11-02 11:42  jackson
28520
28521         * TabControl.cs: signature fix
28522
28523 2004-11-02 08:56  jackson
28524
28525         * TabControl.cs: Calculate whether the tab is on an edge properly.
28526           Remove top secret debugging code
28527
28528 2004-11-01 19:57  jackson
28529
28530         * TabControl.cs: Add click handling, and proper sizing
28531
28532 2004-11-01 19:47  jackson
28533
28534         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
28535           tab controls
28536
28537 2004-11-01 19:39  jackson
28538
28539         * TabPage.cs: add internal property to store the bounds of a tab
28540           page
28541
28542 2004-10-30 04:23  ravindra
28543
28544         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
28545           values.
28546
28547 2004-10-30 04:21  ravindra
28548
28549         * ListView.cs, ListViewItem.cs: Added support for scrolling and
28550           fixed calculations.
28551
28552 2004-10-30 03:06  pbartok
28553
28554         * XplatUIX11.cs:
28555           - Removed extension of DllImported libs
28556
28557 2004-10-29 09:55  jordi
28558
28559         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
28560           navigation, itemcollection completion, menu fixes
28561
28562 2004-10-27 22:58  pbartok
28563
28564         * XplatUIX11.cs:
28565           - Now throws a nice error message when no X display could be opened
28566
28567 2004-10-26 13:51  jordi
28568
28569         * ListView.cs: removes warning
28570
28571 2004-10-26 03:55  ravindra
28572
28573         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
28574           ThemeWin32Classic.cs: Some formatting for my last checkins.
28575
28576 2004-10-26 03:36  ravindra
28577
28578         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
28579           control and default values.
28580
28581 2004-10-26 03:35  ravindra
28582
28583         * Theme.cs: Added some default values for ListView control.
28584
28585 2004-10-26 03:33  ravindra
28586
28587         * ToolBar.cs: ToolBar should use the user specified button size, if
28588           there is any. Added a size_specified flag for the same.
28589
28590 2004-10-26 03:33  ravindra
28591
28592         * ColumnHeader.cs: Added some internal members and calculations for
28593           ColumnHeader.
28594
28595 2004-10-26 03:32  ravindra
28596
28597         * ListViewItem.cs: Calculations for ListViewItem.
28598
28599 2004-10-26 03:31  ravindra
28600
28601         * ListView.cs: Added some internal members and calculations for
28602           ListView.
28603
28604 2004-10-22 13:31  jordi
28605
28606         * MenuAPI.cs: speedup menus drawing
28607
28608 2004-10-22 13:16  jackson
28609
28610         * XplatUIX11.cs: Make sure to update exposed regions when adding an
28611           expose event
28612
28613 2004-10-22 11:49  jackson
28614
28615         * Control.cs: oops
28616
28617 2004-10-22 11:41  jackson
28618
28619         * Control.cs: Check to see if the window should have its background
28620           repainted by X when drawing.
28621
28622 2004-10-22 11:31  jackson
28623
28624         * XplatUIX11.cs: When invalidating areas only use XClearArea if
28625           clear is true, this way we do not get flicker from X repainting the
28626           background
28627
28628 2004-10-22 11:28  jackson
28629
28630         * XEventQueue.cs: Queue properly
28631
28632 2004-10-21 09:38  jackson
28633
28634         * XEventQueue.cs: Fix access modifier
28635
28636 2004-10-21 09:36  jackson
28637
28638         * XEventQueue.cs: Don't loose messages
28639
28640 2004-10-21 09:22  jackson
28641
28642         * XEventQueue.cs: Don't loose messages
28643
28644 2004-10-20 04:15  jordi
28645
28646         * BootMode.cs: enum need it by SystemInfo
28647
28648 2004-10-19 21:58  pbartok
28649
28650         * XplatUIWin32.cs:
28651           - Small sanity check
28652
28653 2004-10-19 21:56  pbartok
28654
28655         * Form.cs:
28656           - Added private FormParentWindow class which acts as the container
28657             for our form and as the non-client area where menus are drawn
28658           - Added/Moved required tie-ins to Jordi's menus
28659           - Fixed/Implemented the FormStartPosition functionality
28660
28661 2004-10-19 21:52  pbartok
28662
28663         * Control.cs:
28664           - Removed unneeded locals
28665           - Added code to all size and location properties to understand and
28666             deal with the parent container of Form
28667
28668 2004-10-19 21:33  pbartok
28669
28670         * Application.cs:
28671           - Fixed to deal with new Form subclasses for menus
28672
28673 2004-10-19 17:48  jackson
28674
28675         * XEventQueue.cs: commit correct version of file
28676
28677 2004-10-19 16:50  jackson
28678
28679         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
28680
28681 2004-10-19 16:15  jordi
28682
28683         * MenuAPI.cs: MenuBarCalcSize returns the height
28684
28685 2004-10-19 08:31  pbartok
28686
28687         * Control.cs:
28688           - Added missing call to PreProcessMessage before calling OnXXXKey
28689           methods
28690
28691 2004-10-19 00:04  ravindra
28692
28693         * ToolTip.cs: Fixed constructor.
28694
28695 2004-10-18 09:31  jordi
28696
28697         * MenuAPI.cs: menuitems in menubars do not have shortcuts
28698
28699 2004-10-18 09:26  jordi
28700
28701         * MenuItem.cs: fixes MenuItem class signature
28702
28703 2004-10-18 08:56  jordi
28704
28705         * MenuAPI.cs: prevents windows from showing in the taskbar
28706
28707 2004-10-18 00:28  ravindra
28708
28709         * ToolTip.cs: Suppressed a warning message.
28710
28711 2004-10-18 00:27  ravindra
28712
28713         * Control.cs: Default value of visible property must be true.
28714
28715 2004-10-17 23:19  pbartok
28716
28717         * ToolTip.cs:
28718           - Complete implementation
28719
28720 2004-10-17 23:19  pbartok
28721
28722         * XplatUIX11.cs:
28723           - Added EnableWindow method
28724           - Added SetModal stub
28725           - Added generation of WM_ACTIVATE message (still needs testing)
28726           - Added SetTopMost stub
28727           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
28728
28729 2004-10-17 23:17  pbartok
28730
28731         * XplatUIWin32.cs:
28732           - Removed VirtualKeys to XplatUIStructs
28733           - Implemented SetTopMost method
28734           - Implemented EnableWindow method
28735           - Bugfix in ScreenToClient()
28736           - Bugfixes in ClientToScreen()
28737
28738 2004-10-17 22:51  pbartok
28739
28740         * XplatUIStructs.cs:
28741           - Added WS_EX styles to WindowStyles enumeration
28742
28743 2004-10-17 22:50  pbartok
28744
28745         * XplatUI.cs, XplatUIDriver.cs:
28746           - Added method for enabling/disabling windows
28747           - Added method for setting window modality
28748           - Added method for setting topmost window
28749
28750 2004-10-17 22:49  pbartok
28751
28752         * ThemeWin32Classic.cs:
28753           - Added ToolTip drawing code
28754
28755 2004-10-17 22:49  pbartok
28756
28757         * Theme.cs:
28758           - Added ToolTip abstracts
28759
28760 2004-10-17 22:47  pbartok
28761
28762         * Form.cs:
28763           - Fixed Form.ControlCollection to handle owner relations
28764           - Added Owner/OwnedForms handling
28765           - Implemented Z-Ordering for owned forms
28766           - Removed unneeded private overload of ShowDialog
28767           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
28768             so I hope)
28769           - Fixed Close(), had wrong default
28770           - Added firing of OnLoad event
28771           - Added some commented out debug code for Ownership handling
28772
28773 2004-10-17 22:16  pbartok
28774
28775         * Control.cs:
28776           - Fixed/implemented flat list of controls
28777
28778 2004-10-17 22:14  pbartok
28779
28780         * Application.cs:
28781           - Added code to simulate modal dialogs on Win32
28782
28783 2004-10-17 16:11  jordi
28784
28785         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
28786           mouse event
28787
28788 2004-10-17 13:39  jordi
28789
28790         * MenuAPI.cs: menu drawing fixes
28791
28792 2004-10-15 09:10  ravindra
28793
28794         * StructFormat.cs: General Enum.
28795
28796 2004-10-15 09:09  ravindra
28797
28798         * SizeGripStyle.cs: Enum for Form.
28799
28800 2004-10-15 09:08  ravindra
28801
28802         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
28803           in Theme for ListView.
28804
28805 2004-10-15 09:06  ravindra
28806
28807         * ColumnHeader.cs: Flushing some formatting changes.
28808
28809 2004-10-15 09:05  ravindra
28810
28811         * ListViewItem.cs: Implemented GetBounds method and fixed coding
28812           style.
28813
28814 2004-10-15 09:03  ravindra
28815
28816         * ListView.cs: Implemented Paint method and fixed coding style.
28817
28818 2004-10-15 07:34  jordi
28819
28820         * MenuAPI.cs: fix for X11
28821
28822 2004-10-15 07:32  ravindra
28823
28824         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
28825                 - Renamed Paint() method to Draw() for clarity. Also, moved
28826                 DrawImage() to OnPaint().
28827
28828 2004-10-15 07:25  ravindra
28829
28830         * CheckBox.cs, RadioButton.cs:
28831                 - Removed Redraw (), we get it from ButtonBase.
28832                 - Implemented Paint (), to do class specific painting.
28833
28834 2004-10-15 07:16  ravindra
28835
28836         * ButtonBase.cs:
28837                 - Redraw () is not virtual now.
28838                 - Added an internal virtual method Paint (), so that
28839                 derived classes can do their painting on their own.
28840                 - Modified OnPaint () to call Paint ().
28841
28842 2004-10-15 06:43  jordi
28843
28844         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
28845           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
28846
28847 2004-10-15 00:30  ravindra
28848
28849         * MessageBox.cs:
28850                 - MessageBox on windows does not have min/max buttons.
28851                 This change in CreateParams fixes this on Windows. We
28852                 still need to implement this windowstyle behavior in
28853                 our X11 driver.
28854
28855 2004-10-14 05:14  ravindra
28856
28857         * ToolBar.cs:
28858                 - Changed Redraw () to do a Refresh () always.
28859                 - Fixed the MouseMove event handling when mouse is pressed,
28860                 ie drag event handling.
28861                 - Replaced the usage of ToolBarButton.Pressed property to
28862                 ToolBarButton.pressed internal variable.
28863
28864 2004-10-14 05:10  ravindra
28865
28866         * ToolBarButton.cs:
28867                 - Added an internal member 'inside' to handle mouse move
28868                 with mouse pressed ie mouse drag event.
28869                 - Changed 'Pressed' property to return true only when
28870                 'inside' and 'pressed' are both true.
28871                 - Some coding style love.
28872
28873 2004-10-14 00:17  ravindra
28874
28875         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
28876           public method.
28877
28878 2004-10-14 00:15  ravindra
28879
28880         * ButtonBase.cs: Redraw () related improvements.
28881
28882 2004-10-14 00:14  ravindra
28883
28884         * MessageBox.cs: Moved InitFormSize () out of Paint method and
28885           removed unnecessary calls to Button.Show () method.
28886
28887 2004-10-13 17:50  pbartok
28888
28889         * XplatUIX11.cs:
28890           - Formatting fix
28891           - Removed destroying of window until we solve the problem of X
28892             destroying the window before us on shutdown
28893
28894 2004-10-13 16:32  pbartok
28895
28896         * ButtonBase.cs:
28897           - Now Redraws on MouseUp for FlatStyle Flat and Popup
28898
28899 2004-10-13 14:18  pbartok
28900
28901         * XplatUIX11.cs:
28902           - Added code to destroy the X window
28903
28904 2004-10-13 14:18  pbartok
28905
28906         * XplatUIWin32.cs:
28907           - Added code to destroy a window
28908
28909 2004-10-13 14:12  pbartok
28910
28911         * ButtonBase.cs:
28912           - Added the Redraw on Resize that got dropped in the last rev
28913
28914 2004-10-13 09:06  pbartok
28915
28916         * ThemeWin32Classic.cs:
28917           - Path from John BouAntoun:
28918             * Fix check rendering (centre correctly for normal style, offset
28919               correctly for FlatStyle).
28920             * Fix border color usage (use backcolor) for FlatStyle.Popup
28921             * Use checkbox.Capture instead of checkbox.is_pressed when
28922               rendering flatstyle states.
28923
28924 2004-10-12 21:48  pbartok
28925
28926         * ThemeWin32Classic.cs:
28927           - Removed all occurences of SystemColors and replaced them with the
28928             matching theme color
28929
28930 2004-10-12 21:41  pbartok
28931
28932         * ThemeWin32Classic.cs:
28933           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
28934             him using the function for flatstyle drawing
28935           - Changed functions to use the new version of CPDrawBorder3D
28936
28937 2004-10-12 21:15  pbartok
28938
28939         * ControlPaint.cs:
28940           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
28941             match MS documentation. They need to return defined colors if the
28942             passed color matches the configured control color. Thanks to John
28943             BouAntoun for pointing this out.
28944
28945 2004-10-12 20:57  pbartok
28946
28947         * Control.cs:
28948           - Fix from John BouAntoun: Raise ForeColorChanged event when text
28949             color is changed
28950
28951 2004-10-12 20:46  pbartok
28952
28953         * CheckBox.cs:
28954           - Fix from John BouAntoun: Now properly sets the Appearance property
28955
28956 2004-10-12 20:45  pbartok
28957
28958         * ThemeWin32Classic.cs:
28959           - Fixes from John BouAntoun: now handles forecolors and backcolors
28960             for flatstyle rendered controls much better; It also fixes normal
28961             checkbox rendering when pushed or disabled.
28962
28963 2004-10-08 02:50  jordi
28964
28965         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
28966           work
28967
28968 2004-10-07 08:56  jordi
28969
28970         * ThemeWin32Classic.cs: Removes deletion of cached brushes
28971
28972 2004-10-06 03:59  jordi
28973
28974         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
28975           XplatUIWin32.cs: removes warnings from compilation
28976
28977 2004-10-05 12:23  jackson
28978
28979         * RadioButton.cs: Fix ctor
28980
28981 2004-10-05 11:10  pbartok
28982
28983         * MessageBox.cs:
28984           - Partial implementation by Benjamin Dasnois
28985
28986 2004-10-05 10:15  jackson
28987
28988         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
28989           by John BouAntoun
28990
28991 2004-10-05 03:07  ravindra
28992
28993         * ToolBar.cs:
28994                 - Removed a private method, Draw ().
28995                 - Fixed the ButtonDropDown event handling.
28996                 - Fixed MouseMove event handling.
28997
28998 2004-10-05 03:04  ravindra
28999
29000         * ThemeWin32Classic.cs:
29001                 - Added DrawListView method and ListViewDefaultSize property.
29002                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
29003                 - Changed DOS style CRLF to Unix format (dos2unix).
29004
29005 2004-10-05 03:03  ravindra
29006
29007         * Theme.cs:
29008                 - Added DrawListView method and ListViewDefaultSize property.
29009
29010 2004-10-05 02:42  ravindra
29011
29012         * ToolBarButton.cs: Added an internal member dd_pressed to handle
29013           clicks on DropDown arrow.
29014
29015 2004-10-04 22:56  jackson
29016
29017         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
29018           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
29019           Control handle the buffers, derived classes should not have to
29020           CreateBuffers themselves.
29021
29022 2004-10-04 21:20  jackson
29023
29024         * StatusBar.cs: The control handles resizing the buffers now.
29025
29026 2004-10-04 21:18  jackson
29027
29028         * Control.cs: When resizing the buffers should be invalidated. This
29029           should be handled in Control not in derived classes.
29030
29031 2004-10-04 14:45  jackson
29032
29033         * TabPage.cs: oops
29034
29035 2004-10-04 02:14  pbartok
29036
29037         * LeftRightAlignment.cs:
29038           - Initial check-in
29039
29040 2004-10-04 01:09  jordi
29041
29042         * ThemeWin32Classic.cs: fixes right button position causing right
29043           button not showing on horizontal scrollbars
29044
29045 2004-10-02 13:12  pbartok
29046
29047         * XplatUIX11.cs:
29048           - Simplified the Invalidate method by using an X call instead of
29049             generating the expose ourselves
29050           - Added an expose when the window background is changed
29051           - Implemented ClientToScreen method
29052
29053 2004-10-02 13:08  pbartok
29054
29055         * XplatUIWin32.cs:
29056           - Added Win32EnableWindow method (test for implementing modal
29057           dialogs)
29058           - Added ClientToScreen method and imports
29059
29060 2004-10-02 13:07  pbartok
29061
29062         * XplatUI.cs, XplatUIDriver.cs:
29063           - Added ClientToScreen coordinate translation method
29064
29065 2004-10-02 13:06  pbartok
29066
29067         * KeyPressEventArgs.cs:
29068           - Fixed access level for constructor
29069
29070 2004-10-02 13:06  pbartok
29071
29072         * NativeWindow.cs:
29073           - Changed access level for the window_collection hash table
29074
29075 2004-10-02 13:05  pbartok
29076
29077         * Form.cs:
29078           - Added KeyPreview property
29079           - Added Menu property (still incomplete, pending Jordi's menu work)
29080           - Implemented ProcessCmdKey
29081           - Implemented ProcessDialogKey
29082           - Implemented ProcessKeyPreview
29083
29084 2004-10-02 13:02  pbartok
29085
29086         * Control.cs:
29087           - Added private method to get the Control object from the window
29088           handle
29089           - Implemented ContextMenu property
29090           - Implemented PointToScreen
29091           - Implemented PreProcessMessage
29092           - Implemented IsInputChar
29093           - Implemented IsInputKey
29094           - Implemented ProcessCmdKey
29095           - Completed ProcessKeyEventArgs
29096           - Fixed message loop to call the proper chain of functions on key
29097           events
29098           - Implemented ProcessDialogChar
29099           - Implemented ProcessDialogKey
29100           - Implemented ProcessKeyMessage
29101           - Implemented ProcessKeyPreview
29102           - Added RaiseDragEvent stub (MS internal method)
29103           - Added RaiseKeyEvent stub (MS internal method)
29104           - Added RaiseMouseEvent stub (MS Internal method)
29105           - Added RaisePaintEvent stub (MS Internal method)
29106           - Added ResetMouseEventArgs stub (MS Internal method)
29107           - Implemented RtlTranslateAlignment
29108           - Implemented RtlTranslateContent
29109           - Implemented RtlTranslateHorizontal
29110           - Implemented RtlTranslateLeftRight
29111           - Added generation of KeyPress event
29112
29113 2004-10-02 05:57  ravindra
29114
29115         * ListViewItem.cs: Added attributes.
29116
29117 2004-10-02 05:32  ravindra
29118
29119         * ListView.cs: Added attributes.
29120
29121 2004-10-01 11:53  jackson
29122
29123         * Form.cs: Implement the Close method so work on MessageBox can
29124           continue.
29125
29126 2004-09-30 14:06  pbartok
29127
29128         * XplatUIX11.cs:
29129           - Bug fixes
29130
29131 2004-09-30 11:34  jackson
29132
29133         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
29134
29135 2004-09-30 07:26  ravindra
29136
29137         * ListViewItemConverter.cs: Converter for ListViewItem.
29138
29139 2004-09-30 07:26  ravindra
29140
29141         * SortOrder.cs: Enum for ListView control.
29142
29143 2004-09-30 07:25  ravindra
29144
29145         * ColumnHeader.cs: Supporting class for ListView control.
29146
29147 2004-09-30 07:24  ravindra
29148
29149         * ListView.cs, ListViewItem.cs: Initial implementation.
29150
29151 2004-09-30 07:20  ravindra
29152
29153         * ItemActivation.cs: Enum for ListView Control.
29154
29155 2004-09-29 20:29  pbartok
29156
29157         * XplatUIX11.cs:
29158           - Added lookup of pixel value for background color; tries to get a
29159             color 'close' to the requested color, it avoids having to create a
29160             colormap.  Depending on the display this could mean the used color
29161             is slightly off the desired color. Might have to change it to a more
29162             resource intensive colormap approach, but it will work as a
29163           workaround to avoid red screens.
29164
29165 2004-09-29 14:27  jackson
29166
29167         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
29168
29169 2004-09-28 12:44  pbartok
29170
29171         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
29172           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
29173           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
29174           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
29175           TrackBar.cs, VScrollBar.cs:
29176           - Streamlined Theme interfaces:
29177             * Each DrawXXX method for a control now is passed the object for
29178               the control to be drawn in order to allow accessing any state the
29179               theme might require
29180
29181             * ControlPaint methods for the theme now have a CP prefix to avoid
29182               name clashes with the Draw methods for controls
29183
29184             * Every control now retrieves it's DefaultSize from the current
29185             theme
29186
29187 2004-09-28 12:17  jackson
29188
29189         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
29190           drawing
29191
29192 2004-09-24 14:57  jackson
29193
29194         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
29195           Gives us a nice little performance boost.
29196
29197 2004-09-24 12:02  jackson
29198
29199         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
29200           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
29201           Control and supporting classes. Initial checkin
29202
29203 2004-09-23 13:08  jackson
29204
29205         * Form.cs: Temp build fixage
29206
29207 2004-09-23 01:39  ravindra
29208
29209         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
29210           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
29211           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
29212           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
29213           EventHandlers needed by ListView Control.
29214
29215 2004-09-22 14:12  pbartok
29216
29217         * ScrollableControl.cs:
29218           - Implemented DockPadding property
29219           - Implemented AutoScroll property
29220           - Implemented AutoScrollMargin property
29221           - Implemented AutoScrollMinSize property
29222           - Implemented AutoScrollPosition property
29223           - Implemented DisplayRectangle property (still incomplete)
29224           - Implemented CreateParams property
29225           - Implemented HScroll property
29226           - Implemented VScroll property
29227           - Implemented OnVisibleChanged property
29228
29229 2004-09-22 14:09  pbartok
29230
29231         * Form.cs:
29232           - Added Form.ControllCollection class
29233           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
29234             RemoveOwnedForm (still incomplete, missing on-top and common
29235             minimize/maximize behaviour)
29236           - Added StartPosition property (still incomplete, does not use when
29237             creating the form)
29238           - Added ShowDialog() methods (still incomplete, missing forcing the
29239             dialog modal)
29240
29241 2004-09-22 14:05  pbartok
29242
29243         * Application.cs:
29244           - Added message loop for modal dialogs
29245
29246 2004-09-22 14:02  pbartok
29247
29248         * GroupBox.cs:
29249           - Fixed wrong types for events
29250
29251 2004-09-22 14:00  pbartok
29252
29253         * Shortcut.cs, FormWindowState.cs:
29254           - Fixed wrong values
29255
29256 2004-09-22 12:01  jackson
29257
29258         * Control.cs: Text is never null
29259
29260 2004-09-20 22:14  pbartok
29261
29262         * XplatUIWin32.cs:
29263           - Fixed accessibility level for Idle handler
29264
29265 2004-09-20 18:54  jackson
29266
29267         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29268           XplatUIX11.cs: New message loop that uses poll so we don't get a
29269           busy loop
29270
29271 2004-09-17 10:43  pbartok
29272
29273         * ScrollBar.cs:
29274           - Fixed behaviour of arrow buttons. Now properly behaves like
29275             Buttons (and like Microsoft's scrollbar arrow buttons)
29276
29277 2004-09-17 10:14  pbartok
29278
29279         * ScrollBar.cs:
29280           - Added missing release of keyboard/mouse capture
29281
29282 2004-09-17 06:18  jordi
29283
29284         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
29285           Theme.cs: Very early menu support
29286
29287 2004-09-16 17:45  pbartok
29288
29289         * XplatUIWin32.cs:
29290           - Fixed sending a window to the front
29291           - Added overload for SetWindowPos to avoid casting
29292
29293 2004-09-16 17:44  pbartok
29294
29295         * Control.cs:
29296           - Added SendToBack and BringToFront methods
29297
29298 2004-09-16 07:00  ravindra
29299
29300         * Copyright: Added Novell URL.
29301
29302 2004-09-16 07:00  ravindra
29303
29304         * ToolBar.cs: Invalidate should be done before redrawing.
29305
29306 2004-09-15 21:19  ravindra
29307
29308         * ColumnHeaderStyle.cs: Enum for ListView Control.
29309
29310 2004-09-15 21:18  ravindra
29311
29312         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
29313           ListView Control.
29314
29315 2004-09-13 18:26  jackson
29316
29317         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
29318           properly
29319
29320 2004-09-13 18:13  jackson
29321
29322         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
29323           a second thread and post messages into the main threads message
29324           queue. This makes timing much more consistent. Both win2K and XP
29325           have a minimum timer value of 15 milliseconds, so we now do this
29326           too.
29327
29328 2004-09-13 15:18  pbartok
29329
29330         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29331           XplatUIX11.cs:
29332           - Added Z-Ordering methods
29333
29334 2004-09-13 10:56  pbartok
29335
29336         * Form.cs:
29337           - Fixed #region names
29338           - Moved properties and methods into their proper #regions
29339
29340 2004-09-13 10:51  pbartok
29341
29342         * Form.cs:
29343           - Added Accept and CancelButton properties
29344           - Added ProcessDialogKey() method
29345
29346 2004-09-13 08:18  pbartok
29347
29348         * IWindowTarget.cs:
29349           - Initial check-in
29350
29351 2004-09-10 21:50  pbartok
29352
29353         * Control.cs:
29354           - Added DoDragDrop() [incomplete]
29355           - Properly implemented 'Visible' handling
29356           - Added SetVisibleCore()
29357           - Implemented FindChildAtPoint()
29358           - Implemented GetContainerControl()
29359           - Implemented Hide()
29360
29361 2004-09-10 19:28  pbartok
29362
29363         * Control.cs:
29364           - Moved methods into their appropriate #regions
29365           - Reordered methods within regions alphabetically
29366
29367 2004-09-10 18:57  pbartok
29368
29369         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29370           - Added method to retrieve text from window
29371
29372 2004-09-10 18:56  pbartok
29373
29374         * Control.cs:
29375           - Moved some internal functions into the internal region
29376           - Implemented FontHeight
29377           - Implemented RenderRightToLeft
29378           - Implemented ResizeRedraw
29379           - Implemented ShowFocusCues
29380           - Implemented ShowKeyboardCues
29381           - Implemented FromChildHandle
29382           - Implemented FromHandle
29383           - Implemented IsMnemonic
29384           - Implemented ReflectMessage
29385           - All public and protected Static Methods are now complete
29386
29387 2004-09-10 16:54  pbartok
29388
29389         * Control.cs:
29390           - Implemented remaining missing public instance properties
29391           - Alphabetized some out of order properties
29392
29393 2004-09-10 05:51  ravindra
29394
29395         * PictureBox.cs: Added a check for null image.
29396
29397 2004-09-10 00:59  jordi
29398
29399         * GroupBox.cs: remove cvs tag
29400
29401 2004-09-09 05:25  ravindra
29402
29403         * ToolBar.cs: Make redraw accessible from ToolBarButton.
29404
29405 2004-09-09 05:23  ravindra
29406
29407         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
29408           parent redraw.
29409
29410 2004-09-09 02:28  pbartok
29411
29412         * ThemeWin32Classic.cs:
29413           - Improve disabled string look
29414
29415 2004-09-09 01:15  jordi
29416
29417         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
29418           args and handler
29419
29420 2004-09-08 23:56  ravindra
29421
29422         * ItemBoundsPortion.cs: It's enum, not a class!
29423
29424 2004-09-08 23:47  ravindra
29425
29426         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
29427           Enums for Form.
29428
29429 2004-09-08 21:13  ravindra
29430
29431         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
29432           ListView control.
29433
29434 2004-09-08 21:03  ravindra
29435
29436         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
29437           avoid crash.
29438
29439 2004-09-08 21:01  ravindra
29440
29441         * ScrollableControl.cs: Removed unreachable code.
29442
29443 2004-09-08 06:45  jordi
29444
29445         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
29446
29447 2004-09-08 01:00  jackson
29448
29449         * XplatUIX11.cs: Only run the timers when updating the message
29450           queue. This effectively gives X messages a higher priority then
29451           timer messages. Timers still need love though
29452
29453 2004-09-07 14:01  jackson
29454
29455         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
29456           this for us and the handle is no longer valid.
29457
29458 2004-09-07 13:59  jackson
29459
29460         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
29461           loop that manages to not crash. TODO: Add poll and cleanup timers
29462
29463 2004-09-07 11:12  jordi
29464
29465         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
29466
29467 2004-09-07 03:40  jordi
29468
29469         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
29470           fixes, methods, multiple links
29471
29472 2004-09-06 06:55  jordi
29473
29474         * Control.cs: Caches ClientRectangle rectangle value
29475
29476 2004-09-05 02:03  jordi
29477
29478         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
29479           certain situations
29480
29481 2004-09-04 11:10  jordi
29482
29483         * Label.cs: Refresh when font changed
29484
29485 2004-09-02 16:24  pbartok
29486
29487         * Control.cs:
29488           - Added sanity check to creation of double buffer bitmap
29489
29490 2004-09-02 16:24  pbartok
29491
29492         * ButtonBase.cs:
29493           - Fixed selection of text color
29494           - Fixed handling of resize event; now properly recreates double
29495             buffering bitmap
29496           - Added missing assignment of TextAlignment
29497           - Added proper default for TextAlignment
29498
29499 2004-09-02 14:26  pbartok
29500
29501         * RadioButton.cs:
29502           - Added missing RadioButton.RadioButtonAccessibleObject class
29503
29504 2004-09-02 14:26  pbartok
29505
29506         * Control.cs:
29507           - Added missing Control.ControlAccessibleObject class
29508           - Started to implement Select()ion mechanisms, still very incomplete
29509
29510 2004-09-02 14:25  pbartok
29511
29512         * AccessibleObject.cs:
29513           - Added missing methods
29514
29515 2004-09-02 14:23  pbartok
29516
29517         * AccessibleNavigation.cs, AccessibleSelection.cs:
29518           - Initial check-in
29519
29520 2004-09-02 10:32  jordi
29521
29522         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
29523           pool for pens, brushes, and hatchbruses
29524
29525 2004-09-01 15:30  jackson
29526
29527         * StatusBar.cs: Fix typo
29528
29529 2004-09-01 14:44  pbartok
29530
29531         * RadioButton.cs:
29532           - Fixed state
29533
29534 2004-09-01 14:39  pbartok
29535
29536         * Button.cs, RadioButton.cs:
29537           - Functional initial check-in
29538
29539 2004-09-01 14:01  pbartok
29540
29541         * CheckBox.cs:
29542           - Added missing default
29543           - Added missing region mark
29544
29545 2004-09-01 09:10  jordi
29546
29547         * Label.cs: fixes method signatures, new methods, events, fixes
29548           autosize
29549
29550 2004-09-01 07:19  jordi
29551
29552         * Control.cs: Init string variables with an empty object
29553
29554 2004-09-01 04:20  jordi
29555
29556         * Control.cs: fires OnFontChanged event
29557
29558 2004-08-31 20:07  pbartok
29559
29560         * ButtonBase.cs:
29561           - Enabled display of strings
29562
29563 2004-08-31 20:05  pbartok
29564
29565         * Form.cs:
29566           - Added (partial) implementation of DialogResult; rest needs to be
29567             implemented when the modal loop code is done
29568
29569 2004-08-31 19:55  pbartok
29570
29571         * CheckBox.cs:
29572           - Fixed to match the removal of the needs_redraw concept
29573
29574 2004-08-31 19:55  pbartok
29575
29576         * ButtonBase.cs:
29577           - Removed the rather odd split between 'needs redraw' and redrawing
29578           - Now handles the events that require regeneration (ambient
29579             properties and size)
29580
29581 2004-08-31 19:41  pbartok
29582
29583         * Control.cs:
29584           - Added firing of BackColorChanged event
29585           - Added TopLevelControl property
29586           - Fixed handling of WM_ERASEBKGRND message
29587
29588 2004-08-31 12:49  pbartok
29589
29590         * ButtonBase.cs:
29591           - Removed debug
29592           - Minor fixes
29593
29594 2004-08-31 12:48  pbartok
29595
29596         * CheckBox.cs:
29597           - Finished (famous last words)
29598
29599 2004-08-31 04:35  jordi
29600
29601         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
29602           scrolling bugs, adds new methods
29603
29604 2004-08-30 14:42  pbartok
29605
29606         * CheckBox.cs:
29607           - Implemented CheckBox drawing code
29608
29609 2004-08-30 14:42  pbartok
29610
29611         * ButtonBase.cs:
29612           - Made Redraw() and CheckRedraw() virtual
29613           - Improved mouse up/down/move logic to properly track buttons
29614
29615 2004-08-30 09:44  pbartok
29616
29617         * CheckBox.cs:
29618           - Updated to fix broken build. Not complete yet.
29619
29620 2004-08-30 09:28  pbartok
29621
29622         * CheckState.cs:
29623           - Initial checkin
29624
29625 2004-08-30 09:17  pbartok
29626
29627         * Appearance.cs:
29628           - Initial check-in
29629
29630 2004-08-27 16:12  ravindra
29631
29632         * ToolBarButton.cs: Added TypeConverter attribute.
29633
29634 2004-08-27 16:07  ravindra
29635
29636         * ImageIndexConverter.cs: Implemented.
29637
29638 2004-08-27 14:17  pbartok
29639
29640         * Control.cs:
29641           - Removed unneeded stack vars
29642           - First attempt to fix sizing issues when layout is suspended
29643
29644 2004-08-25 15:35  jordi
29645
29646         * ScrollBar.cs: more fixes to scrollbar
29647
29648 2004-08-25 14:04  ravindra
29649
29650         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
29651           Added the missing divider code and grip for ToolBar Control.
29652
29653 2004-08-25 13:20  pbartok
29654
29655         * Control.cs:
29656           - Control now properly passes the ambient background color to child
29657             controls
29658
29659 2004-08-25 13:20  jordi
29660
29661         * ScrollBar.cs: small bug fix regarding bar position
29662
29663 2004-08-25 12:33  pbartok
29664
29665         * Timer.cs:
29666           - Now only calls SetTimer or KillTimer if the enabled state has
29667           changed
29668
29669 2004-08-25 12:33  pbartok
29670
29671         * XplatUIWin32.cs:
29672           - Fixed timer handling, now seems to work
29673           - Improved error message for window creation
29674
29675 2004-08-25 12:32  pbartok
29676
29677         * Control.cs:
29678           - Fixed generation of MouseUp message
29679
29680 2004-08-25 12:29  jordi
29681
29682         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
29683           and fixes for progressbar
29684
29685 2004-08-24 18:43  ravindra
29686
29687         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
29688           in ToolBar control.
29689
29690 2004-08-24 17:15  pbartok
29691
29692         * Panel.cs:
29693           - Added #region
29694           - Added missing events
29695           - Alphabetized
29696
29697 2004-08-24 17:14  pbartok
29698
29699         * StatusBar.cs, PictureBox.cs:
29700           - Now uses Control's CreateParams
29701
29702 2004-08-24 16:36  pbartok
29703
29704         * XplatUIX11.cs:
29705           - Fixed background color handling
29706           - Fixed sending of enter/leave events on a grab
29707
29708 2004-08-24 16:35  pbartok
29709
29710         * X11Structs.cs:
29711           - Refined definitions for CrossingEvent
29712
29713 2004-08-24 12:37  jordi
29714
29715         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
29716           formmating, methods signature, and adds missing events
29717
29718 2004-08-24 12:24  jordi
29719
29720         * Control.cs: fire OnEnabledChanged event
29721
29722 2004-08-24 11:17  pbartok
29723
29724         * XplatUIWin32.cs:
29725           - Implemented SetTimer() and KillTimer()
29726
29727 2004-08-24 11:16  pbartok
29728
29729         * XplatUIX11.cs:
29730           - Now uses Remove instead of Add to kill the timer
29731
29732 2004-08-24 10:16  jackson
29733
29734         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
29735           picture boxes in the theme now. Draw picture box borders and obey
29736           sizing modes
29737
29738 2004-08-24 05:49  jackson
29739
29740         * Timer.cs: Remove top secret debugging code
29741
29742 2004-08-24 05:34  jackson
29743
29744         * PictureBox.cs: Temp hack to make picture boxes draw their full
29745           image
29746
29747 2004-08-24 05:29  jackson
29748
29749         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
29750           XplatUIX11.cs: Move timers to the driver level. On X they are
29751           queued by the driver and checked on idle.
29752
29753 2004-08-24 01:07  jackson
29754
29755         * XplatUIX11.cs: Use a queue for async messages instead of passing
29756           them as ClientMessages since that was totally broken. Also simply
29757           check for events and return an idle message if none are found. This
29758           gives us an idle handler, and prevents deadlocking when no messages
29759           are in the queue.
29760
29761 2004-08-23 18:19  ravindra
29762
29763         * XplatUIWin32.cs: Removed the unwanted destructor.
29764
29765 2004-08-23 17:27  pbartok
29766
29767         * ButtonBase.cs:
29768           - Finishing touches. Works now, just needs some optimizations.
29769
29770 2004-08-23 16:53  jordi
29771
29772         * ScrollBar.cs: small fix
29773
29774 2004-08-23 16:45  pbartok
29775
29776         * Application.cs:
29777           - Removed debug output
29778           - Simplifications
29779
29780 2004-08-23 16:43  jordi
29781
29782         * ScrollBar.cs: [no log message]
29783
29784 2004-08-23 16:10  pbartok
29785
29786         * Form.cs:
29787           - Fixed handling of WM_CLOSE message
29788           - Removed debug output
29789
29790 2004-08-23 16:09  pbartok
29791
29792         * Application.cs:
29793           - Added handling of Idle event
29794           - Added handling of form closing
29795           - Fixed reporting of MessageLoop property
29796           - Removed some unneeded code, should provide a bit of a speedup
29797
29798 2004-08-23 15:22  pbartok
29799
29800         * Control.cs:
29801           - Added InitLayout() method
29802           - Added code to properly perform layout when Anchor or Dock property
29803             is changed
29804           - Changed 'interpretation' of ResumeLayout. MS seems to have a
29805             LAMESPEC, tried to do it in a way that makes sense
29806
29807 2004-08-23 14:10  jordi
29808
29809         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
29810           properties and methods
29811
29812 2004-08-23 13:55  pbartok
29813
29814         * Control.cs:
29815           - Properly fixed Jordi's last fix
29816           - Now uses Cursor's Position property instead of calling XplatUI
29817           directly
29818
29819 2004-08-23 13:44  jordi
29820
29821         * PaintEventHandler.cs: Adding missing attribute
29822
29823 2004-08-23 13:39  pbartok
29824
29825         * Cursor.cs:
29826           - Implemented Position property
29827
29828 2004-08-23 13:39  pbartok
29829
29830         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
29831           - Added method to move mouse cursor
29832
29833 2004-08-23 13:39  pbartok
29834
29835         * XplatUIX11.cs:
29836           - Fixed setting of background color
29837           - Added method to move mouse cursor
29838
29839 2004-08-23 13:16  jordi
29840
29841         * Control.cs: avoids null exception
29842
29843 2004-08-22 17:46  jackson
29844
29845         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
29846           PictureBox
29847
29848 2004-08-22 17:40  jackson
29849
29850         * XplatUIX11.cs: Add some missing locks
29851
29852 2004-08-22 15:10  pbartok
29853
29854         * Control.cs, Form.cs:
29855           - Removed OverlappedWindow style from Control, instead it's default
29856             now is child
29857           - Made form windows OverlappedWindow by default
29858
29859 2004-08-22 13:34  jackson
29860
29861         * ScrollBar.cs: Update the position through the Value property so
29862           the OnValueChanged event is raised.
29863
29864 2004-08-22 12:04  pbartok
29865
29866         * SWF.csproj:
29867           - Added Cursor.cs and UserControl.cs
29868
29869 2004-08-22 12:03  pbartok
29870
29871         * Cursor.cs:
29872           - Started implementation, not usable yet
29873
29874 2004-08-22 12:00  pbartok
29875
29876         * UserControl.cs:
29877           - Implemented UserControl (complete)
29878
29879 2004-08-21 19:20  ravindra
29880
29881         * ToolBar.cs: Correcting the formatting mess of VS.NET.
29882
29883 2004-08-21 18:49  ravindra
29884
29885         * ToolBar.cs: Probably this completes the missing attributes in
29886           toolbar control.
29887
29888 2004-08-21 18:03  ravindra
29889
29890         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
29891           Fixed toolbar control signatures.
29892
29893 2004-08-21 16:32  pbartok
29894
29895         * LinkLabel.cs:
29896           - Signature Fixes
29897
29898 2004-08-21 16:30  pbartok
29899
29900         * Label.cs:
29901           - Signature fixes
29902
29903 2004-08-21 16:19  pbartok
29904
29905         * Control.cs, Label.cs:
29906           - Signature fixes
29907
29908 2004-08-21 15:57  pbartok
29909
29910         * ButtonBase.cs:
29911           - Added loads of debug output for development
29912           - Fixed typo in method name
29913
29914 2004-08-21 15:52  pbartok
29915
29916         * ToolBarButtonClickEventArgs.cs:
29917           - Added missing base class
29918
29919 2004-08-21 14:53  pbartok
29920
29921         * Control.cs:
29922           - Updated to match new GrabWindow signature
29923
29924 2004-08-21 14:51  pbartok
29925
29926         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29927           - Added method to get default display size
29928
29929 2004-08-21 14:23  pbartok
29930
29931         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
29932           - Added method to query current grab state
29933           - Added argument to allow confining a grab to a window
29934
29935 2004-08-21 14:22  pbartok
29936
29937         * Keys.cs:
29938           - Added [Flags] attribute so that modifiers can be used in bitwise
29939           ops
29940
29941 2004-08-21 14:21  pbartok
29942
29943         * TrackBar.cs, ScrollBar.cs:
29944           - Replaced direct XplatUI calls with their Control counterpart
29945
29946 2004-08-21 13:32  pbartok
29947
29948         * Control.cs:
29949           - Implemented Created property
29950
29951 2004-08-21 13:28  pbartok
29952
29953         * Control.cs:
29954           - Implemented ContainsFocus
29955
29956 2004-08-21 13:26  pbartok
29957
29958         * Control.cs:
29959           - Implemented CausesValidation
29960
29961 2004-08-21 13:21  pbartok
29962
29963         * Control.cs:
29964           - Implemented CanFocus
29965           - Implemented CanSelect
29966           - Implemented Capture
29967
29968 2004-08-21 12:35  pbartok
29969
29970         * XplatUIWin32.cs:
29971           - Fixed bug with Async message handling
29972           - Implemented getting the ModifierKeys
29973
29974 2004-08-21 12:32  jackson
29975
29976         * AsyncMethodResult.cs: Make sure we have the mutex before we
29977           release it. Fixes BeginInvoke on windows
29978
29979 2004-08-21 11:31  pbartok
29980
29981         * XplatUIWin32.cs, XplatUIX11.cs:
29982           - Drivers now return proper mouse state
29983
29984 2004-08-21 10:54  jackson
29985
29986         * Control.cs: Implement EndInvoke
29987
29988 2004-08-21 10:48  jackson
29989
29990         * Timer.cs: Remove unneeded finalizer
29991
29992 2004-08-20 19:52  ravindra
29993
29994         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
29995           in mouse event handling in the ToolBar control.
29996
29997 2004-08-20 19:50  ravindra
29998
29999         * ImageList.cs: Changed draw method to use the arguments passed in
30000           to draw the image.
30001
30002 2004-08-20 18:58  pbartok
30003
30004         * XplatUIStructs.cs:
30005           - Added private message for async communication
30006
30007 2004-08-20 17:38  ravindra
30008
30009         * Control.cs: Made RightToLeft property virtual and removed a
30010           Console.WriteLine.
30011
30012 2004-08-20 14:39  jordi
30013
30014         * ThemeGtk.cs: use style_attach
30015
30016 2004-08-20 14:39  pbartok
30017
30018         * XplatUIWin32.cs:
30019           - Added jackson's Async code from X11 to Win32
30020
30021 2004-08-20 14:09  pbartok
30022
30023         * SWF.csproj:
30024           - Added all new files
30025
30026 2004-08-20 14:09  pbartok
30027
30028         * Control.cs:
30029           - Added call to set window background color
30030
30031 2004-08-20 14:03  pbartok
30032
30033         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30034           - Added method for setting the window background
30035
30036 2004-08-20 14:02  pbartok
30037
30038         * XplatUIWin32.cs:
30039           - Added method for setting the background color
30040           - Added handling for erasing the window background
30041
30042 2004-08-20 13:45  jordi
30043
30044         * TrackBar.cs: fixes timer, new properties and methods
30045
30046 2004-08-20 13:34  jackson
30047
30048         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
30049           correct thread
30050
30051 2004-08-20 13:22  jackson
30052
30053         * Timer.cs: Timer Tick events are now handed through Controls Async
30054           mechanism so the callbacks are executed in the same thread as X
30055
30056 2004-08-20 13:19  jackson
30057
30058         * XplatUIDriver.cs: Expose functionality to send async messages
30059           through the driver
30060
30061 2004-08-20 13:18  jackson
30062
30063         * Control.cs: Implement Begininvoke
30064
30065 2004-08-20 13:14  jackson
30066
30067         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
30068           messages through the driver
30069
30070 2004-08-20 13:12  jackson
30071
30072         * XplatUIX11.cs: Lock before all X operations. Also added Async
30073           method functionality through XSendEvent
30074
30075 2004-08-20 13:11  jackson
30076
30077         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
30078           This will screw up on 64 bit systems)
30079
30080 2004-08-20 13:10  jackson
30081
30082         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
30083           Async messages through X/Win32
30084
30085 2004-08-19 19:39  pbartok
30086
30087         * XplatUIX11.cs:
30088           - Updated code to match new HandleData.DeviceContext type
30089
30090 2004-08-19 19:38  pbartok
30091
30092         * HandleData.cs:
30093           - Made DeviceContext a generic object to allow usage from various
30094           drivers
30095           - Added support for queueing Windows messages
30096
30097 2004-08-19 19:37  pbartok
30098
30099         * XplatUIWin32.cs:
30100           - Added generation of MouseEnter, MouseLeave and MouseHover events
30101           - Added cleanup on EndPaint
30102
30103 2004-08-19 19:17  pbartok
30104
30105         * Control.cs:
30106           - Added handling of WM_MOUSEHOVER
30107           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
30108           code
30109
30110 2004-08-19 18:55  jordi
30111
30112         * ThemeGtk.cs: fixes button order
30113
30114 2004-08-19 18:12  jordi
30115
30116         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
30117
30118 2004-08-19 17:09  pbartok
30119
30120         * Control.cs:
30121           - Added Right property
30122           - Added RightToLeft property
30123
30124 2004-08-19 16:27  jordi
30125
30126         * ThemeGtk.cs: experimental GTK theme support
30127
30128 2004-08-19 16:26  jordi
30129
30130         * ITheme.cs, Theme.cs: move themes from an interface to a class
30131
30132 2004-08-19 16:25  jordi
30133
30134         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
30135           theme enhancaments
30136
30137 2004-08-19 16:04  pbartok
30138
30139         * XplatUIX11.cs:
30140           - Added colormap basics
30141           - Added a way to re-initialize with a different display handle
30142           - Fixed setting of the window background color
30143           - Added various X11 imports related to colors and colormaps
30144
30145 2004-08-19 15:51  pbartok
30146
30147         * X11Structs.cs:
30148           - Removed packing hints (Paolo suggested this a while back)
30149           - fixed colormap type
30150           - Added default Atom types
30151           - Added Screen and color structs and enums
30152
30153 2004-08-19 15:39  pbartok
30154
30155         * ImageList.cs:
30156           - Added missing Draw() method
30157           - Added missing RecreateHandle event
30158
30159 2004-08-19 15:30  pbartok
30160
30161         * Form.cs:
30162           - Added handling of WM_CLOSE
30163
30164 2004-08-18 13:16  jordi
30165
30166         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
30167           a table
30168
30169 2004-08-18 09:56  jordi
30170
30171         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
30172
30173 2004-08-17 15:31  ravindra
30174
30175         * SWF.csproj: Updated project.
30176
30177 2004-08-17 15:25  pbartok
30178
30179         * Control.cs:
30180           - Drawing improvement; don't call UpdateBounds if we are not visible
30181             (or have been minimized)
30182
30183 2004-08-17 15:24  pbartok
30184
30185         * XplatUIWin32.cs:
30186           - Finished IsVisible
30187           - Added Win32GetWindowPlacement
30188
30189 2004-08-17 15:08  jackson
30190
30191         * Panel.cs: Initial checkin of the Panel
30192
30193 2004-08-17 14:25  pbartok
30194
30195         * Control.cs:
30196           - Fixed broken handling of default window sizes
30197
30198 2004-08-17 13:29  jackson
30199
30200         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
30201           has a large startup time.
30202
30203 2004-08-17 10:25  jackson
30204
30205         * HandleData.cs: union areas properly
30206
30207 2004-08-17 10:12  jackson
30208
30209         * HandleData.cs: union areas properly
30210
30211 2004-08-16 20:00  ravindra
30212
30213         * ToolBar.cs, ToolBarButton.cs: Added attributes.
30214
30215 2004-08-16 18:48  ravindra
30216
30217         * ToolBar.cs: Added attributes.
30218
30219 2004-08-16 17:17  ravindra
30220
30221         * SWF.csproj: Updated project.
30222
30223 2004-08-16 17:16  jackson
30224
30225         * XplatUIX11.cs: Check for more expose events before sending a
30226           WM_PAINT so they can all be grouped together. This makes dragging a
30227           window across another window redraw in a sane way.
30228
30229 2004-08-16 15:47  pbartok
30230
30231         * Control.cs:
30232           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
30233             support OnMouseEnter/Leave()
30234           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
30235             exposure handling
30236
30237 2004-08-16 15:46  pbartok
30238
30239         * XplatUIStructs.cs, XplatUIX11.cs:
30240           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
30241           OnMouseEnter/Leave()
30242
30243 2004-08-16 15:34  jackson
30244
30245         * XplatUIX11.cs: Group multiple expose events in HandleData, make
30246           sure messages get the message field set to WM_NULL if they are not
30247           handled.
30248
30249 2004-08-16 15:24  jackson
30250
30251         * HandleData.cs: HandleData is used for storing message information
30252           for window handles
30253
30254 2004-08-15 17:23  ravindra
30255
30256         * ColorDepth.cs: Added attribute.
30257
30258 2004-08-15 17:23  ravindra
30259
30260         * SWF.csproj: Updated project for ToolBar Control.
30261
30262 2004-08-15 17:20  ravindra
30263
30264         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
30265           control and also dos2unix format.
30266
30267 2004-08-15 17:13  ravindra
30268
30269         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
30270           ToolBarButtonClickEventArgs.cs,
30271           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
30272           ToolBarTextAlign.cs: First Implementation of ToolBar control.
30273
30274 2004-08-15 15:31  pbartok
30275
30276         * ButtonBase.cs:
30277           - First (mostly) working version
30278
30279 2004-08-13 16:15  pbartok
30280
30281         * Control.cs:
30282           - Fixed Anchor default
30283
30284 2004-08-13 15:43  pbartok
30285
30286         * Control.cs:
30287           - Changed GetCursorPos signature
30288
30289 2004-08-13 15:42  pbartok
30290
30291         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
30292           - Changed signature for GetCursorPos
30293
30294 2004-08-13 15:25  pbartok
30295
30296         * XplatUIX11.cs:
30297           - Cleanup
30298           - Fixed resizing/exposure handling
30299
30300 2004-08-13 15:22  jordi
30301
30302         * ThemeWin32Classic.cs: removes redundant code and fixes issues
30303           with tickposition
30304
30305 2004-08-13 14:55  jordi
30306
30307         * TrackBar.cs: change from wndproc to events
30308
30309 2004-08-13 13:00  jordi
30310
30311         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30312           XplatUIX11.cs: implements PointToClient (ScreenToClient)
30313
30314 2004-08-13 12:53  pbartok
30315
30316         * XplatUIWin32.cs:
30317           - Changed GetWindowPos to also provide client area size
30318           - Fixed broken prototypes for several win32 functions
30319
30320 2004-08-13 12:53  pbartok
30321
30322         * XplatUI.cs, XplatUIDriver.cs:
30323           - Changed GetWindowPos to also provide client area size
30324
30325 2004-08-13 12:52  pbartok
30326
30327         * XplatUIX11.cs:
30328           - Added generation of WM_POSCHANGED
30329           - Changed GetWindowPos to also provide client area size
30330
30331 2004-08-13 12:52  pbartok
30332
30333         * Control.cs:
30334           - Added Dispose() and destructor
30335           - Fixed resizing and bounds calculation
30336           - Fixed Layout
30337           - Added memory savings for invisible windows
30338
30339 2004-08-13 12:46  jordi
30340
30341         * TrackBar.cs: adds timer and grap window
30342
30343 2004-08-13 10:25  jackson
30344
30345         * Timer.cs: SWF Timer
30346
30347 2004-08-12 16:59  pbartok
30348
30349         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30350           - Implemented method to get current mouse position
30351
30352 2004-08-12 14:29  jordi
30353
30354         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
30355           enhancement, fix mouse problems, highli thumb, etc
30356
30357 2004-08-12 13:31  pbartok
30358
30359         * Control.cs:
30360           - Fixed Anchoring bugs
30361
30362 2004-08-12 13:01  jackson
30363
30364         * StatusBar.cs: Don't forget things
30365
30366 2004-08-12 12:54  jackson
30367
30368         * ThemeWin32Classic.cs: Handle owner draw status bars
30369
30370 2004-08-12 12:54  jackson
30371
30372         * StatusBar.cs: Implement missing properties, events, and methods.
30373           Handle mouse clicking
30374
30375 2004-08-12 10:19  jackson
30376
30377         * StatusBarPanelClickEventArgs.cs,
30378           StatusBarPanelClickEventHandler.cs: Classes for handling status
30379           bar panel click events
30380
30381 2004-08-12 10:10  jackson
30382
30383         * Control.cs: Add missing properties
30384
30385 2004-08-12 09:46  pbartok
30386
30387         * BindingsManagerBase.cs:
30388           - Name changed to BindingManagerBase.cs
30389
30390 2004-08-12 09:25  jordi
30391
30392         * ScrollableControl.cs: calls ctrlbase instead of exeception
30393
30394 2004-08-11 16:28  pbartok
30395
30396         * InputLanguageChangingEventArgs.cs:
30397           - Never check in before compiling. Fixes the last check-in
30398
30399 2004-08-11 16:26  pbartok
30400
30401         * InputLanguageChangingEventArgs.cs:
30402           - More signature fixes
30403
30404 2004-08-11 16:20  pbartok
30405
30406         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
30407           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
30408           ImageListStreamer.cs, InputLanguage.cs,
30409           InputLanguageChangedEventArgs.cs,
30410           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
30411           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
30412           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
30413           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30414           - Signature fixes
30415
30416 2004-08-11 16:16  pbartok
30417
30418         * Application.cs:
30419           - Fixed Signature
30420           - Added .Net 1.1 method
30421
30422 2004-08-11 15:25  pbartok
30423
30424         * SWF.csproj:
30425           - Fixed BindingManagerBase.cs filename
30426
30427 2004-08-11 15:22  pbartok
30428
30429         * BindingManagerBase.cs:
30430           - Was checked in with wrong filename
30431
30432 2004-08-11 14:50  pbartok
30433
30434         * SWF.csproj:
30435           - Updated
30436
30437 2004-08-11 13:41  jordi
30438
30439         * XplatUIWin32.cs: Fixes ClientRect
30440
30441 2004-08-11 13:19  pbartok
30442
30443         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30444           XplatUIX11.cs:
30445           - We had SetWindowPos and MoveWindow to set window positions and
30446             size, removed MoveWindow. We have GetWindowPos, so it made sense to
30447             keep SetWindowPos as matching counterpart
30448           - Added some X11 sanity checking
30449
30450 2004-08-11 12:59  pbartok
30451
30452         * Control.cs:
30453           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
30454             (It seems that SetBounds is just a front for SetBoundsCore and
30455              SetBoundsCore updates the underlying window system and
30456              UpdateBounds is responsible for updating the variables associated
30457              with the Control and sending the events)
30458           - Major cleanup of Size handling; we now have two sizes, client_size
30459             and bounds. Bounds defines the window with decorations, client_size
30460             without them.
30461
30462 2004-08-11 12:55  pbartok
30463
30464         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30465           - Added method to calculate difference between decorated window and
30466             raw client area
30467
30468 2004-08-11 12:54  pbartok
30469
30470         * Label.cs:
30471           - Forcing redraw on resize
30472
30473 2004-08-11 11:43  pbartok
30474
30475         * ImageList.cs:
30476           - Removed disposing of the actual images when the list is disposed
30477
30478 2004-08-11 09:13  pbartok
30479
30480         * Control.cs:
30481           - Now properly reparents windows
30482
30483 2004-08-11 08:37  pbartok
30484
30485         * Control.cs:
30486           - Duh!
30487
30488 2004-08-11 07:47  pbartok
30489
30490         * Control.cs:
30491           - Rewrote the collection stuff. Might not be as fast now, not
30492             keeping the number of children around and accessible directly, but
30493             it's more straightforward
30494
30495 2004-08-11 07:44  pbartok
30496
30497         * AccessibleObject.cs:
30498           - Fixed to match ControlCollection rewrite
30499
30500 2004-08-11 07:43  pbartok
30501
30502         * ImageList.cs:
30503           - Added missing creation of the collection list
30504
30505 2004-08-10 20:08  jackson
30506
30507         * StatusBar.cs: Get the paint message from WndProc
30508
30509 2004-08-10 19:31  jackson
30510
30511         * ThemeWin32Classic.cs: Create Brushes as little as possible
30512
30513 2004-08-10 19:20  jackson
30514
30515         * UICues.cs: Add Flags attribute
30516
30517 2004-08-10 19:19  jackson
30518
30519         * StatusBarPanel.cs: Signature cleanup
30520
30521 2004-08-10 19:10  jackson
30522
30523         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
30524           Initial implementation of status bar item drawing
30525
30526 2004-08-10 17:27  jordi
30527
30528         * TrackBar.cs: add missing methods, properties, and restructure to
30529           hide extra ones
30530
30531 2004-08-10 16:24  jackson
30532
30533         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
30534           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
30535           attribute
30536
30537 2004-08-10 13:21  jordi
30538
30539         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
30540           enhancements and standarize on win colors defaults
30541
30542 2004-08-10 12:52  jackson
30543
30544         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
30545           ThemeWin32Classic.cs: Implement DrawItem functionality
30546
30547 2004-08-10 12:47  jordi
30548
30549         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
30550
30551 2004-08-10 12:32  jordi
30552
30553         * Control.cs: throw ontextchange event
30554
30555 2004-08-10 11:43  pbartok
30556
30557         * Control.cs:
30558           - Added more to the still unfinished Dock/Anchor layout code
30559
30560 2004-08-10 11:39  pbartok
30561
30562         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
30563           - Added GetWindowPos method
30564
30565 2004-08-10 11:36  pbartok
30566
30567         * XplatUIWin32.cs:
30568           - Implemented several methods
30569
30570 2004-08-10 09:47  jackson
30571
30572         * TrackBar.cs: Allow control to handle buffering
30573
30574 2004-08-10 09:41  jackson
30575
30576         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
30577
30578 2004-08-10 09:24  jackson
30579
30580         * Label.cs, LinkLabel.cs: Let Control handle buffering.
30581
30582 2004-08-10 09:09  jackson
30583
30584         * StatusBar.cs: Let Control handle all the buffering.
30585
30586 2004-08-10 09:08  jackson
30587
30588         * Control.cs: Control will now handle the buffering code, so each
30589           control does not have to implement this.
30590
30591 2004-08-10 08:34  jackson
30592
30593         * XplatUIDriver.cs: Use default colors from the theme
30594
30595 2004-08-09 17:12  pbartok
30596
30597         * ImageList.cs:
30598           - Fixed several bugs Ravindra pointed out
30599
30600 2004-08-09 16:11  pbartok
30601
30602         * Control.cs:
30603           - Added incomplete dock layout code
30604           - Added support for mouse wheel
30605
30606 2004-08-09 16:09  pbartok
30607
30608         * XplatUIX11.cs:
30609           - Added handling for middle and right mousebutton
30610           - Added handling for mouse wheel
30611           - Added handling for key state and mouse state and position
30612           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
30613           messages
30614
30615 2004-08-09 15:40  jackson
30616
30617         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
30618           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
30619           checkin
30620
30621 2004-08-09 15:37  jackson
30622
30623         * StatusBar.cs: Initial implementation of StatusBar
30624
30625 2004-08-09 15:36  jackson
30626
30627         * ITheme.cs: Add support for drawing status bar and getting status
30628           bar item sizes
30629
30630 2004-08-09 15:35  pbartok
30631
30632         * MouseButtons.cs:
30633           - Fixed values
30634
30635 2004-08-09 15:34  jackson
30636
30637         * ThemeWin32Classic.cs: Add support for drawing status bar and get
30638           status bar item sizes
30639
30640 2004-08-09 15:21  jackson
30641
30642         * ThemeWin32Classic.cs: Use known colors for default control
30643           colours
30644
30645 2004-08-09 15:12  jackson
30646
30647         * ThemeWin32Classic.cs: Make the default font static, it is static
30648           in control so this doesn't change functionality and creating fonts
30649           is sloooooow.
30650
30651 2004-08-09 14:56  pbartok
30652
30653         * X11Structs.cs:
30654           - Added GrabMode enum
30655
30656 2004-08-09 14:55  pbartok
30657
30658         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30659           - Removed Run method, was only required for initial development
30660
30661 2004-08-09 14:51  pbartok
30662
30663         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
30664           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
30665           capture
30666
30667 2004-08-09 13:48  pbartok
30668
30669         * XplatUIX11.cs:
30670           - Fixed default sizing for child windows
30671
30672 2004-08-09 12:56  pbartok
30673
30674         * XplatUIX11.cs:
30675           - Added generation of WM_DESTROY message
30676           - Added handling of window manager induced shutdown
30677
30678 2004-08-09 11:31  jackson
30679
30680         * ThemeWin32Classic.cs: New names for control properties
30681
30682 2004-08-09 11:25  jackson
30683
30684         * Control.cs: Use new color names
30685
30686 2004-08-09 11:02  jackson
30687
30688         * XplatUI.cs: Get default window properties from the theme
30689
30690 2004-08-09 11:01  jackson
30691
30692         * ITheme.cs: The theme engine now controls default window
30693           properties
30694
30695 2004-08-09 11:00  jackson
30696
30697         * ThemeWin32Classic.cs: Add default window color properties
30698
30699 2004-08-09 10:17  jackson
30700
30701         * ThemeWin32Classic.cs: Use correct default back color
30702
30703 2004-08-09 10:05  jackson
30704
30705         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
30706           the theme now.
30707
30708 2004-08-09 09:56  jackson
30709
30710         * XplatUI.cs: Remove defaults, these are handled by the theme now.
30711
30712 2004-08-09 09:54  jackson
30713
30714         * Control.cs: Get default properties from the theme.
30715
30716 2004-08-09 09:53  jackson
30717
30718         * ITheme.cs: Themes now handle default control properties
30719
30720 2004-08-09 09:53  jackson
30721
30722         * ThemeWin32Classic.cs: Themes now handle default control
30723           properties so coloring will be consistent
30724
30725 2004-08-08 16:54  jordi
30726
30727         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
30728
30729 2004-08-08 15:08  jordi
30730
30731         * XplatUIX11.cs: fixes keyboard crash
30732
30733 2004-08-08 13:47  jordi
30734
30735         * Label.cs: add cvs header info
30736
30737 2004-08-08 12:09  jackson
30738
30739         * ThemeWin32Classic.cs: Add pen_buttonface
30740
30741 2004-08-08 11:52  jordi
30742
30743         * Label.cs, LinkLabel.cs: [no log message]
30744
30745 2004-08-08 11:34  jordi
30746
30747         * ThemeWin32Classic.cs: Use Windows Standard Colours
30748
30749 2004-08-07 17:32  jordi
30750
30751         * TrackBar.cs: throw exceptions of invalid enums values
30752
30753 2004-08-07 17:31  jordi
30754
30755         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
30756           draw method name
30757
30758 2004-08-07 16:56  jackson
30759
30760         * HorizontalAlignment.cs: Initial checkin
30761
30762 2004-08-07 13:16  jordi
30763
30764         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
30765           methods
30766
30767 2004-08-07 13:05  jordi
30768
30769         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
30770           GetSysColor defines
30771
30772 2004-08-06 18:01  pbartok
30773
30774         * ThemeWin32Classic.cs:
30775           - Fixed some rounding issues with float/int
30776
30777 2004-08-06 18:00  jackson
30778
30779         * DockStyle.cs, AnchorStyles.cs:
30780
30781                   Add flags and serializable attributes.
30782
30783 2004-08-06 17:46  pbartok
30784
30785         * XplatUIX11.cs:
30786           - Implemented GetParent
30787
30788 2004-08-06 17:18  pbartok
30789
30790         * TrackBar.cs:
30791           - Fixed some rounding issues with float/int
30792
30793 2004-08-06 17:17  pbartok
30794
30795         * X11Structs.cs, XplatUIX11.cs:
30796           - Fixed Refresh and Invalidate
30797
30798 2004-08-06 15:30  pbartok
30799
30800         * Control.cs, X11Structs.cs, XplatUIX11.cs:
30801           - Fixed recursive loop when resizing
30802           - Improved/fixed redrawing on expose messages
30803
30804 2004-08-06 09:53  jordi
30805
30806         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
30807           keyboard navigation
30808
30809 2004-08-06 08:02  pbartok
30810
30811         * X11Structs.cs, XplatUIX11.cs:
30812           - Fixed reparenting
30813           - Fixed window border creation
30814
30815 2004-08-05 15:38  pbartok
30816
30817         * XplatUIX11.cs:
30818           - Attempted fix for reparenting problems
30819
30820 2004-08-04 15:14  pbartok
30821
30822         * Control.cs:
30823           - Fixed Invalidation bug (calculated wrong client area)
30824           - Added ClientSize setter
30825
30826 2004-08-04 15:13  pbartok
30827
30828         * Form.cs:
30829           - Added AutoScale properties
30830
30831 2004-08-04 15:13  pbartok
30832
30833         * SWF.csproj:
30834           - Added latest files
30835
30836 2004-08-04 14:11  pbartok
30837
30838         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
30839           XplatUIX11.cs:
30840           - Added Invalidate handling
30841
30842 2004-08-03 17:09  jordi
30843
30844         * XplatUIDriver.cs: fixes spelling mistake
30845
30846 2004-07-27 09:53  jordi
30847
30848         * TrackBar.cs: fixes trackbar events, def classname, methods
30849           signature
30850
30851 2004-07-27 09:29  jordi
30852
30853         * ScrollBar.cs: fixes scrollbar events
30854
30855 2004-07-27 04:38  jordi
30856
30857         * Control.cs: changes to be able to run winforms samples
30858
30859 2004-07-26 11:42  jordi
30860
30861         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
30862           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
30863
30864 2004-07-26 05:41  jordi
30865
30866         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
30867           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
30868           implementation
30869
30870 2004-07-22 09:22  jordi
30871
30872         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
30873           check link overlapping, implement events, and fixes
30874
30875 2004-07-21 10:28  jordi
30876
30877         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
30878
30879 2004-07-21 10:19  jordi
30880
30881         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
30882           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
30883           LinkLabelLinkClickedEventArgs.cs,
30884           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
30885           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
30886           implementation
30887
30888 2004-07-19 13:09  jordi
30889
30890         * Control.cs, Label.cs: label control re-written: added missing
30891           functionlity, events, and properties
30892
30893 2004-07-19 10:49  jordi
30894
30895         * Control.cs: fixes SetBounds logic
30896
30897 2004-07-19 01:29  jordi
30898
30899         * Control.cs: Call RefreshWindow only if the window has created
30900
30901 2004-07-15 14:05  pbartok
30902
30903         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
30904           - Implemented ImageList and ImageList.ImageCollection classes
30905           - Added ColorDepth enumeration
30906           - Updated SWF VS.Net project
30907
30908 2004-07-15 11:06  jordi
30909
30910         * XplatUIStructs.cs: added MsgButons enum
30911
30912 2004-07-15 11:03  jordi
30913
30914         * Control.cs: added basic mouse handeling events
30915
30916 2004-07-15 03:38  jordi
30917
30918         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
30919           Vertical TrackBar control implementation
30920
30921 2004-07-13 09:33  jordi
30922
30923         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
30924
30925 2004-07-13 09:31  jordi
30926
30927         * Control.cs, Form.cs: commit: new properties and fixes form size
30928           problems
30929
30930 2004-07-09 14:13  miguel
30931
30932         * ProgressBar.cs: Spelling
30933
30934 2004-07-09 11:25  pbartok
30935
30936         * ProgressBar.cs:
30937           - Removed usage of Rectangle for drawing. Miguel pointed out it's
30938           faster
30939
30940 2004-07-09 11:17  miguel
30941
30942         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
30943
30944                 * ProgressBar.cs: Fixed spelling for `block'
30945
30946                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
30947                 style guidelines.
30948
30949                 Avoid using the += on rect.X, that exposed a bug in the compiler.
30950
30951 2004-07-08 23:21  pbartok
30952
30953         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
30954           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
30955           BaseCollection.cs, Binding.cs, BindingContext.cs,
30956           BindingMemberInfo.cs, BindingsCollection.cs,
30957           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
30958           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
30959           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
30960           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
30961           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
30962           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
30963           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
30964           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
30965           FrameStyle.cs, GiveFeedbackEventArgs.cs,
30966           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
30967           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
30968           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
30969           InputLanguageChangedEventArgs.cs,
30970           InputLanguageChangedEventHandler.cs,
30971           InputLanguageChangingEventArgs.cs,
30972           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
30973           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
30974           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
30975           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
30976           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
30977           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
30978           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
30979           QueryAccessibilityHelpEventArgs.cs,
30980           QueryAccessibilityHelpEventHandler.cs,
30981           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
30982           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
30983           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
30984           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
30985           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
30986           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
30987           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
30988           XplatUIX11.cs, lang.cs:
30989           - Initial check-in
30990
30991