2007-03-29 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
2
3         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
4         to prevent tooltips from stealing focus from the active form on Windows.
5
6 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
7
8         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
9
10         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
11
12 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
13
14         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
15         balloons.
16
17 2007-03-29  Jackson Harper  <jackson@ximian.com>
18
19         * TextControl.cs: When deleting text from non multiline textboxes,
20         we need to update the entire document, because line offsets will
21         be shifting.
22
23 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
24
25         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
26         added to theme, now we can create themes that uses diferent notify engines
27         like notification-daemon from galago project or growl for Mac OS.
28
29 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
30
31         * NotifyIcon.cs: Prevent Balloon to show in task bar.
32
33 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
34
35         * XplatUIX11.cs: Prevent system to open more than one balloon.
36
37         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
38         some compiler warning messages.
39
40 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
41
42         [Fixes #79149]
43
44         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
45
46         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
47         implemented, this methods is used by NotifyIcon.BalloonWindow class.
48
49         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
50         systems.
51
52 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
53
54         * ListViewItem.cs: Forgot to make Invalidate internal.
55
56 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
57
58         * ListView.cs: Add a InvalidateSelection method to
59         invalidate methods which are currently selected, and call
60         it when setting FullRowSelect and HideSelection, instead of
61         calling Redraw.
62
63 2007-03-28  Chris Toshok  <toshok@ximian.com>
64
65         * XplatUIX11.cs (UnmapWindow): reindent this block.
66
67         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
68         the selection_start if we're moving the selection (that is, not
69         extending it). Fixes bug #80461.
70
71 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
72
73         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
74         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
75         create private ControlCollection.
76
77 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
78
79         * Control.cs: We need to call OnVisibleChanged for our implicit
80         children as well as our normal children.  Fixes scrollbars in
81         comboboxes not showing up.
82
83 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
84
85         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
86         the check for IsHandleCreated first.  The check in CreateHandle is not
87         good enough because CreateHandle can be overriden, and the override 
88         should not be called if the handle is already created.
89
90 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
91
92         * ToolStrip.cs: Remove MonoTODO for tooltips.
93         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
94         * ToolStripContainer.cs: Add custom ControlCollection class.
95         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
96         * ToolStripDropDown.cs: Add some missing properties/methods.
97         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
98         * ToolStripItem.cs: Remove MonoTODO for tooltips.
99         * ToolStripManager.cs: Add IsShortcutDefined.
100         * ToolStripOverflow.cs: Override LayoutEngine.
101         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
102         * ToolStripSeparator.cs: Add ImageKey.
103
104 2007-03-28  Jackson Harper  <jackson@ximian.com>
105
106         * TextControl.cs: If a char delete removes a line ending, we need
107         to update the ending style.
108         - Make sure the line ending calcs get called.
109
110 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
111
112         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
113           it was making the new code not work. Fixed a typo in the new code
114           as well. Fixes #79826.
115
116 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
117
118         * XplatUIWin32.cs:
119         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
120         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
121         - SystrayBalloon method implemented.
122         [Add support for notifyicon balloon on win32, #79149]
123
124 2007-03-27  Mike Kestner  <mkestner@novell.com>
125
126         * ThemeWin32Classic.cs : update StateImageList selection to mirror
127         the ms behavior when only one image is added to the list.
128         [Fixes #81191]
129
130 2007-03-27  Jackson Harper  <jackson@ximian.com>
131
132         * TextControl.cs: Improvements to non multiline line ending
133         drawing/measuing.
134
135 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
136
137         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
138
139 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
140
141         * NotifyIcon.cs: 
142         - Balloon message handling added.
143         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
144
145         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
146         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
147         to SystrayBalloon to me like other Systray method, also a
148         handle parameter added.
149
150 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
151
152         * ListView.cs: Show scrollbars even when items.Count == 0
153         but the columns Width is bigger than the ListView.Width.
154         Also, when columns.Count == 0 set layout_wd and layout_ht
155         to the ClientRectangle values, so we don't show any scrollbar
156         in that case.
157
158 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
159
160         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
161
162 2007-03-27  Jackson Harper  <jackson@ximian.com>
163
164         * RichTextBox.cs: The RTF library decodes the text properly for us
165         now.
166
167 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
168
169         * ListView.cs: Display HeaderControl even when columns.Count == 0.
170         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
171         ListView header (HeaderControl), instead of Control.BackColor.
172
173 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
174
175         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
176         Fixes tab control issues where controls would not show up because they
177         never received their OnVisibleChanged call.
178
179 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
180
181         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
182         BalloonTipShown).
183
184 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
185
186         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
187         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
188         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
189         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
190         the handle.  Fix WindowState by using the internal variable until we are 
191         sure that we've been shown.
192         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
193         max or min.
194         [Fixes bug #81198]
195
196 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
197
198         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
199           (at least borders). Fixes #79386 on Linux (with a small difference
200           in behaviour: when trying to resize a caption-less window metacity
201           shows the sysmenu. Resizing is still possible though).
202         * XplatUIWin32.cs: When setting window styles send request an extra
203           WM_NCCALCSIZE when it's a form without title (due to no text and no
204           caption), since Win32 seems to calculate it wrong the first time we
205           get the message, though the second time things work as they should.
206         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
207           newly reparented window might show up unparented. Update
208           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
209           there's no title text. Fixes #79386.
210
211 2007-03-27  Mike Kestner  <mkestner@novell.com>
212
213         * ListBox.cs : don't perform invalidations if the handle hasn't been
214         created.  [Fixes #80753]
215
216 2007-03-27  Mike Kestner  <mkestner@novell.com>
217
218         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
219         [Fixes #80428]
220
221 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
222
223         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
224         needed to implement Balloon.
225
226 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
227
228         * ListViewItem.cs: In the constructors that take
229         an array of strings, don't use ListViewSubItemCollection.AddRange
230         method to add items, since we need to have a different behaviour (in
231         the constructors we add an item for each null string, opposed to
232         the behaviour of AddRange, which adds nothing).
233
234 2007-03-26  Andreia Gaita  <avidigal@novell.com>
235
236         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
237
238 2007-03-26  Jackson Harper  <jackson@ximian.com>
239
240         * TextControl.cs: Draw and measure line endings when in non
241         multiline mode.
242         - When searching the text, count the end of the last line as a
243         word boundary.
244
245 2007-03-26  Jackson Harper  <jackson@ximian.com>
246
247         * RichTextBox.cs: The selection_start and selection_end don't
248         really track the correct tags for the selection. So we'll manually
249         compute the correct tag here.
250
251 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
252
253         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
254           and Continuous styles. Fixes #79469.
255
256 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
257
258         * ToolStrip.cs: Implement Tooltips.
259         * ToolStripItem.cs: Create internal method for determining tooltip.
260
261 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
262
263         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
264
265 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
266
267         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
268         it prevents a problem thak keeps icon visible after application 
269         closes on win32.
270
271 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
272
273         * NotifyIcon.cs: Balloon properties and methods created.
274
275         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
276         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
277
278 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
279
280         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
281
282 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
283
284         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
285         parameter indicates which aspects were explicit/user-set.
286         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
287
288 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
289
290         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
291         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
292         SmallChange, and Value (2.0).
293         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
294
295 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
296
297         * ListView.cs: Always set item_control.Width in LayoutDetails
298         if View is Details. Setting it later in CalculateScrollBars
299         in a not-so-corner scenario (the sum of columns width is
300         not bigger than the ListView width when handle is created, and then
301         that sum gets bigger by increasing the width of the columns)
302         causes a very weird recursion path (which shouldn't be happening,
303         since header_control sets it in CalculateScrollBars too). This bug
304         appeared after Chris' fixes for handle created issues, so probably
305         it's related to some handle-creation time.
306
307 2007-03-23  Chris Toshok  <toshok@ximian.com>
308
309         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
310         case where there's an add row, just so we don't end up in a case
311         where it's not displayed (this happens when the row is partially
312         obscured).  Fixes bug #79574.
313
314 2007-03-23  Jackson Harper  <jackson@ximian.com>
315
316         * TextControl.cs:
317         * TextBoxBase.cs:
318         * RichTextBox.cs: Preserve line endings in the lines text buffer,
319         also added an enum that represents the line ending type. 
320
321 2007-03-23  Andreia Gaita  <avidigal@novell.com>
322
323         * NumericUpDown.cs: Fix logic so Text and Value properties are not
324         messed with in every method call, but only from DownButton, 
325         UpButton, UpdateEditText() and ValidateText. Fixes #80346
326
327 2007-03-23  Chris Toshok  <toshok@ximian.com>
328
329         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
330         format objects if the format spec is "".  Fixes bug #80889.
331
332 2007-03-22  Miguel de Icaza  <miguel@novell.com>
333
334         * ToolStripPanel.cs (Join): added stubs to build PDN3
335
336         * Control.cs (AutoScrollOffset): Add.
337
338         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
339         property, its only implemented for Win32, on X11 it defaults to
340         some hardcoded value.
341
342         * ToolStripItem.cs (AllowDrop): Add property
343
344 2007-03-22  Mike Kestner  <mkestner@novell.com>
345
346         * ListView.cs : in FullRowSelect Details mode, only enable box
347         selection if the user clicks over the "item" column outside of the
348         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
349
350 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
351
352         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
353           handle is not created yet.
354         * Form.cs: Select: Don't call CreateHandle if the handle is already
355           created, avoids a stack overflow on Windows when we are recreating
356           controls.
357         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
358           they are made visible, and override AfterTopMostControl to keep
359           them on top when other controls are brought to front.
360           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
361           or force_*scroll_visible is true (old implementation always shows
362           scrollbars when needed, no matter what auto_scroll was set to).
363         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
364           IsHandleCreated check.
365
366 2007-03-22  Andreia Gaita  <avidigal@novell.com>
367
368         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
369         row or col separator.
370         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
371
372 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
373
374         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
375
376 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
377
378         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
379         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
380         every time. Fixes #80410.
381
382 2007-03-22  Chris Toshok  <toshok@ximian.com>
383
384         * BindingSource.cs (AddNew): partially implement.
385
386         remove a couple of NotImplementedException's
387         to get bug #81148 closed.
388
389 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
390
391         [Fixes #80380]
392         
393         * Control.cs:
394         - UpdateCursor method added to update the screen cursor.
395         - GetAvailableCursor method added to return cursor for enabled tree,
396         it searches for cursor on control and it's parent's for enabled control.
397         - Call UpdateCursor method on setter of Cursor property.
398         - On setter of Enabled call UpdateCursor when it is false, we need to
399         change cursor to normal (or to this parent cursor) because cursor 
400         setting theres no effect to disabled controls.
401         - Some minor source changes to follow the coding style guidelines.
402
403         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
404         controls.
405
406 2007-03-22  Chris Toshok  <toshok@ximian.com>
407
408         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
409         generates.
410
411 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
412
413         * XplatUIX11.cs: Implement default locations for forms.
414         * Form.cs: Completely rework startup location for forms. Fixes #79964.
415         * Hwnd.cs: Add previous_child_startup_location (to track the current
416           startup location for any child forms of the current form) and
417           previous_main_startup_location (to track the startup location for
418           the current toplevel form).
419
420 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
421
422         * Control.cs: Don't trigger a layout if an implicit control is added
423         that isn't visible.  Also, don't notify the owner when an implicit control
424         is added.  (Owners shouldn't even know about their implicit controls.)
425
426 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
427
428         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
429         to save some re-layouts.
430
431 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
432
433         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
434         [Fixes #81203]
435
436 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
437
438         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
439         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
440
441 2007-03-21  Mike Kestner  <mkestner@novell.com>
442
443         * ListView.cs : disable selection update for non-left button clicks
444         with mods and over selected items.  [Fixes #80524]
445
446 2007-03-20  Jackson Harper  <jackson@ximian.com>
447
448         * TextControl.cs:
449         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
450         \r\r\n, \n.
451
452 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
453
454         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
455           very probably a more complicated calculation there. Update the
456           textbox' ForeColor and BackColor when the ComboBox' colors are
457           changed. Change the border change in LayoutComboBox to only affect
458           the textbox, not all the calculations there. Seems to fix most of
459           #79436.
460
461 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
462
463         * ComboBox.cs: Handle Home and End keys as well as all combinations of
464           modifiers + navigation keys as input keys, enables advanced text
465           selection in the combobox (like Shift+Left Arrow for instance).
466           ComboTextBox now overrides Focused and returns whatever
467           ComboBox.Focused returns, since it really should be focused
468           whenever the ComboBox is. Fixes #80795. Also make the border around
469           the text box one pixel bigger, as mentioned in #79436.
470
471 2007-03-20  Jackson Harper  <jackson@ximian.com>
472
473         * TreeView.cs: Don't offset the images, this was causing some
474         artifacts when expanding/collapsing with images that were the
475         exact height of the treenode.
476
477 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
478
479         * TrackBar.cs: Query the theme for the correct value when the mouse
480           moves and the thumb is pressed. 
481         * Theme.cs: Added TrackBarValueFromMousePosition
482         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
483           implementation was updating the trackbar value when drawing, now
484           the drawing methods only draw. Fixes #80900. Refactored the
485           calculations out to TrackBarValueFromMousePosition and
486           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
487           according to the mouse position whenever it wants to. Changed the
488           light coloured pen when drawing the thumb from ControlLight to
489           ControlLightLight, because the ControlLight is the same colour as
490           the background so the 3D effect is lost. 
491
492 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
493
494         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
495         defined. Fixes #80784.
496
497 2007-03-20  Marek Habersack  <mhabersack@novell.com>
498
499         * ContextMenuStrip.cs: align with the change introduced in
500         revision 74664.
501
502 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
503
504         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
505         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
506         in SetTopmost.
507
508 2007-03-19  Chris Toshok  <toshok@ximian.com>
509
510         * Control.cs (WmPaint): don't make use of the Handle property
511         after an event is emitted, as the user could have closed the
512         form/destroyed the control.  Store the Handle in a local variable
513         and make use of that.  Fixes bug #80768.
514
515 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
516
517         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
518         behavior in X11 environments.
519
520 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
521
522         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
523         because on setter of topmost we dont call SetTopmost when handle is not
524         created.
525
526 2007-03-20  Jackson Harper  <jackson@ximian.com>
527
528         * TextControl.cs: Need to use SelectionLength () not
529         selection_length, since that var is reset to -1.
530         - Draw the caret when we don't have focus.
531         * TextBox.cs: The selectall actually doesn't occur until the first
532         focus.
533         * TextBoxBase.cs: Need to update the caret position after a
534         selectall.
535         
536 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
537
538         * ListView.cs: Enable scrolling when using Tile view.
539
540 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
541
542         [Fixes #80902]
543
544         * XplatUIDriver.cs: Abstract SetOwner method created.
545
546         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
547         must be implemented and was masked as todo.
548
549         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
550         GWL_HWNDPARENT.
551
552         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
553         cheking for null owner to remove transient. The SetTopmost will be change
554         on a decond step.
555
556         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
557         SetTopmost. Now owned forms will work properly in win32 and X11.
558
559 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
560
561         * MdiWindowManager.cs: Update function name.
562         * Form.cs: After closing a form MdiParent is always null.
563         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
564           better what it should do: necessary book-keeping when the form is
565           closed, it should not close the form itself.
566
567 2007-03-19  Andreia Gaita  <avidigal@novell.com>
568
569         * ListViewItem.cs: Fix back and fore color. The subitems only
570         use their own colors if they are set, otherwise use the listview's
571         colors. Don't set default colors on constructor for subitem.
572         Fixes #79315.
573
574 2007-03-19  Mike Kestner  <mkestner@novell.com>
575
576         * ListView.cs : make box selection for Details views with 
577         FullRowSelect conform to MS behavior when clicking in the "item" 
578         column and clicking outside the defined columns.
579         [Fixes case 5-6 of #80374]
580
581 2007-03-19  Chris Toshok  <toshok@ximian.com>
582
583         * ScrollableControl.cs: create the controls from within the ctor,
584         but don't actually add them until our handle is created.  this
585         fixes a NRE possibility jpobst found (if you override OnLayout in
586         a subclass, it's called before your ctor).  Also, add a
587         IsHandleCreated guard to UpdateSizeGripVisibility as well.
588
589 2007-03-19  Jackson Harper  <jackson@ximian.com>
590
591         * TextBox.cs: Reduce the amount of invalidation we do.
592         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
593         some of them are true by default on MS.
594         - Add some functions to reduce the amount of invalidates we do.
595         * TextControl.cs: Less invalidation.
596
597 2007-03-19  Chris Toshok  <toshok@ximian.com>
598
599         [ Fixes #81773, and *seems* to fix #81553 as well ]
600
601         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
602         AccumulateDestroyedHandles.  We need to do it *after* we send
603         WM_DESTROY, as the user's code can access Control.Handle in
604         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
605         move the WM_DESTROY/zombie handling to before the call to
606         XDestroyWindow.  For some reason without this ordering
607         FormTest.RecreateHandle hangs.  This ordering is semantically
608         equivalent, however, as XDestroyWindow is async anyway.
609
610 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
611
612         * RichTextBox.cs: Reset backcolor_set after setting default.
613
614 2007-03-19  Chris Toshok  <toshok@ximian.com>
615
616         * ScrollableControl.cs: the scroll position should not effect the
617         canvas size.  commit patch from georgegiolfan@yahoo.com, which
618         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
619         
620 2007-03-19  Chris Toshok  <toshok@ximian.com>
621
622         * ScrollableControl.cs: clean this up a bit.  create the
623         scrollbars in the ctor and just show/hide them as needed.  Also,
624         make hscroll_visible/vscroll_visible internal to Recalculate, and
625         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
626         everywhere else.  This seems to fix the scrollbars appearing
627         beneath the content for me (i have *no* idea why that is,
628         however.)
629
630 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
631
632         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
633         some redundacy for stuff in Anchor and Dock that base will take care of.
634         [Fixes #80762]
635
636 2007-03-19  Mike Kestner  <mkestner@novell.com>
637
638         * ListView.cs : make box selection for Details views without 
639         FullRowSelect dependent on the text bounds, not item bounds.
640         * ListViewItem.cs : add an internal property to obtain the TextBounds
641         in Details view.  [Fixes case 1-4 of #80374]
642
643 2007-03-19  Andreia Gaita  <avidigal@novell.com>
644
645         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
646         we're < 2.0. #78448 && #80316
647
648 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
649
650         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
651         have the same style available as the previously selected one.  Also,
652         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
653
654 2007-03-19  Jackson Harper  <jackson@ximian.com>
655
656         * TextControl.cs: Add an alignment property that all new lines
657         will be given.
658         - Make sure to use the align shift when calculating the line's X
659         position.
660         * TextBox.cs: Set the alignment on the document as well as on all
661         the document lines.
662
663 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
664
665         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
666           throw if setting the parent of an mdichild that already has an
667           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
668           AssemblyProductAttribute in the assembly, use the type's namespace (as
669           MS seems to do). CreateControl: don't create the handle if the control
670           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
671           create handle if the control is not a form. Change FocusInternal to
672           virtual so that it can be overriden by Form.
673         * TextBox.cs: Update call to FocusInternal.
674         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
675           form is not a toplevel form when it's a mdi child, so update is_toplevel
676           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
677           hasn't been created. Show (IWin32Window): Don't allow this overload for
678           toplevel windows. CenterToParent/CenterToScreen/Select: create the
679           handle as MS does. SetVisibleCore: if called on a MdiChild and the
680           parent isn't visible yet, save the visibility and restore it when the
681           parent is made visible.
682         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
683           methods, since the visibility of the scrollbars can be changed from
684           several places, not only from AutoScroll.
685           [Fixes #81179]
686
687 2007-03-19  Jackson Harper  <jackson@ximian.com>
688
689         * RichTextBox.cs: Enable shortcuts by default.
690         * TextBoxBase.cs: Add conditional shortcuts.  
691
692 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
693
694         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
695
696 2007-03-19  Chris Toshok  <toshok@ximian.com>
697
698         [ Fixes bug #80604]
699         
700         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
701         swallow the message we're waiting on, instead of delivering it, as
702         this is only used for the WM_SHOWWINDOW raised from
703         MapWindow/UnmapWindow, and the message needs to be generated
704         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
705         before doing the Map/Unmap.  Also make sure that the Hwnd is still
706         alive after the message has been handled.
707
708         *before* the window is shown.
709
710         * Control.cs (CreateControl): guard a few more things inside the
711         if (!is_created) block, as we might end up being called again -
712         yay .net.
713         (WmShowWindow): call CreateControl if we're showing the control.
714
715 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
716
717         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
718           controls without a handle if they have any parent with a handle. In
719           Dispose add a check whether the handle is created or not before
720           calling BeginInvoke, this removes the need of the extra disposing
721           parameter (which was bogus anyway since it didn't prevent the
722           invoke from happening, it only skipped the check for an existing
723           handle, meaning that the invoke would call on an inexistent
724           handle).
725
726 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
727
728         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
729         appears in taskbar.
730
731 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
732
733         * MessageBox.cs:
734         - Fixed a problem that dont show help button for messages with 3 buttons.
735         - Refactory button size and position calculations, now dont use fixed 
736         values, also fixed button sizes (#80043) and form's border space.
737         - AddButton method created, now all other AddButton methods call this one.
738         - Some other source code cosmetic changes.
739
740 2007-03-18  Jackson Harper  <jackson@ximian.com>
741
742         * RichTextBox.cs: Don't do this all fonts must match check if
743         there is only one char selected.
744
745 2007-03-18  Jackson Harper  <jackson@ximian.com>
746
747         * TreeView.cs: ScrollWindow works properly now, so we don't need
748         to screw around with the scroll area.  This fixes some artifacts
749         when expanding and collapsing.
750
751 2007-03-18  Jackson Harper  <jackson@ximian.com>
752
753         * TextBoxBase.cs: Allow updating the selection position when the
754         cursor is outside the textarea, but we have a capture.
755         * TextControl.cs: A special case for when the cursor is outside
756         the bounds of the TB.
757         
758 2007-03-18  Jackson Harper  <jackson@ximian.com>
759
760         * TextBoxBase.cs: Remove image pasting code for now.  There is no
761         way to get an image on the clipboard right now anyways.
762         * TextControl.cs:
763         * RichTextBox.cs: Use the new RTF Picture class for pictures.
764
765 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
766
767         * MessageBox.cs:
768         - Set window properties in constructor intead of on CreateParams.
769         - Remove topmost from Window ExStyle.
770         - Set ShowInTaskbar to false.
771         - Set form border to FixedDialog.
772         - Some cosmetic changes and remove unneeded comments.
773         - It fixes itens 2,3 and 4 of bug #80043.
774
775 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
776
777         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
778         none was explicitly set. Fixes part of bug #79949.
779
780 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
781
782         * ToolStripComboBox.cs: Add AutoComplete*.
783
784 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
785
786         * ToolStripComboBox.cs: Add FlatStyle.
787
788 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
789
790         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
791         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
792
793 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
794
795         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
796           CheckBox.cs, RadioButton.cs, BindingSource.cs,
797           DataGridColumnStyle.cs: Remove warnings.
798
799 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
800
801         * Menu.cs: MergeMenu: Check menu argument for null before looping over
802           it.
803         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
804           visibility of mdi child forms. FormSizeChangedHandler: update the
805           maximized size if size has changed while maximized.
806         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
807           creating the handle.
808         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
809           avoid creating the handle if not created.
810         * XplatUI.cs: Update debug output.
811         * XplatUIStructs.cs: Added ToString's for a couple of structs.
812
813 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
814
815         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
816         ProcessCmdKey().
817         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
818         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
819         Implement keyboard shortcuts.
820
821 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
822
823         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
824         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
825         ColorDialog and all derived classes.
826
827 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
828
829         [ Fixes bug #79828 ]
830
831         * ToolBar.cs:
832         - Rename ToolBarButtonInfor to ToolBarItem.
833         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
834         - Maintain an array of ToolBarItem, used instead of ToolBarButton
835         collection to be able add same button more than one time on a toolbar.
836         - Refactory all properties and methods to use ToolBarItem. 
837
838         * ToolBarButton.cs: 
839         - Remove all propeties and methods that is now in ToolBarItem.
840         - Rectangle propery now gets the rectangle from first ToolBarItem to
841         mimic win32 behavior.
842         - Size calculation and layout methods also removed.
843
844         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
845         ToolBarItem instead of ToolBarButton to right drawing buttons when
846         same button/separator was added more than one time to ToolBar.
847
848         * ThemeNice.cs: Same as above. 
849
850 2007-03-15  Andreia Gaita  <avidigal@novell.com>
851
852         * XplatUIX11.cs: Fire extra MouseMove events right after
853         MouseDown and MouseUp, emulating win32's <censored> behaviour
854         for apps that rely on it.
855
856 2007-03-15  Jackson Harper  <jackson@ximian.com>
857
858         * TextControl.cs:
859         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
860         it is drawn on the controls client window and there is no NC
861         area.
862         - Set the background color to gray on 2.0 when we are readonly.
863
864 2007-03-15  Chris Toshok  <toshok@ximian.com>
865
866         [ Fixes bug #81144 ]
867         
868         * XplatUIX11.cs: implement VirtualScreen independently of
869         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
870         property.
871
872 2007-03-15  Chris Toshok  <toshok@ximian.com>
873
874         * Hwnd.cs: add an internal field for the cached_window_state.
875
876         * XplatUIX11.cs: cache the window state, invalidating the cache
877         (and thus re-querying the X server) only when we see an update to
878         the _NET_WM_STATE property.
879
880 2007-03-15  Chris Toshok  <toshok@ximian.com>
881
882         * BindingSource.cs: get a lot of the unit tests working.
883
884 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
885
886         * Control.cs: Modify UpdateStyles to store distances when bounds >=
887         0 instead of just bounds > 0.  [Fixes bug #80912]
888
889 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
890
891         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
892         and methods.
893
894 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
895         
896         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
897         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
898         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
899         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
900
901 2007-03-15  Chris Toshok  <toshok@ximian.com>
902
903         [ Fixes #81101 ]
904         
905         * Control.cs: add Ivan's fix for 81101, with a slight modification
906         - you can set control.Target to null.
907
908 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
909
910         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
911         HideDropDown, use Hide instead to prevent an NRE.
912         [Fixes bug #81147]
913
914 2007-03-14  Jackson Harper  <jackson@ximian.com>
915
916         * TextBoxBase.cs: Mess with the creation stuff a little. We need
917         to calculate the document before the handle is created, in some
918         cases. (Actually just one case).
919
920 2007-03-14  Jackson Harper  <jackson@ximian.com>
921
922         * TextBoxBase.cs: Need to display the caret after letting the base
923         wndproc handle the focus methods, because the caret display
924         methods check the focus state.
925         - Try to display the caret after updating it's position with SelectWord.
926         - Don't need to do an immediate update on this recalc, since there
927         will be an invalidate anyways.
928
929 2007-03-14  Jackson Harper  <jackson@ximian.com>
930
931         * TreeView.cs: Some workarounds so that we can match event order a
932         little better.
933
934 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
935
936         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
937         #80803. Avoid NullReferenceException when Control does not have
938         parent. Fixed different blinkstyle issues. Only subscribe to Tick
939         event a single time. Only draw error icon when control is created and
940         visible. Fixes failing unit tests.
941
942 2007-03-14  Andreia Gaita  <avidigal@novell.com>
943
944         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
945         Selecting events. Fire Leave and Enter events when changing tabs.
946
947 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
948
949         * TreeView.cs: Add TreeViewNodeSorter.
950         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
951
952 2007-03-14  Chris Toshok  <toshok@ximian.com>
953
954         * Form.cs: go ahead and remove the RecreateHandles that jpobst
955         removed earlier and I had him add back it.  It turns out metacity
956         *does* in fact handle the MOTIF_WM_HINTS property changing, it
957         just doesn't redraw the window titlebar until you resize the
958         window.  This also means we aren't recreating the entire window
959         hierarchy on X when you change this property.  And it looks better
960         on windows, too.
961
962 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
963
964         * ListViewItem.cs:
965         * ListView.cs: Collecting selection information
966         is now done in SelectedIndexCollection rather than in
967         SelectedListViewItemCollection. This is done so we can
968         have the selection information code in one single place
969         (virtual mode selection information entirely depends on
970         SelectedIndexCollection).
971
972 2007-03-13  Miguel de Icaza  <miguel@novell.com>
973
974         * ErrorProvider.cs: Add stubs for ISupportInitialize
975
976 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
977
978         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
979         in the right order with the right values, from the Checked property, 
980         just as MS does (instead of triggering them from ListView).
981
982         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
983
984 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
985
986         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
987         the correct handler in OnItemCheck method (ItemCheckEventHandler 
988         instead of EventHandler). This used to throw an InvalidCastException.
989
990 2007-03-13  Jackson Harper  <jackson@ximian.com>
991
992         * TextBoxBase.cs: Calculate the document before the handle is
993         created, so there isn't an extra invalidate called.
994
995 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
996
997         * Form.cs: Don't set owner in ShowDialog until we are sure
998         that we aren't going to throw an exception.  [Fixes bug #80773]
999
1000 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
1001
1002         * TreeView.cs: Make it compile.
1003
1004 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1005
1006         * Control.cs: Another place we don't call SizeFromClientSize.
1007         * Form.cs: Another place we don't call SizeFromClientSize.
1008         [Fixes bug #81125]
1009
1010 2007-03-12  Jackson Harper  <jackson@ximian.com>
1011
1012         * TreeView.cs: Basically emulating some strangness here with
1013         exanding nodes and setting node positions when windows aren't
1014         created.
1015         - Also attempting to walk the node tree less than previously, and
1016         just use visible order calculations for determining offsets.
1017         - oops made scrolling backwards.
1018         * TreeNode.cs: We need to start nodes with a zero visible order,
1019         because the order calcs are based on the first nodes order.
1020
1021 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1022
1023         * Form.cs: Don't exit the program if RecreateHandle is called on
1024         the main form.
1025
1026 2007-03-12  Chris Toshok  <toshok@ximian.com>
1027
1028         * XEventQueue.cs: remove the use of PostQuitState.
1029
1030         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
1031         WM_QUIT message in GetMessage, return false (and if we're in the
1032         nested WaitForHwndMessage, repost the WM_QUIT message).
1033
1034 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1035
1036         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
1037         or the MaximizeBox properties.  [Part of bug #80640]
1038
1039 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
1040
1041         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
1042         no links.
1043
1044 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1045
1046         * ToolStripItem.cs: Fix some tests I broke by checking Visible
1047         instead of visible.
1048
1049 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
1050
1051         * FileDialog.cs: Use text of File name combobox to determine what
1052         files the user selected. Added tokenizer to parse the file names.
1053         Fixes bug #81123.
1054
1055 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
1056
1057         * Control.cs: We can't call SizeFromClientSize in the constructor,
1058         but we still need to do the same work, so make an internal version.
1059         [Fixes bug #80621]
1060
1061 2007-03-12  Jackson Harper  <jackson@ximian.com>
1062
1063         * TreeView.cs:
1064         * TreeNode.cs:
1065         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
1066         IsExpanded.
1067
1068 2007-03-12  Jackson Harper  <jackson@ximian.com>
1069
1070         * TextBoxBase.cs: Now that the handles are being created a little
1071         later, we need to make sure that the document is recalculated when
1072         the handle is created.
1073
1074 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
1075
1076         * Theme.cs: GetLinkFont abstract method added.
1077         
1078         * LinkLabel.cs: 
1079         - Remove CalcTrimRectangle, no longer needed.
1080         - Factor also remove, position issues must be fixed in libgdiplus.
1081         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
1082         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
1083         care about font used to draw links.
1084         - Set TabStop to true when control is "Selectable", control is selectable
1085         when have one or more links. Fixes #80501 (test case is also added).
1086         - Set the LinkArea values after links change, LinkArea values must be
1087         based in first link position and size, a test case was created.
1088         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
1089         the attribute must be true LinkArea.Length > 0. The same was applied to
1090         TabStop.
1091         
1092         * ThemeWin32Classic.cs: 
1093         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
1094         in draw method.
1095         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
1096         color change.
1097         - Draw focus rectangle for every parts focused, including parts that 
1098         is on another line, its because regions returns various rectangles
1099         and not only one. Needed to mimic W32 look.
1100         - Uses Graphics.Clip to delimite region painted, it mean that now 
1101         complete text is passed to DrawString, with this we solve layout
1102         issues without create another text renderer.
1103         - Uses Region.Intersect to fix some flickers problems, now only needed
1104         parts will redrawed.
1105         - This changes fixes #79614 and some other unreported issues, on Linux 
1106         some layout problems still remain, the problem is under 
1107         MeasureCharacterRanges but it is an libgdiplus bug.
1108
1109 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
1110
1111         * TextBox.cs: Set for foreground color.
1112         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
1113         this is already done in Control.
1114
1115 2007-03-10  Jackson Harper  <jackson@ximian.com>
1116
1117         * TextBox.cs: Set the background color, but reset the
1118         backcolor_set flag which is just for the user setting the
1119         background color.
1120
1121 2007-03-09  Chris Toshok  <toshok@ximian.com>
1122
1123         * Control.cs: really remove the call to XplatUI.SetVisible from
1124         CreateHandle(), like I said I did when I merged the branch.
1125
1126         * BindingSource.cs: implement some more of this stuff.
1127
1128 2007-03-09  Jackson Harper  <jackson@ximian.com>
1129
1130         * TextBox.cs: Don't explicitly set our background colors.
1131         * TextControl.cs:
1132         * TextBoxBase.cs: Draw readonly text.
1133         - Need to invalidate when backcolor or readonly are changed.
1134         
1135 2007-03-09  Jackson Harper  <jackson@ximian.com>
1136
1137         * TextBoxBase.cs: Don't set the forecolor until the handle is
1138         created.
1139         - Do not raise OnPaint, and removed some old debug code.
1140
1141 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
1142
1143         * ScrollableControl.cs: Fix mouse wheel scrolling.
1144
1145 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
1146
1147         * Control.cs: Wire up MouseDoubleClick event.
1148
1149 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
1150
1151         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
1152         top or bottom.
1153         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
1154         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
1155         item is added.  This logic was moved to ToolStrip.OnItemAdded.
1156         [Fixes bug #81090]
1157
1158 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1159
1160         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
1161
1162 2007-03-08  Jackson Harper  <jackson@ximian.com>
1163
1164         * TreeView.cs: Show the correct image for selected node (this used
1165         to work, not sure how the code got deleted). Also implemented 2.0 feature
1166         SelectedImageKey.
1167
1168 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1169
1170         * ListView.cs:
1171         * ListViewItem.cs: Cache index in items when retrieving them
1172         in VirtualMode.
1173
1174 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1175
1176         * ToolStripItem.cs: Don't return the explicit_size if we are using 
1177         AutoSize.  Fixes invalidation issue when user has explicitly set a
1178         size and has AutoSize = true.
1179
1180 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1181
1182         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
1183
1184 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1185
1186         * DataGridView.cs: Remove event handler from DataView when a
1187         DataTable is used as DataSource.
1188
1189 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
1190
1191         * Control.cs: Create internal setter for client_size to allow it to be
1192         set without triggering resizing code.
1193         * Form.cs: Calculate client_size in constructor, only change client_size
1194         in FormBorderStyle property if Handle has been created.
1195         [Fixes #80574, #80791]
1196
1197 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
1198
1199         * SystemInformation.cs: Add TerminalServerSession.
1200
1201 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1202
1203         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
1204         TreeView code.
1205
1206 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1207
1208         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
1209         Handle before we were supposed to.  Now checks ActivateOnShow property
1210         in Control.
1211         * Control.cs: Add internal ActivateOnShow property.
1212         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
1213         for ActivateOnShow.
1214         * Hwnd.cs Remove no longer needed no_activate field.
1215
1216 2007-03-07  Jackson Harper  <jackson@ximian.com>
1217
1218         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
1219         2.0 properties
1220         * DrawTreeNodeEventHandler.cs: Add
1221         * DrawTreeNodeEventArgs.cs: Correct default value.
1222         
1223 2007-03-07  Chris Toshok  <toshok@ximian.com>
1224
1225         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
1226         to be called before NativeWindow.WndProc.  Put the HwndCreating
1227         magic there to hook up our Hwnd's to handles.
1228
1229 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
1230
1231         * DataGridView.cs: Comment out debug code.
1232
1233 2007-03-07  Chris Toshok  <toshok@ximian.com>
1234
1235         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
1236         to make the rest of the world happy]
1237
1238         * Control.cs (CreateHandle): there's no need to call
1239         XplatUI.SetVisible here, it's effectively done by
1240         XplatUI.CreateWindow on X now, and always was on windows.
1241
1242         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
1243         shortcircuit out of the loop if we have a message loop running on
1244         this thread.
1245
1246         [Changelog from merge]
1247
1248         2007-03-05  Chris Toshok  <toshok@ximian.com>
1249
1250                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
1251                 causes handle creation.
1252
1253         2007-02-28  Chris Toshok  <toshok@ximian.com>
1254
1255                 * ApplicationContext.cs: Add a flag to make sure we only raise the
1256                 ThreadExit event once (ExitThreadCore can be indirectly called
1257                 from a few places.)  I don't like the additional flag, but it
1258                 makes the event ordering/count correct.
1259
1260                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
1261                 without locking the collection.  An enumerator doesn't give us any
1262                 protection from modification anyway.  Lock the thread hash and
1263                 replace the complicated enumerator loop with a foreach.
1264                 (Application.CloseForms): make internal so it can be called from
1265                 ApplicationContext.  This should probably be moved to MWFThread.
1266                 (Application.ExitThread): don't call MWFThread.Current.Exit()
1267                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
1268                 when the runloop exits (in response to WM_QUIT.)
1269                 (Application.RunLoop): add a comment (and check) for
1270                 context.MainForm being null after setting context.MainForm.Visible
1271                 = true.  This is because you're perfectly free to dispose of a
1272                 form in VisibilityChanged.  Chalk this up to another case where we
1273                 need to synchronously generate WM_ACTIVATE from Control.Show.
1274                 Also, add handling for WM_QUIT here so we'll exit the loop.
1275                 
1276                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
1277                 fact that we don't wait if we're only unmapping the whole_window
1278                 makes me a bit nervous, but it doesn't seem to cause any problems
1279                 yet.
1280
1281                 also, add a comment about the stupid, broken and wrong resetting
1282                 of PostQuitState to false in GetMessage().
1283
1284                 In PostQuitMessage, we need to add a WM_QUIT message to the
1285                 thread's queue.  We use the FosterParent to get the right
1286                 handle/hwnd/queue.
1287
1288                 Lastly, in SetVisible, we need to unmap both windows, since the
1289                 waiting only happens when we're unmapping the client window.  So
1290                 now, the *only* time we unmap just the whole_window is in the hack
1291                 for resizing a control to 0,0.
1292                 
1293         2007-02-21  Chris Toshok  <toshok@ximian.com>
1294
1295                 * Application.cs (CloseForms): rewrite this so that we don't
1296                 modify the list while we're traversing it.
1297
1298         2007-02-20  Chris Toshok  <toshok@ximian.com>
1299
1300                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
1301                 of OnHandleCreated.
1302                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
1303                 handle is created.  otherwise we'll create it here.
1304                 (VerticalScrollEvent): same here.
1305
1306                 * Application.cs (CloseForms): call Form.Dispose, don't post
1307                 WM_CLOSE_INTERNAL.
1308
1309                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
1310                 here. Application should Dispose() of the Form's.
1311
1312                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
1313                 WM_DESTROY as well.
1314                 (MapWindow,UnmapWindow): only actually do the waiting for
1315                 SHOWWINDOW if the control we're dealing with is a Form.
1316                 (CreateWindow): if the control isn't a form, SendMessage
1317                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
1318
1319                 * Control.cs (SetVisibleCore): always use is_visible here, not
1320                 value.  If we use value, we can end up re-setting something
1321                 visible if, for instance, you do Control.Hide() in a delegate
1322                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
1323
1324         2007-02-20  Chris Toshok  <toshok@ximian.com>
1325
1326                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
1327                 the message we need.  PeekMessage returning false should not be a
1328                 condition under which we exit the loop.
1329
1330         2007-02-15  Chris Toshok  <toshok@ximian.com>
1331
1332                 * Control.cs (Refresh): only refresh if we've got a handle and are
1333                 visible.
1334                 (CreateAccessibilityInstance): CreateControl() here.
1335                 (UpdateChildrenZOrder): complicate the code loop even more by
1336                 taking into account controls that haven't had their handle
1337                 created, and those that aren't visible.  But on the flip side,
1338                 simplify the code by splitting it into two loops.  one which
1339                 builds up the list of child controls we're interested in, and the
1340                 other that sets the z order of those children.
1341
1342         2007-02-14  Chris Toshok  <toshok@ximian.com>
1343
1344                 * Control.cs: Control.AccessibilityObject causes the control to be
1345                 created, not just the handle.
1346
1347         2007-02-14  Chris Toshok  <toshok@ximian.com>
1348
1349                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
1350                 problem on X where a window might have its handle created (and be
1351                 visible) while the window is unmapped.  calling XConfigureWindow
1352                 on an unmapped window is bad, and generates X errors.
1353
1354         2007-02-13  Chris Toshok  <toshok@ximian.com>
1355
1356                 * Control.cs (CreateHandle): don't loop over our children setting
1357                 their parent here.  do it when in WndProc when we're shown.
1358                 (UpdateChildrenZOrder): make this internal so we can call it from
1359                 ScrollableControl.
1360                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
1361                 creating its handle.  Also, remove the calls to PerformLayout from
1362                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
1363                 OnVisibleChanged only seems to be called directly here for the
1364                 toplevel control.  It's propagated down the window hierarchy by
1365                 calls to child.OnParentVisibleChanged.
1366                 (OnVisibleChanged): don't do layout here - it's done (oddly
1367                 enough, according to a glance at stack traces on ms.net..) in
1368                 ScrollableControl.
1369                 
1370                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
1371                 z order of our children before calling PerformLayout.
1372
1373         2007-02-12  Chris Toshok  <toshok@ximian.com>
1374
1375                 [big change, fixes #80020]
1376                 
1377                 * AccessibleObject.cs: we need to make owner internal again to fix
1378                 some of ControlAccessibleObject.
1379
1380                 * Control.cs: lots of changes here.  add support for WM_CREATE,
1381                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
1382                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
1383                 we create child controls.  leave the MonoTODO's for the
1384                 accessibility calls, but fix the exceptions so the tests pass.
1385
1386                 Add the InvalidOperationExceptions to Invoke methods, and remove a
1387                 couple of InvokeInternal methods we aren't using.
1388                 
1389                 Also, add a couple of CreateHandle calls in places where we know
1390                 the handles are being created but our code doesn't reference
1391                 .Handle.
1392
1393                 Make SetVisibleCore call OnVisibleChange if the handle isn't
1394                 created.  If the handle is created, we rely on XplatUI.SetVisible
1395                 generating the event synchronously.
1396                 
1397                 Lastly, make sure we don't use this.Handle inside CreateHandle,
1398                 because we can call back into client (and that code can dispose of
1399                 the control).
1400
1401                 * XplatUIStructs.cs: misc/cleanup.
1402
1403                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
1404                 although we don't populate the wParam properly.
1405                 (CreateWindow): generate WM_CREATE.
1406                 (MapWindow,UnmapWindow): make these calls synchronous, at great
1407                 performance expense (particularly in the unmap case), to match
1408                 win32 behavior.
1409
1410                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
1411                 to call it.
1412                 (set_MdiParent): don't recreate the handle unless it's been
1413                 created already.
1414                 
1415                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
1416                 it's created.
1417
1418                 * NativeWindow.cs: this is probably the weirdest part of the
1419                 patch.  We need a way to link up the window being created to the
1420                 WM_CREATE message.  Since we can only be creating one window at a
1421                 time on a given thread, we keep track of a per-thread reference so
1422                 we can dispatch it properly.  We also need to keep track of the
1423                 Hwnd currently being created so that the win32 backend doesn't
1424                 have problems.
1425                 
1426                 * XplatUIWin32.cs: a similar change to the one we made in
1427                 NativeWindow.cs.
1428
1429 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1430
1431         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
1432         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
1433         to draw the menu shortcut string.
1434
1435 2007-03-07  Jackson Harper  <jackson@ximian.com>
1436
1437         * TreeNode.cs: Add the 2.0 collapse method.
1438
1439 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1440
1441         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
1442
1443 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1444
1445         * DataGridView.cs: Change DataSource will clear column and row
1446         lists. Call Invalidate() to reflect DataSource change.
1447
1448 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1449
1450         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
1451         and a new row is added to it.
1452
1453 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1454
1455         * DataGridView.cs: Add columns when DataSource is en empty list but
1456         is a System.Data.DataView (from a System.Data.DataTable).
1457
1458 2007-03-06  Andreia Gaita  <avidigal@novell.com>
1459
1460         * Label.cs: Implement AutoEllipsis (2.0)
1461
1462 2007-03-06  Jackson Harper  <jackson@ximian.com>
1463
1464         * TreeView.cs: Implement 2.0 TopNode setter property.
1465         - Use a local var instead of the skipped_nodes field for computing
1466         how many nodes to skip.  Otherwise we won't scroll because the
1467         valuechanged handler checks if skipped_nodes is equal to the new
1468         value.
1469         - Implement 2.0 Sort method.
1470         - Add useless 2.0 DoubleBuffer property
1471         - Implement 2.0 LineColors property.  Lets you change the color of
1472         the lines in the tree. Terribly useful for creating non cohesive
1473         desktops.
1474         - Implement 2.0 image key feature.
1475
1476 2007-03-06  Jackson Harper  <jackson@ximian.com>
1477
1478         * TreeView.cs: We can't get the bounds of the nodes before raising
1479         the AfterSelect event, because that event could change the node's
1480         bounds (scrolling, font change, etc).
1481
1482 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1483
1484         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
1485         * Form.cs: Don't recreate handle when creating FormWindowManager, just
1486           update window styles. In CreateParams us VisibleInternal instead of
1487           VIsible to get the actual visible flag set for this form.
1488         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
1489           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
1490           handle the case when the form is already maximized, in which case
1491           it should be restored. Fixes #81043.
1492
1493 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1494
1495         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
1496
1497 2007-03-05  Jackson Harper  <jackson@ximian.com>
1498
1499         * TreeViewHitTestInfo.cs: implement.
1500
1501 2007-03-05  Jackson Harper  <jackson@ximian.com>
1502
1503         * InternalWindowManager.cs: class status fix.
1504
1505 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1506
1507         * InternalWindowManager.cs: All windows that have a parent
1508         are confined to their parent when they're being moved.
1509         Fixes #80822.
1510
1511 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
1512
1513         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
1514         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
1515
1516 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1517
1518         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
1519           buttons invisible before deciding which ones should be visible
1520           (fixes minimize/maximize buttons showing up in toolwindows). Remove
1521           an unused variable.
1522         * InternalWindowManager.cs: Remove warning.
1523
1524 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1525
1526         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
1527         to throw an InvalidOperationException is virtual mode is being used.
1528
1529 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1530
1531         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
1532         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
1533         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
1534         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1535         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
1536         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
1537
1538 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1539
1540         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
1541           driver.KeyboardDelay from XplatUI.KeyboardDelay 
1542         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
1543           (patch by Sergey Volk)
1544
1545 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1546
1547         * ToolWindowManager.cs: Added, contains logic for
1548           tool windows.
1549         * CreateParams.cs: Add a few helper methods and an
1550           internal variable to know which control the CreateParams belongs
1551           to.
1552         * Control.cs: Call Form.ChangingParent when the
1553           parent is about to be changed.
1554         * XplatUIX11.cs: DeriveStyles (): Set
1555           caption_height for all windows that have captions and are children.
1556           Update to use ToolWindowManager instead of InternalWindowManager
1557           for ToolWindows.
1558         * XplatUIWin32.cs: Set fake window styles for all
1559           windows that have window managers.
1560         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
1561           now duplicated for mdi windows when they are
1562           maximized, first for the buttons the window itself has, then for
1563           the buttons that appear in the menu bar. Makes things a little
1564           easier). Updated UpdateWindowDecorations, SetWindowState and the
1565           mouse eventhandlers accordingly.
1566         * Form.cs: Add ChangingParent (), contains the
1567           logic of what should happen when the parent changes. In MdiParent
1568           don't set things that ChangingParent () is doing. When handling
1569           WM_CLOSE, we can close the form if there are any other modal forms
1570           and the current form is a descendent of the modal form.
1571         * InternalWindowManager.cs: A lot of refactoring,
1572           the title buttons are now extracted to a separate container class
1573           that takes care of all button code (clicks, tooltips, etc). Moved
1574           Iconic|Maximized|Normal Bounds properties to this class from
1575           MdiWindowManager, so that the window state logic can succeed for
1576           other than mdi wm's. Implemented general window state change logic.
1577           Moved CreateButtons to ThemeWin32Classic, since the theme might
1578           override which buttons are available when as well as the exact
1579           location.
1580         * FormWindowManager.cs: Added, contains logic for
1581           normal forms.
1582         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
1583           which buttons go where (and if they are at all visible). 
1584           Removed special handling of maximized windows, since they aren't special. 
1585           In DrawManagedWindowDecorations don't try to draw the text if it is
1586           empty.
1587         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
1588           use whatever the wm gives us.
1589
1590 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1591
1592         * ButtonBase.cs: Add 2.0 properties.
1593         * Button.cs: Override Draw for 2.0.
1594         * Control.cs: Add Entered and Selected properties.
1595         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
1596         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
1597         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
1598         buttons.
1599         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
1600
1601 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1602
1603         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
1604
1605 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1606
1607         * XplatUIWin32.cs: Register a new class with Windows each time we get
1608         a new ClassStyle.  [Fixes bugs #79432, #80817]
1609         * Controls.cs: Set the correct ClassStyle in CreateParams.
1610         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
1611
1612 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
1613
1614         * ListView.cs: Add fireEvent argument to ReorderColumn since the
1615         ColumnReordered event must not be signaled when modifying DisplayIndex
1616         of a ColumnHeader. Added internal ReorderColumns method which takes
1617         care of drawing, and updating the internal DisplayIndex of the
1618         ColumnHeader. Added AddColumn method which is invoked from
1619         ColumnHeaderCollection when adding or inserting columns, and which
1620         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
1621         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
1622         Recalculated dispay indices after removing a ColumnHeader.
1623         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
1624         match MS. Allows last display index to be returned after ListView
1625         is disposed. Update actual location of ColumnHeader when DisplayIndex
1626         is modified.
1627
1628 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
1629
1630         * LinkLabel.cs: Improve CalcTrimRectangle.
1631         
1632         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
1633
1634 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1635
1636         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
1637         get rectangle as a result value.
1638
1639 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1640
1641         * LinkLabel.cs: Theres some diferences between rectangle return from 
1642         MeasureCharacterRanges and the area used for DrawString to fix this 
1643         CalcMeasurementFactor method was created, it calcules the diferences
1644         to be use later to adjust rectangle in draw operations. Fixes #80473.
1645         
1646         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
1647         to adjust draw rectangle.
1648
1649 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1650
1651         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
1652         text and some other changes to reduce and optimize source code.
1653
1654 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1655
1656         * RadioButton.cs: Implement 2.0 event.
1657         * RelatedImageListAttribute.cs: Implement new class.
1658
1659 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1660
1661         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
1662
1663 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1664
1665         * CheckBox.cs: Implement 2.0 functionality.
1666
1667 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1668
1669         * ListView.cs: Refactor Add and AddRange methods of
1670         ListViewItemCollection, to not update the ListView
1671         everytime an item is added in AddRange. Also move the update
1672         code to a new CollectionChanged method, and call it
1673         from other methods that need it as well (this should also fix some
1674         bugs when Sorting is used).
1675
1676 2007-02-27  Jackson Harper  <jackson@ximian.com>
1677
1678         * TextControl.cs: Try to never let the caret stay in a non-text
1679         tag.
1680         * TextBoxBase.cs: Update the caret.
1681
1682 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
1683
1684         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
1685         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
1686         delete POINT structure, duplicate of one in XplatUIStructs.
1687         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
1688
1689 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
1690
1691         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
1692         edit box since otherwise the Label would immediately be set (even if
1693         the user did not modify the label). In OnKeyDown set Handled to true
1694         if Return or Escape was pressed. In ColumnHeaderCollection unlink
1695         columns that are to be removed. In ListViewItemCollection unlink items
1696         that are to be removed.
1697
1698 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
1699
1700         * TextRenderer.cs: If we set a GDI clip region, we need to clear
1701         it when we are done.  [Fixes bug #80949]
1702
1703 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1704
1705         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
1706
1707 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1708
1709         * ListView.cs: I forgot to commit the changes for ListView 
1710         in my previous patch.
1711
1712 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1713
1714         * Clipboard.cs: Partially implement an overload of SetDataObject.
1715         * Form.cs: Implement ShowWithoutActivation.
1716         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
1717
1718 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1719
1720         This is a first set of changes to make the Virtual mode works,
1721         by avoiding the retrieval of ListViewItem instances until
1722         draw time.
1723
1724         * ListView.cs: Store item position in the ListView instead of the
1725         ListViewItem, this way we don't request the Bounds property of
1726         ListViewItem inside the ListView calculations, as well as cache the item
1727         size in item_size field. Store indexes instead of ListViewItem
1728         instances in the matrix used by icon view. Add a ItemMatrixLocation
1729         struct to hold the row and col info of the matrix info.
1730
1731         * ListViewItem.cs: Don't store the location anymore, and only cache
1732         the rectangles for GetBounds. Use the ListView.GetItemLocation
1733         method to retrieve the actual location.
1734
1735 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1736
1737         * TextRenderer.cs: Add clipping support, thanks to George.
1738         [Fixes bug #80949]
1739
1740 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1741
1742         * ListViewItem.cs: Cancel label edit when item is removed from 
1743         ListView.
1744         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
1745         event before the edit textbox is displayed.  Added CancelEdit method
1746         which is used end to editing while ignoring the value set by the
1747         user. In EndEdit, set focus to ListView to avoid losing focus to
1748         other controls. In ListViewItemCollection.Clear, cancel editing of
1749         any of the items.  In Remove, cancel editing of item being removed.
1750         Avoid udplicate code by modifing RemoveAt to invoke Remove.
1751
1752 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1753
1754         * FileDialog.cs: Update FSEntry when move is successful. Fixes
1755         bug #80948.  
1756
1757 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1758
1759         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
1760         compatible with non X11 systems. Fixes #80901.
1761
1762 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1763
1764         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
1765         whether the item should be unselected and reselect. We do no want this
1766         when we're starting to edit the label. Do not fire the 
1767         SelectedIndexChanged event from ListView when its already been fired
1768         by modifying ListViewItem.Selected. Fixes bug #80943.
1769
1770 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1771
1772         * TextRenderer.cs: Previos commit logic was backwards.
1773
1774 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1775
1776         * TextRenderer.cs: Don't add padding on MeasureText if we were
1777         sent the NoPadding flag.
1778
1779 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1780
1781         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
1782         after DrawButton. To prevent image overlaps button borders SetClip and 
1783         ResetClip added before and after draw image. Fixes #79129.
1784
1785 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1786
1787         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
1788         window size, it fix problem when you run under win32 that theres
1789         Size diferent than ClientSize. Also fix controls size and positions
1790         to mimic Win32. Fixes #80837.
1791
1792 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
1793
1794         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
1795         menu area to fix some problems for non X11 systems. Fixes #80613.
1796
1797 2007-02-22  Jackson Harper  <jackson@ximian.com>
1798
1799         * TreeNode.cs: When a node is expanded, set its is_expanded flag
1800         even if it doesn't have any children.
1801
1802 2007-02-22  Jackson Harper  <jackson@ximian.com>
1803
1804         * TreeView.cs: Calculate the top node 'on the fly', this
1805         eliminates issues where you need to click on the tree before
1806         scrolling it to get the top node computed correctly.
1807         * TreeNodeCollection.cs: We don't need to mess with the top node
1808         anymore.
1809
1810 2007-02-22  Jackson Harper  <jackson@ximian.com>
1811
1812         * DataGridViewRow.cs: Fix typo so height can actually be set.
1813         Patch by Peter Grimm.
1814
1815 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1816
1817         * FileDialog.cs: Fixed support for renaming files and directories.
1818         * ListView.cs: Do not lose focus when edit is canceled. Process
1819         Escape as regular key (to prevent closing of dialogs).
1820
1821 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1822
1823         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
1824         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
1825
1826 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1827
1828         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
1829         did not modify label.
1830         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
1831         modified the text. Reset Label when user presses Escape in edit mode.
1832         Move focus to ListView after having cancelled or finished editing the
1833         label.
1834
1835 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
1836
1837         * ComboBox.cs: Removed unnecessary initializations. Marked items field
1838         private. Clear textbox when Text is set to null and SelectedIndex is
1839         already -1.
1840         * FileDialog.cs: Removed unnecessary initializations. Removed 
1841         workarounds for ComboBox bugs that are now fixed. Modified
1842         DefaultExt, InitialDirectory and Title property to change null to
1843         zero-length string in getters. Avoid directly accessing fields.
1844
1845 2007-02-20  Jackson Harper  <jackson@ximian.com>
1846
1847         * TextControl.cs: Remove RecalAlignments call, that was some
1848         debugging leftovers.
1849         - Don't use the line indent when we shouldn't.
1850         * RichTextBox.cs: Add support for paragraph left indents.
1851
1852 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1853
1854         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
1855         Seems like the class status pages doesn't catch params differences.
1856
1857 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
1858
1859         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
1860
1861 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
1862
1863         * ComboBox.cs: Setting Text should have no effect if item text of
1864         selected item exactly matches value. First lookup text using
1865         case-sensitive comparison, and fallback to case-insensitive comparison.
1866         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
1867         allow startIndex to be last index. Changed ArgumentOutOfRangeException
1868         paramname to match MS. Restart from first item if string is not found
1869         after startIndex. Fixed paramname of ArgumentNullException that is
1870         thrown for null value in ObjectCollection.Contains.
1871
1872 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
1873
1874         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
1875
1876 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1877
1878         * ListControl.cs: In SelectedValue use value.Equals to compare for
1879         equality instead of ==, otherwise it will fail for strings.
1880         Fixes #80794.
1881
1882 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1883         
1884         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
1885         since the caret won't show up unless ShowSelection is true. 
1886         Fixes #80795.
1887
1888 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1889
1890         * Application.cs: When disabling all forms but the main form, do not
1891           disable any descendants of the main form (such as mdi children or
1892           other parented forms). Fixes #80822 on Windows.
1893         * Form.cs: If we have a parent, set the WS_CHILD style.
1894         * Control.cs: Update the window styles if the control whose parent has
1895           changed is a form (the WS_CHILD style has to be switched).
1896
1897 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
1898
1899         * XplatUIStructs.cs: MsgUIState structure added.
1900
1901 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1902
1903         * FileDialog.cs: Removed need for separate fileName field. On 2.0
1904         profile, do not check filename(s) for illegal character if filename(s)
1905         were set non-interactively but always check on 1.0 profile. Fixed NRE
1906          in DefaultExt and only strip off first leading dot. Improve exception
1907         message when invalid Filter is set. Do not ignore InitialDirectory if
1908         it does no exist. Store specified Title, and if empty use default
1909         title (depending on type of dialog). Added an internal DialogTitle 
1910         property for retrieving dialog title. Fixed logic of displayed dir to
1911         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
1912         string as its buggy.
1913         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
1914         FileName is a zero-length string (it can never be null). Override 
1915         DialogTitle property to set default title of dialog box.
1916         * SaveFileDialog.cs: Override DialogTitle property to set default
1917         title of dialog box.
1918
1919 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1920
1921         * FileDialog.cs: Modify default text of filename and filetype labels
1922         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
1923         after we've updated the SelectedIndex. Fixes part of bug #80887.
1924         * SaveFileDialog.cs: Set text of filetype label.
1925
1926 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1927
1928         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
1929         label field. Needed by latest Jackson's fixes for ListView.
1930
1931 2007-02-16  Andreia Gaita  <avidigal@novell.com>
1932
1933         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
1934         print preview images.
1935
1936 2007-02-16  Jackson Harper  <jackson@ximian.com>
1937
1938         * ListView.cs: Make AfterLabelEdit work correctly.
1939         * FileDialog.cs: After changing the name of the folder, we have to
1940         make sure that it is created, or that we pop up an error because
1941         it already exists.
1942
1943 2007-02-16  Jackson Harper  <jackson@ximian.com>
1944
1945         * X11Dnd.cs: Implement aliases on mime handlers, so things like
1946         System.String are mapped to text.
1947         - Handle dataobjects, getting all the possible formats out of them
1948         - We dont need the drag event args before we give feedback. This
1949         allows feedback cursors to be immediate before selections have
1950         been converted.
1951
1952 2007-02-16  Jackson Harper  <jackson@ximian.com>
1953
1954         * TextBoxBase.cs: Modified the method for inserting images to
1955         taking a line and position instead of tag and position.
1956         * RichTextBox.cs: Handle PngBlip data by inserting the png image
1957         into the RTF file.
1958         * TextControl.cs: Allow images to be inserted as the first tag of
1959         a line.
1960         - Fix some off by one issues when we assume the first tag is a
1961         text tag, not an image tag.
1962
1963 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1964
1965         * ListView.cs: Set focus to ListView when ItemControl gets a
1966         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
1967         Fixes part of #80467.
1968
1969 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1970
1971         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
1972           validate Text input (if null or empty string reset Value to default
1973           value). Fixes #80830.
1974
1975 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1976
1977         * ListView.cs: Set owner as null for columns and items when
1978         Dispose is invoked. Fixes #80607.
1979
1980 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
1981
1982         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
1983         showing DropDowns, don't show a Grip when doing Flow layout.
1984         [This fixes the toolbox in PDN 2.72.]
1985         * ToolStripItem.cs: Add Anchor property and some internal properties to
1986         reduces needed changes to FlowLayout.
1987         * ToolStripOverflow.cs: Remove unused variable.
1988         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
1989         use it in the layout calculations.
1990
1991 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1992
1993         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
1994         reported in #79640.
1995         
1996         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
1997         size calculation.
1998
1999 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2000
2001         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
2002         MeasureString format, it can make button very large in some cases, it is
2003         strange but is what win32 do.
2004
2005 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2006
2007         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
2008         size calculation.
2009
2010         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
2011         rendering, the value is based on MenuAccessKeysUnderlined.
2012
2013 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
2014
2015         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
2016         for most themes.
2017         
2018         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
2019         
2020         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
2021         and use MenuAccessKeysUnderlined instead.
2022
2023 2007-02-13  Andreia Gaita  <avidigal@novell.com>
2024
2025         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
2026         A selected control would not get a Focus call if:
2027                 - the default active control of the container is the same as
2028                   the one that was selected
2029                 - we are switching from one container to another
2030         Under these conditions, the container being selected already has
2031         an active_control, which is the same as the one being activated, 
2032         so set_ActiveControl would always return and not send the Focus
2033         call. Fix to check if the currently active control of the container
2034         is actually focused.
2035
2036 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
2037
2038         * StatusStrip.cs: Implement the spring layout.
2039         * ToolStripControlHost.cs: Make sure the hosted control's visibility
2040         always matches the host.
2041         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
2042         and TextAfterImage.
2043
2044 2007-02-13  Andreia Gaita  <avidigal@novell.com>
2045
2046         * Control.cs: Code reorganization only.
2047           - Reorganize the WndProc cases so that each case has it's own handling method, 
2048           to help with the no-line-numbering stack traces.
2049           - Formatting changes (it's vstudio's fault, really :p)
2050
2051 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2052
2053         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
2054           Thread.CurrentUICulture to match DateTimePicker's (and MS)
2055           behaviour.
2056
2057 2007-02-12  Jackson Harper  <jackson@ximian.com>
2058
2059         * RichTextBox.cs:
2060         * TextBox.cs: By default we have a non multiline document
2061         - use the multiline property instead of the internal variable
2062         * TextBoxBase.cs: Treat multiline and non multiline the same in
2063         most places.
2064         - Use the documents multiline flag instead of tracking it ourself
2065         * TextControl.cs: Attempt at getting multiline to match MS
2066         behavior.  Lines now track an offset, which is either their X or Y
2067         offset depending on whether or not we are in multiline mode.
2068         - Update all the methods to understand that lines have an X value.
2069         - Fix crash in Undo::Duplicate when empty lines are deleted.
2070
2071 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
2072
2073         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
2074         code moved to properties PreferredHeight and PreferredWidth. It solve the
2075         all problems when preferred sizes must be recalculated. Fixes #80801.
2076
2077 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
2078
2079         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
2080         font height when compatible_text_rendering is false. Partially fix #80801.
2081
2082 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2083
2084         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
2085
2086 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2087
2088         * Form.cs: Improved exception messages in ShowDialog.
2089
2090 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
2091
2092         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
2093         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
2094         if not set. Fixes bug #80764. Avoid accessing current_settings field
2095         directly.
2096
2097 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
2098
2099         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
2100         false.
2101
2102         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
2103         public in 2.0 and for easy maintenance and dont break compatibility it is 
2104         internal in 1.1.
2105         
2106 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2107
2108         * ToolStripItem.cs: Implement using images from ImageList.
2109
2110 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2111
2112         * DateTimePicker.cs: Change default date-formatting culture from
2113           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
2114           seems to be the way MS does it.
2115
2116 2007-02-08  Andreia Gaita  <avidigal@novell.com>
2117
2118         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
2119         (the 6 was cut off on the right side)
2120
2121 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2122
2123         * Form.cs: Tell MenuStrips to close when the form is clicked.
2124         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
2125         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
2126         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
2127         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
2128         support for Overflow, where items that do not fit are automatically
2129         reparented to a drop down menu.
2130         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
2131         Also: fixes bug #80747.
2132
2133 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2134
2135         * ComboBox.cs: Remove warning (unused code).
2136         * ScrollableControl.cs: Remove warning for 1.1 profile.
2137
2138 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2139
2140         * Form.cs: Remove a warning.
2141
2142 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2143
2144         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
2145           'g' specifier, not documented anywhere, but seems to always show up
2146           as a single space (might have something to do with the DateTime 'g'
2147           specifier, which is the era format, but since DateTimePicker can't
2148           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
2149           won't crash if the format has an unmatched quote. Now shows
2150           single-character formats correctly. Fixes #80744.
2151
2152 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
2153
2154         * StatusStrip.cs: Stretch property needs to call base.Stretch,
2155         not this.Stretch to fix stack overflow. [Fixes bug #80760]
2156
2157 2007-02-07  Chris Toshok  <toshok@ximian.com>
2158
2159         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
2160         background color.  it overwrites the background image we've
2161         already painted.  Fixes #80599.
2162
2163 2007-02-07  Chris Toshok  <toshok@ximian.com>
2164
2165         * DataGrid.cs: return immediately from Edit() when there are no
2166         columns.  Fixes #80662.
2167
2168 2007-02-07  Chris Toshok  <toshok@ximian.com>
2169
2170         * MessageBox.cs: fix #80625.  don't always show the Help button in
2171         2.0.  use the displayHelpButton parameter to determine if we
2172         should show it. Also, make the internal show_help field private.
2173
2174 2007-02-07  Chris Toshok  <toshok@ximian.com>
2175
2176         * Control.cs (SetVisibleCore): check in the proposed patch for
2177         80604, and set is_visible before calling CreateControl.
2178
2179 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
2180
2181         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
2182         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
2183         on it.
2184
2185 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
2186
2187         * MenuAPI.cs: hotkey_active internal field added, it is required because
2188         we need to know when hotkeys must be draw, before this change a keystate
2189         Navigating was used but we can have menu in navigating state without
2190         hotkeys. Fixes #80694.
2191         
2192         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
2193
2194 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2195
2196         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
2197           corresponding events and methods to be internal for 1.1 profile and
2198           public for 2.0 profile (required by SizeGrip).
2199         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
2200           implicit control list). Don't set the size nor the location of the
2201           SizeGrip anymore as it's not needed.
2202         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
2203           draw directly on the captured control (fixes #80656). Removed
2204           ShowGrip (it wasn't used anywhere), redraw (always true), added
2205           GetDefaultSize and GetDefaultRectangle to calculate defaults.
2206         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
2207           be called from SizeGrip.
2208
2209 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2210
2211         * Timer.cs: Throw ArgumentException if Interval <= 0.
2212
2213 2007-02-05  Jackson Harper  <jackson@ximian.com>
2214
2215         * TreeView.cs: We need to check scrollbar visibility when window
2216         visibility is updated, because non visible trees don't ever add
2217         scrollbars.
2218         * Cursor.cs: We want the override cursor to be reset to NULL when
2219         we set current cursor to the default cursor.
2220
2221 2007-02-05  Jackson Harper  <jackson@ximian.com>
2222
2223         * TextControl.cs: Don't have crlfs when we are non multiline.
2224         - Consolidate the line position.
2225
2226 2007-02-05  Jackson Harper  <jackson@ximian.com>
2227
2228         * X11Keyboard.cs: BACK+CTRL gets a special char code.
2229
2230 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2231
2232         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
2233           handling LeaveNotify->NotifyUngrab in order to send
2234           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
2235           after calling XUngrabPointer, so we call WindowUngrabbed directly
2236           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
2237         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
2238           MouseCaptureChanged correctly. Also create handles if changing
2239           Capture (matches MS behaviour).
2240
2241 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2242
2243         * SizeGrip.cs: Make the last change 2.0 only.
2244
2245 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2246
2247         * SizeGrip.cs: If resizing and the capture is lost, revert any size
2248           changes to initial size (fixes #80597).
2249
2250 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2251
2252         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
2253
2254 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2255
2256         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
2257           background) and only allow dragging if enabled. This way the
2258           sizegrip can be used to fill the open square that otherwise would
2259           have been shown in the bottom right corner of ScrollableControl
2260           when ScrollableControl is not suppose to support sizing.
2261         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
2262           sizegrip is shown and enabled, and hook up with necessary events.
2263
2264 2007-02-01  Chris Toshok  <toshok@ximian.com>
2265
2266         * DataGridTextBoxColumn.cs: clean up the
2267         GetFormattedString/GetColumnValueAtRow combination of functions.
2268         Also fix UpdateUI, and the initial state of
2269         IsInEditOrNavigateMode.
2270
2271         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
2272         aren't supposed to scroll the textbox here, we're supposed to
2273         scroll the datagrid.
2274
2275 2007-02-01  Chris Toshok  <toshok@ximian.com>
2276
2277         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
2278         setting the position.
2279
2280 2007-02-01  Chris Toshok  <toshok@ximian.com>
2281
2282         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
2283         here, since the most recent focus fixes keep us from generating
2284         the Leave event when our textbox gets focus.
2285         (Edit): we should be passing null for the column style's
2286         instantText parameter.
2287         
2288 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
2289
2290         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
2291         raised.  Fixes menu text/icons not showing up in PDN.
2292
2293 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2294
2295         * Control.cs: Remove code in constructor that makes every
2296         control with WS_CHILD set have initial location -1, -1.
2297
2298 2007-01-31  Jackson Harper  <jackson@ximian.com>
2299
2300         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
2301         XplatUIX11.
2302         * XplatUIX11.cs: Give teh keyboard to teh dnd.
2303
2304 2007-01-31  Jackson Harper  <jackson@ximian.com>
2305
2306         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
2307         - Remove some debug code.
2308
2309 2007-01-31  Jackson Harper  <jackson@ximian.com>
2310
2311         * XplatUIX11.cs: If you set the override cursor during a grab, it
2312         should actually override the grab cursor.  This comes into play
2313         when you are setting custom cursors in a DND feedback method.
2314
2315 2007-01-31  Jackson Harper  <jackson@ximian.com>
2316
2317         * X11Dnd.cs: Add support for handling the QueryContinue and
2318         GiveFeedback events.
2319         - Cancel drag and drop actions when the escape key is clicked.
2320         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
2321         can handle the ESCAPE key.
2322         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
2323         done when dnd events are continued after the button is released.
2324         - Add a new helper method so that dnd can translate key events.
2325
2326 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
2327
2328         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
2329         make it more obvious what is happening.
2330
2331 2007-01-30  Jackson Harper  <jackson@ximian.com>
2332
2333         * XplatUIX11.cs: Don't break when handling button release in drag
2334         and drop operations. We need that BUTTONUP message to get through
2335         so capture is released.
2336         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
2337         this is handled automatically when the mouse is down.
2338
2339 2007-01-30  Jackson Harper  <jackson@ximian.com>
2340
2341         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
2342         is closed, so we need to make sure that we aren't changing the
2343         dialog result when the OK (Open or Save) button has been clicked
2344         and we are closing the window ourselves.  Note we don't need to
2345         worry about the cache being written in this case, because it was
2346         already done in the previous FilOk call.
2347
2348 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2349         
2350         * DateTimePicker.cs: Remove a warning.
2351         * ComboBox.cs: Remove a couple of warnings.
2352
2353 2007-01-29  Chris Toshok  <toshok@ximian.com>
2354
2355         * XplatUIX11.cs: don't crash, and remove the icon if the user has
2356         set one, if SetIcon is passed a null icon.
2357
2358 2007-01-29  Andreia Gaita  <avidigal@novell.com>
2359
2360         * TextBox.cs: Redraw when the password characters changes
2361         * TextControl.cs: Check if textbox has a password char and draw 
2362         a line of password chars instead of the text in the line. LineTag gets 
2363         an extra Draw() method which allows document.Draw to override the text 
2364         that will be drawn. Removes 1024 char limitation on length of passworded 
2365         lines.
2366
2367 2007-01-29  Jackson Harper  <jackson@ximian.com>
2368
2369         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
2370         single chars is not.
2371
2372 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
2373
2374         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
2375         one pixel.  Fix a StackOverflowException caused by an overload wrongly
2376         calling itself.
2377
2378 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
2379
2380         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
2381         also remove ProcessArrowKey and put the code inside ProcessKeys.
2382
2383 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
2384
2385         * PaddingConverter.cs: Added.
2386
2387 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2388         
2389         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
2390         ShowPanels is false (fixes #80600). Only draw up to 127 characters
2391         of text (fixes #80601). For panels clip the text to draw to the
2392         panel (fixes #80603).
2393
2394 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2395
2396         * ComboBox.cs: Fixed implementation of ResetText.
2397
2398 2007-01-25  Jackson Harper  <jackson@ximian.com>
2399
2400         * TextControl.cs: For the last char of a line we need to use the
2401         line size, not that chars width, since it won't actually be
2402         computed since the right side of a char is based on the start of
2403         the left side of the next char, and the next char does not exist.
2404
2405 2007-01-25  Chris Toshok  <toshok@ximian.com>
2406
2407         * Splitter.cs: fix the new unit tests, and reindent some switch
2408         statements.
2409
2410 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2411
2412         * ComboBox.cs: Implemented 2.0 methods and events.
2413         * TextBoxBase.cs: Added OnTextUpdate, so that
2414         ComboBox.ComboTextBox can inform ComboBox of it.
2415
2416 2007-01-25  Jackson Harper  <jackson@ximian.com>
2417
2418         * TextControl.cs: Respect ShowSelection when deciding whether or
2419         not to display the caret, this allows comboboxes to have carets
2420         when the combotextbox does not have focus.
2421
2422 2007-01-25  Jackson Harper  <jackson@ximian.com>
2423
2424         * TextControl.cs: Add a Suspend/Resume for updating, basically the
2425         same as the Suspend/Resume for recalc, except this will do actual
2426         Invalidates.
2427         - New Undo manager, works much like the MS version.
2428         - Implemented Redo
2429         * TextBoxBase.cs: The Cut operation is undoable.
2430
2431 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2432         
2433         * TextBoxBase.cs: Don't antialias text. Makes it look way better
2434         on Windows (no difference on Linux).    
2435
2436 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2437
2438         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
2439         we don't want to activate any windows. Fixes #79433.
2440
2441 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
2442
2443         - ButtonBase.cs: Fix capitalization of parameter: disposing.
2444         [Fixes bug #80609]
2445
2446 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
2447
2448         * FileDialog.cs:
2449         - Move to using System.ComponentModel.EventHandlerList
2450         - Replace Refresh with Invalidate
2451         - Clear the mime filecache on closing
2452         - Some other memory reducing work. After beeing closed FD now uses
2453           only about 300 KB for the fdo mime stuff plus the memory of the
2454           cached icons.
2455         * Mime.cs: Changed coding style and removed unnecessary commented
2456         code. Some more memory memory reducing work.
2457
2458 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2459
2460         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
2461         a few other missing 2.0 properties.
2462         * Theme.cs: Added DrawFlatStyleComboBox.
2463         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
2464
2465 2007-01-24  Chris Toshok  <toshok@ximian.com>
2466
2467         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
2468         wake_waiting flag, not just when there's data to be read.  if we
2469         don't, then future wakeup's won't reach us and we'll be doomed to
2470         wait for the entire 1 second timeout forever (unless there are X
2471         events to be had).
2472
2473 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2474
2475         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
2476         until you pass Items.Count, not Items.Count - 1 like 1.1.
2477
2478 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
2479
2480         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
2481
2482 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2483
2484         * ToolStripContainer.cs: The recent Dock fix exposed that I was
2485         adding the panels in the wrong order.
2486
2487 2007-01-24  Jackson Harper  <jackson@ximian.com>
2488
2489         * TextBoxBase.cs: When we move the caret we also need to move the
2490         selection, this fixes some random crashing after doing select
2491         text, unselect, delete a char, paste.
2492
2493 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2494
2495         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
2496
2497 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2498
2499         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
2500         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
2501         * ToolBar.cs: Force redraw in BackgroundImageChanged.
2502
2503 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2504
2505         * ToolBar.cs:
2506         - Implement support for vertical toolbars. Fixes #80539;
2507         - Call LayoutToolBar when resize, it fix some other problems in layout.
2508         - Rename requested_height to requested_size, as we can have width on it
2509         when toolbar is vertical.
2510         - Create a private property "Vertical" that uses Dock to verify when 
2511         toolbar is vertical or not.
2512         - Set ControlStyles when change Dock property.
2513         - Refactory in LayoutToolBar to have better variables names and to support
2514         vertical toolbars.
2515         - Fixes default value for ButtonSize when button count is equal zero, size
2516         must be (39, 36) test case writed.
2517
2518 2007-01-23  Chris Toshok  <toshok@ximian.com>
2519
2520         * Control.cs: fix the checks so that they work correctly for mdi
2521         parents/children.
2522
2523 2007-01-23  Chris Toshok  <toshok@ximian.com>
2524
2525         * Control.cs: ControlCollection seems to have super-secret
2526         abstraction breaking knowledge of Mdi containers.  allow MdiClient
2527         to add toplevel controls.
2528
2529 2007-01-23  Chris Toshok  <toshok@ximian.com>
2530
2531         * Control.cs: throw an ArgumentException if a toplevel control is
2532         added to our control collection from ControlCollection.Add, as
2533         well as from ControlCollection.IList.Add.  This fixes the
2534         ControlSetTopLevelTest.TestTopLevelAdd unit test.
2535
2536         Also, in ControlCollection.IList.Add, don't through an
2537         ArgumentNullException, throw an ArgumentException, when value ==
2538         null.  This matches MS.
2539
2540 2007-01-23  Chris Toshok  <toshok@ximian.com>
2541
2542         * BindingSource.cs: initial, incomplete, implementation of
2543         BindingSource.
2544
2545 2007-01-23  Jackson Harper  <jackson@ximian.com>
2546
2547         * TextControl.cs:
2548         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
2549         that I can fix a broken unit test (TextBoxTest::ClearUndo)
2550         
2551 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2552
2553         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
2554
2555 2007-01-23  Andreia Gaita  <avidigal@novell.com>
2556
2557         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
2558         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
2559         IndexOfKey() for 2.0
2560
2561 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2562
2563         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
2564         to prevent it from changing z-order.
2565         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
2566         leave UI updates in MdiWindowManager.
2567         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
2568         1 sized (NC handling goes weird on Linux otherwise).
2569         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
2570         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
2571         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
2572         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
2573         and SetWindowState(s) to allow for changing the size of an activated child
2574         before activating it (reduces a lot of flicker).
2575
2576 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2577
2578         * Form.cs: Changing FormBorderStyle has different semantics based
2579         on whether the Form is visible or not.  If not visible, don't change
2580         the Size.  But InvalidateNC needs to be called to force the window
2581         to pick up the changes and redraw itself.  [Fixes bug #80574]
2582
2583 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2584
2585         [Moma work]
2586         * ContainerControl.cs: ProcessCmdKey.
2587         * ErrorProvider.cs: new constructor.
2588         * Form.cs: fix AutoValidateEvent compiler warning.
2589         * Label.cs: fix OnAutoSizeChanged compiler warning.
2590         * MenuStrip.cs: fix CanOverflow compiler warning.
2591         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
2592         * TextBox.cs: Dispose.
2593         * ToolStrip.cs: CanOverflow, re-enable double buffering.
2594         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
2595         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
2596         * ToolStripItem.cs: Overflow, RightToLeft properties.
2597
2598 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2599
2600         * Form.cs: Move the layout of the main form to MdiWindowManager.
2601         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
2602         do a layout of the main window to update MdiClient's client area to
2603         the right area. Fixes #80533. Remove the calculation of nc size, 
2604         it was just wrong and the correct one is the same as for 
2605         InternalWindowManager. 
2606
2607 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
2608
2609         * Control.cs: Setting Anchor or Dock needs to reset the other
2610         to its default.  [Fixes bug #80556]
2611
2612 2007-01-20  Chris Toshok  <toshok@ximian.com>
2613
2614         * CheckedListBox.cs: class status changes.
2615
2616         * ScrollableControl.cs: same.
2617
2618         * RichTextBox.cs: same.
2619
2620         * ContainerControl.cs: same.
2621
2622         * ListView.cs: same.
2623
2624         * NotifyIcon.cs: same.
2625
2626         * MenuStrip.cs: same.
2627
2628         * RadioButton.cs: same.
2629
2630         * CheckBox.cs: same.
2631
2632         * PrintPreviewDialog.cs: same.
2633
2634         * Form.cs: same.
2635
2636 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
2637
2638         * TreeNode.cs: Apply Alan's patch for Name property.
2639
2640 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2641         
2642         * Form.cs: Implemented SizeGripStyle.
2643         * SizeGrip.cs: Check for minimum and maximum size for the
2644         control being resized and only resize if size has actually
2645         changed.
2646
2647 2007-01-19  Chris Toshok  <toshok@ximian.com>
2648
2649         * DataGridColumnStyle.cs: stop setting _readonly in the
2650         PropertyDescriptor setter.  fixes a unit test failure.
2651
2652         also, rename ParentReadOnly to TableStyleReadOnly, and have it
2653         just consult our table style (if we have one).  We don't need to
2654         consult the datagrid readonly attribute because that's passed in
2655         as the _ro arg to Edit.  this simplifies things a little.
2656         
2657         * DataGrid.cs: use CurrentColumn instead of
2658         current_cell.ColumnNumber just to simplify some of the code.
2659
2660         switch the order of some things in the CurrentCell setter to keep
2661         the previous cell from getting a textbox again -
2662         EnsureCellVisibility causes scrolling to happen, which calls Edit.
2663         So we need to set the new cell before calling it.
2664         
2665         call Edit in OnEnter, as does Microsoft.
2666         
2667         also, make sure the current table style isn't the one we create
2668         initially when checking to see if it's different than the one
2669         we're setting it to in BindColumns (this fixes #80421).
2670
2671         * GridTableStylesCollection.cs: table styles can have "" for a
2672         mapping name.  part of the fix for #80421.
2673
2674         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
2675         Edit significantly.
2676
2677 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2678
2679         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
2680         and less GDI object leaky-er.
2681
2682 2007-01-18  Andreia Gaita  <avidigal@novell.com>
2683
2684         * LinkLabel.cs: Add opaque control style
2685
2686 2007-01-18  Jackson Harper  <jackson@ximian.com>
2687
2688         * TextControl.cs: Calculate width properly.
2689         - Don't store the tag's X offset, this can be figured out very
2690         easily.
2691         - When getting the caret tag make sure to get the last empty tag.
2692
2693 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2694
2695         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
2696         [Fixes bug #79959]
2697
2698         * Control.cs: Color.Empty shouldn't count for previous transparent
2699         redraw changes.
2700
2701 2007-01-18  Jackson Harper  <jackson@ximian.com>
2702
2703         * TextBox.cs:
2704         * RichTextBox.cs:
2705         * TextControl.cs: Starting to merge in some pieces of my older
2706         undo work.  Basically just some slight cleanup of the undo API.
2707
2708 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2709
2710         * TrackBar.cs: Fix signature of RightToLeftLayout.
2711         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
2712         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
2713         * Application.cs: Implemented UseWaitCursor.
2714
2715 2007-01-18  Jackson Harper  <jackson@ximian.com>
2716
2717         * TextControl.cs: We can't skip tags if any part of the tag is
2718         visible.
2719
2720 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2721
2722         * ContainerControl.cs: Override OnLayout.
2723
2724 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2725
2726         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
2727
2728         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
2729         everything else.
2730
2731 2007-01-18  Chris Toshok  <toshok@ximian.com>
2732
2733         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
2734         (leftover from the container_selected days, I'd wager).  fixes bug
2735         #80546.
2736
2737 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2738
2739         * Control.cs: Apply patch from George to fix the new testcase on
2740         bug #80451.  We can't just check for Color.Transparent, we need 
2741         to check if the back color's alpha channel is < 255.
2742
2743 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2744
2745         * Form.cs: Move setting show_icon = true to before the constructor
2746         so that the base constructor has that information when it calculates
2747         the form's size.  Was causing forms to be (6, 6) bigger than they
2748         were supposed to be.  Thanks for catching this Rolf!
2749
2750 2007-01-18  Jackson Harper  <jackson@ximian.com>
2751
2752         * TextControl.cs: When replacing a selection we need to invalidate
2753         from the initial selection start, because selection start is moved
2754         to the end of the replacement.
2755
2756 2007-01-18  Andreia Gaita  <avidigal@novell.com>
2757
2758         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
2759
2760 2007-01-18  Chris Toshok  <toshok@ximian.com>
2761
2762         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
2763         I just added.
2764
2765 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
2766
2767         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
2768         layout methods and properties from ToolBarButton must be available
2769         into ToolBarButtonInfo.
2770
2771 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2772
2773         * Control.cs: If the control has a transparent background, we
2774         need to refresh it when it moves and when it's parent's background
2775         image changes.  [Fixes bug #80451]
2776
2777 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2778
2779         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
2780
2781 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2782
2783         * XplatUIWin32.cs: Implement proper double buffering for Windows.
2784         [Fixes bug #80447, and probably speeds up things as well]
2785
2786 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2787
2788         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
2789         * XplatUIWin32.cs: We need to recalculate NC size after changing 
2790         window style to toolwindow (otherwise the client rectangle will be
2791         3 pixels to small for some reason).
2792         * MdiWindowManager.cs: Revert NC size calculations to match how
2793         they are calculated only based on window styles (to match
2794         Win32AdjustWindowRectEx, since otherwise when setting size or 
2795         location, Control will call Win32AdjustWindowRectEx to update client 
2796         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
2797         calculate a different value of client size causing another paint 
2798         (and flickering))
2799         * InternalWindowManager.cs: When moving or resizing a window only
2800         update size or location if they actually changed.
2801         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
2802         (seems to match Windows behaviour better). Cleaned up 
2803         ManagedWindowDecorations to draw what's needed and nothing else
2804         (was drawing borders and lines where they shouldn't be)
2805         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
2806         (style = 0xFFFF) and takes into account caption height when 
2807         calculating window rectangle.   
2808
2809 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
2810
2811         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
2812         can be added to toolbar multiple times, we need to maintain a list of 
2813         button information for each positions.
2814
2815 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
2816
2817         * ToolBar.cs: Some small stetic changes.
2818
2819 2007-01-16  Jackson Harper  <jackson@ximian.com>
2820
2821         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
2822         that allow us to have nested recalc = false blocks.
2823         - Add paste support for images in the RichTextBox
2824         * RichTextBox.cs: flush the text after the color is changed, so
2825         the change takes effect.
2826         - Use SuspendRecalc
2827         - Some extra debugging info
2828         * TextControl.cs: Tags no longer track their length, it is just
2829         computed from the next tags length, this makes things a little
2830         simpler and reduces places that we have to track length changes.
2831         - Refactored the linetag class a little so we could make it
2832         a base class for different kinds of tags
2833         - Created a image tag, a tag that can have a single image inserted
2834         into it
2835         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
2836         that we can call suspend multiple times.
2837         - Add some debugging methods
2838
2839 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2840
2841         * MdiClient.cs: Add ActivatePreviousChild for 
2842         mdi child window navigation.
2843         * Form.cs: Use MdiClient.ActivateNextChild/
2844         ActivatePreviousChild instead of Form.SelectNextControl
2845         to select the next/previous child since 
2846         SelectNextControl doesn't do it in the same order
2847         as mdi children should do it.
2848
2849 2007-01-16  Chris Toshok  <toshok@ximian.com>
2850
2851         * Control.cs: remove container_selected field.
2852
2853 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2854
2855         * MdiClient.cs: Update main form's ActiveChild when
2856         updating keyboard focus for the mdi child.
2857
2858 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
2859
2860         * Control.cs: PreferredSize fix.
2861
2862         * Form.cs: Add several 2.0 events, properties, and methods.
2863
2864 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
2865
2866         * Form.cs: Provide meaningful message when MdiParent is assigned a
2867         Form that is not an MdiContainer.
2868
2869 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2870
2871         * MdiClient.cs: Update main form's ActiveChild when
2872         activating a mdi child.
2873
2874 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2875
2876         * MdiWindowManager.cs: Fix NRE when merging menus and main form
2877         doesn't have a menu.
2878
2879         * Form.cs: Request NCRecalc after creating a mdi child window.
2880         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
2881         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
2882         
2883         * MdiClient.cs: Add new method SendFocusToActiveChild that either
2884         sends keyboard focus to the active child, or to the MdiClient
2885         if there are no child forms.
2886         
2887 2007-01-15  Chris Toshok  <toshok@ximian.com>
2888
2889         * ListView.cs: drop the *Internal overrides, just do our work in
2890         ItemControl's WndProc instead.
2891
2892         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
2893         of the various controls, and forward the events properly (in the
2894         same manner as MS) from the textbox to the UpDown.  Also the
2895         ActiveControl of the UpDownBase gets set properly now.  Finally,
2896         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
2897
2898         * NumericUpDown.cs: set Text in the ctor.
2899
2900         * DomainUpDown.cs: call UpdateEditText in the ctor.
2901         
2902         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
2903         so even a Selectable = false textbox can be focused if you click
2904         in it.  Go figure.
2905
2906         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
2907         just add their handling in their respective WndProc's.  Also add
2908         an explicit FocusInternal method that doesn't consult CanFocus
2909         before calling Select(this).
2910
2911         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
2912         do our work in WndProc instead.
2913
2914         * TabControl.cs: same.
2915
2916         * ComboBox.cs: same.
2917
2918 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2919
2920         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
2921         Fixes #80006.
2922
2923 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2924
2925         * ListViewItem.cs:
2926         * ThemeWin32Classic.cs: Don't draw the item text outside
2927         item bounds in Details view, as well as use trimming.
2928         Fixes bug #80376.
2929
2930 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2931
2932         * Form.cs: Implement Form.ShowIcon.
2933         
2934         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
2935         null, which when combined with the DlgModalFrame window style removes
2936         the icon from the title bar.
2937
2938 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2939
2940         * Control.cs: Call OnMouseClick after OnClick. (2.0)
2941
2942 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2943
2944         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
2945         menu when mdi child windows theres a menu, uses insert to get icon
2946         at first position. Partially fix #80006.
2947
2948 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2949
2950         * Clipboard.cs: Implement 2.0 methods.
2951
2952 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2953
2954         * Menu.cs: Implement Insert method of MenuItemCollection class
2955         to fix MenuMerge.
2956
2957 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2958
2959         * ListView.cs: Implement 2.0 FindItemWithText method.
2960
2961 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2962
2963         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
2964         to calculate menu bar size. Fixes #80290.
2965
2966 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2967
2968         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
2969
2970 2007-01-11  Chris Toshok  <toshok@ximian.com>
2971
2972         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
2973         initial form.
2974
2975 2007-01-11  Chris Toshok  <toshok@ximian.com>
2976
2977         * LinkLabel.cs: make sure to call base.Select in our Select method
2978         if it turns out we're going to be selected (i.e. if we have a link
2979         that is going to receive focus).  That way our container's
2980         ActiveControl is updated properly.
2981
2982 2007-01-11  Chris Toshok  <toshok@ximian.com>
2983
2984         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
2985         they have 1 or more links.  this fixes the crash gert reported.
2986
2987 2007-01-11  Andreia Gaita  <avidigal@novell.com>
2988
2989         * ContainerControl.cs: Remove ContainerSelected flag, not needed
2990         anymore.
2991
2992         * Control.cs (Controls.Add): Check if control to be added to the collection
2993         is a top level control, and throw an ArgumentException if it is.
2994         Remove ContainerSelectedFlag, not needed anymore.
2995
2996         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
2997         top most control doesn't activate the form. This fixes a problem in the
2998         MessageBox, where the default button wouldn't get focus because the form
2999         was activated before being Loaded - when the Owner is set, SetTopMost is
3000         called, and it would activate it.
3001
3002 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
3003
3004         * Button.cs: When clicked and setting the parent form's DialogResult,
3005         use FindForm instead of Parent, since parent could be a container
3006         control and not the Form.  Fixes bug #80495.
3007
3008 2007-01-10  Chris Toshok  <toshok@ximian.com>
3009
3010         * Form.cs: move the call to SendControlFocus into the same
3011         is_loaded check.
3012
3013 2007-01-10  Chris Toshok  <toshok@ximian.com>
3014
3015         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
3016         It breaks in the face of the new ActiveControl stuff, and should
3017         be unnecessary.
3018
3019         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
3020         activecontrol's focus if it's not already set, after we set
3021         ActiveControl, but before we call OnActivated.  Re-fixes #79667
3022         after the previous focus/active control fixes regressed it.
3023
3024         * Control.cs: reindent some code.
3025         
3026 2007-01-10  Chris Toshok  <toshok@ximian.com>
3027
3028         * Splitter.cs: clearing some outstanding changes from my tree.
3029         Replace all accesses (not writes) to the internal dock_style field
3030         with the Dock property.
3031
3032 2007-01-10  Chris Toshok  <toshok@ximian.com>
3033
3034         * Control.cs: make FireEnter, FireLeave, FireValidating, and
3035         FireValidated virtual.
3036
3037         * Form.cs: override and don't chain up calls to FireEnter and
3038         FireLeave.
3039
3040 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3041
3042         * ListView.cs: Add more text padding space when using
3043         auto resize for columns (the previous value didn't work fine).
3044
3045         * ThemeWin32Classic.cs: Update text position inside columns,
3046         to match the appeareance of .Net.
3047
3048         * ColumnHeader.cs: When using auto resize, only the Width should
3049         depend on the sub items, not the Height. Also, set width after
3050         auto resizing (the value of Width should never remain as -1 or -2).
3051
3052 2007-01-10  Chris Toshok  <toshok@ximian.com>
3053
3054         * Application.cs: fix compilation errors when debug is enabled.
3055
3056 2007-01-10  Chris Toshok  <toshok@ximian.com>
3057
3058         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
3059         add some nice ascii art pictures and explanation of the process).
3060         (GetMostDeeplyNestedActiveControl): new utility function we need
3061         because our ActiveControl can refer to a child container with its
3062         own ActiveControl.
3063
3064         * Form.cs (OnActivated): remove the call to SelectActiveControl
3065         from here, since you can override this method and not chain up,
3066         and winforms still sets the active control.
3067         (OnCreateControl): also remove the unnecessary SelectActiveControl
3068         call from here.
3069         (WndProc): it's actually called from the WM_ACTIVATE block, just
3070         before calling OnActivated.
3071
3072         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
3073         inside the else.  the ActiveControl setter will end up setting
3074         focus on @control.  This keeps us from setting it again (and
3075         generating an extra LostFocus/GotFocus pair).
3076         (Select (bool, bool)): reindent.
3077
3078 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
3079
3080         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
3081         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
3082         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
3083         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
3084         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
3085         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
3086         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
3087         ToolStripTextBox.cs: Another wave of corcompare work.
3088
3089 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3090
3091         * ColumnHeader.cs: Implement 2.0 AutoResize method using
3092         the Width property.
3093
3094         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
3095         methods by callling Column.AutoResize method on columns.
3096
3097 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
3098
3099         * Control.cs: Provide proper implementations of PreferredSize
3100         and GetPreferredSize (2.0).
3101
3102 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
3103
3104         * Form.cs: Remove one character (!) to make my previous OnClosing
3105         stuff work for modal windows like MessageBox.
3106
3107 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3108
3109         * ListView.cs:
3110         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
3111         ListView.Columns to get the last displayed column. Fixes #80452.
3112
3113 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
3114
3115         * Label.cs, LinkLabel.cs: Source code identation fixes.
3116
3117 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
3118
3119         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
3120         we dont need to invalidate only borders because when we invalidate four
3121         border lines the invalidate's generates a complete redraw of button, 
3122         because it now invalidate a complete rect some other redraws operations
3123         are fixed. Fixes #80196.
3124         
3125         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
3126         Remove ToolBarInvalidateEntireButton as it is not used.
3127
3128 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
3129         
3130         * Form.cs: Make sure that both OnClosing and OnFormClosing are
3131         called for 2.0 profile.
3132         * CloseReason.cs: Make class internal for 1.1.
3133
3134 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
3135
3136         * ToolStripManager.cs: Implement FindToolStrip functionality.
3137         * ToolStrip.cs: Register and unregister with ToolStripManager.
3138
3139 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
3140
3141         * Control.cs: This was messy.  2.0 moves much of ControlCollection
3142         to ArrangedElementCollection.  Implemented this with as few #if's as 
3143         possible (which is still too many).
3144
3145 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
3146
3147         * Control.cs: Implement SizeFromClientSize() [2.0].
3148
3149 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
3150
3151         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
3152         use Theme.BorderSize to calculate area instead of static value 1, 
3153         by the way use new BorderStaticSize instead     Border3DSize when 
3154         border_static is true. Fixes #79537.
3155         
3156         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
3157         
3158         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
3159         it is not needed.
3160
3161 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
3162
3163         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
3164
3165 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
3166
3167         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
3168         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
3169         
3170         * Hwnd.cs: 
3171         - border_static field added, it will used to define when a control 
3172         theres 3D border but it must be static (thin).
3173         - In GetWindowRectangle use Theme.BorderSize to calculate area 
3174         instead of static value 1, by the way use new BorderStaticSize instead
3175         Border3DSize when border_static is true.
3176
3177         * XplatUIX11.cs, XplatUIOSX.cs: 
3178         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
3179         
3180         * Theme.cs: BorderStaticSize field added.
3181
3182 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
3183
3184         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
3185
3186 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
3187
3188         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
3189         mimic same behavior than win32 that set border only in CreateParams,
3190         it fix problems under CreateParams overrides. Fix #79442 and partial
3191         fix #79537.
3192         
3193         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
3194         of thi control you must call recreate handle. 
3195         
3196         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
3197         need to do anything as RecreateHangle will take care about borders.
3198
3199 2007-01-05  Mike Kestner  <mkestner@novell.com>
3200
3201         * ListView.cs: hack to eliminate Lost/Got focus notifications on
3202         cycles between the ItemControl and parent.  Fixes #80388.
3203
3204 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
3205
3206         * Control.cs: Lazy init layout engine. Do not directly use 
3207         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
3208
3209 2007-01-05  Chris Toshok  <toshok@ximian.com>
3210
3211         * DataGrid.cs: don't forceably rebind columns in SetDataSource
3212         unless our list manager has changed (i.e. unless we have reason to
3213         believe our columns have changed).  Fixes #80422.
3214         
3215         also, disable the call do BindColumns in
3216         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
3217         1.1 the event isn't raised in response to a column addition on a
3218         table.)
3219
3220 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3221
3222         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
3223         that inheritors can not call it if they choose.  Fixes bug #80456.
3224
3225 2007-01-05  Andreia Gaita  <avidigal@novell.com>
3226
3227         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
3228         doesn't blow up with a null exception on marshalling.
3229         
3230 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3231
3232         * Control.cs: Implement several 2.0 protected properties and methods.
3233         Ensure that all necessary events are being called when properties
3234         are set.
3235
3236 2007-01-05  Mike Kestner  <mkestner@novell.com>
3237
3238         * ListView.cs: implement PgUp/PgDn for Details view.  Also
3239         fixes First/LastVisibleIndex to use the item_control.ClientRect 
3240         instead of the parent control.  Fixes #80378.
3241
3242 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
3243
3244         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
3245           determine whether to use yard-pound or not (bug #78399).
3246
3247 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
3248
3249         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
3250         problems. So it is time to bring back the old popupbutton colors.
3251
3252 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3253
3254         * ColumnHeader.cs:
3255         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
3256         property by using the internal information of the
3257         columns order in ListView.
3258
3259 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
3260
3261         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
3262         Add 2.0 Tag properties.
3263
3264         * LinkArea.cs: Add 2.0 ToString method.
3265
3266 2007-01-03  Chris Toshok  <toshok@ximian.com>
3267
3268         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
3269         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
3270         when we're editing, which fixes #80047.
3271
3272 2007-01-03  Chris Toshok  <toshok@ximian.com>
3273
3274         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
3275         #80404.
3276
3277 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
3278
3279         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
3280         property and implementation.
3281
3282         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
3283         for MdiWindowListItem property.
3284
3285         * ToolStripDropDown.cs: Don't consider hidden menu items while
3286         laying out the menu.
3287
3288 2007-01-03  Andreia Gaita  <avidigal@novell.com>
3289
3290         * SendKeys.cs: window handle is not needed in win32, so just
3291         get the active window for X after parsing keys and don't use
3292         it when building the message; it is passed by parameter to the 
3293         Xplat method and used there to build the message instead. Also,
3294         wait for events to be processed on SendWait, as opposed to Send,
3295         which doesn't wait :) Playing with threads and Send() completely 
3296         hangs on ms.net, only SendWait() works.
3297         
3298         XplatUIX11.cs
3299         X11Display.cs: Check for valid window handle.
3300
3301 2007-01-03  Jackson Harper  <jackson@ximian.com>
3302
3303         * TextControl.cs: Need to prevent wrap calculations when replacing
3304         text (this was there before i removed it accidently).
3305         - Don't update the cursor during the positioning, just set it to
3306         selection_start at the end of the operaion.
3307
3308 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3309
3310         * Control.cs:
3311         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
3312         
3313 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3314
3315         * MonthCalendar.cs: Added Click and DoubleClick events again,
3316         but this time they only hide Control's Click and DoubleClick.
3317         
3318 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
3319
3320         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
3321         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
3322
3323 2007-01-02  Jackson Harper  <jackson@ximian.com>
3324
3325         * TextBoxBase.cs: We move the caret with the split now, so we
3326         don't need to explicitly move the caret after splitting.  This
3327         fixes the caret bumping down an extra line on Enter.
3328
3329 2007-01-02  Miguel de Icaza  <miguel@novell.com>
3330
3331         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
3332         2.72). 
3333
3334         * ScrollableControl.cs: Add Scroll event.
3335
3336 2007-01-02  Mike Kestner  <mkestner@novell.com>
3337
3338         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
3339         to fix all hdr height padding codepaths.  Fixes #80207.
3340
3341 2007-01-02  Chris Toshok  <toshok@ximian.com>
3342
3343         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
3344         setting it to the Control defaults anyway, and it being after the
3345         Dock set was screwing up layout.
3346         (set_Dock): don't short circuit out of setting base.Dock.  Also,
3347         no need to call UpdateStatusBar here, as it'll be re-layed out if
3348         it needs to be.
3349
3350 2007-01-02  Mike Kestner  <mkestner@novell.com>
3351
3352         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
3353         to header height for width == -1. Fixes the rest of #80207.
3354
3355 2007-01-02  Mike Kestner  <mkestner@novell.com>
3356
3357         * ListView.cs: rework the mouse event forwarding everaldo added
3358         to translate the coordinates to the parent control not
3359         raise the parent events until after we've done our work. Hover
3360         needs more work, in the case where HoverSelection is on, because
3361         the item control receives more than one MouseHover per Enter
3362         event, so we need to ensure only the "first" hover gets forwarded.
3363         Opening a minor bug for that.
3364
3365 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
3366
3367         * CheckedListBox.cs: Fixed SelectionMode to match MS.
3368         * ListControl.cs: Implemented AllowSelection property. Removed extra
3369         tabs.
3370         * ListBox.cs: Implemented AllowSelection property.
3371
3372 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3373
3374         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
3375         SelectedItem, it prevent for errors when you must disable item
3376         before perform click. Fixes #80409.
3377
3378 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3379
3380         * MenuAPI.cs: Prevent second level and beyond submenus to close
3381         until first level when move out side of popup.
3382         
3383 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3384
3385         * MenuAPI.cs:
3386         - Down submenu positin in three pixels.
3387         - Closes sub menu when mouse leaves from menu. Fixes #80402.
3388
3389 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3390
3391         * ThemeWin32Classic.cs:
3392         - Fix popup menu size adding one pixel on the top.
3393         - Down menu item border from two to one to mimic Win32.
3394         - Some source identation fixes. 
3395
3396 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3397
3398         * ThemeWin32Classic.cs: Use float numbers to calculate size and
3399         position of menu arrows, it fix wrong arrow size.
3400
3401 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3402
3403         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
3404         instead of line, it simplify draw operation and fix it using 3D
3405         borders to mimic Win32.
3406
3407 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
3408
3409         * StatusStrip.cs: Add implementation of the sizing grip.
3410
3411         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
3412         StatusStrip rendering.
3413
3414 2006-12-31  Chris Toshok  <toshok@ximian.com>
3415
3416         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
3417         override the layout style (anchor/dock) of the control.  assign to
3418         Dock instead.  Fixes bug #80416.
3419
3420         * ToolStrip.cs: same.
3421
3422 2006-12-31  Andreia Gaita  <avidigal@novell.com>
3423
3424         * ContainerControl.cs: Use ContainerSelected flag to check if 
3425         a Container is directly selected, or if Select is called on a 
3426         non-container. If a container is directly selected, focus events 
3427         should not be raised.
3428         Apply #80411 patch to throw exception on set_ActiveControl if 
3429         control is the same as the current one.
3430         
3431         * Control.cs: Use ContainerSelected flag (see above).
3432         Add invalidation check to raise event but not invalidate if 
3433         dimensions are 0.       
3434         Apply #80411 patch.
3435         
3436
3437 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
3438
3439         * MenuAPI.cs: After click, dont close popup menu when menu is
3440         ContextMenu. Fixes #80399.
3441
3442 2006-12-30  Chris Toshok  <toshok@ximian.com>
3443
3444         * ContainerControl.cs: make sure we throw the exception if the
3445         container control doesn't contain the control we're setting
3446         ActiveControl to.
3447
3448 2006-12-30  Chris Toshok  <toshok@ximian.com>
3449
3450         * Control.cs (SetTopLevel): fix the exception raised by
3451         SetTopLevel for child controls.
3452         (set_Anchor): call UpdateDistances when setting the anchor type.
3453         This fixes bug #80336.
3454
3455 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3456
3457         * Theme.cs: For now, revert back to 8pt font.
3458
3459 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
3460
3461         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
3462         Fixes #80395.
3463
3464 2006-12-29  Chris Toshok  <toshok@ximian.com>
3465
3466         * Control.cs: reorder the code in OnResize to give the same event
3467         ordering as MS.
3468
3469 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3470
3471         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
3472         TileHorizontally and TileVertically.
3473         
3474 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
3475
3476         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
3477         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
3478         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
3479         Corrected copyright and email adress.
3480
3481 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3482
3483         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
3484         of Exception in FullPath property if no TreeView is associated with
3485         the TreeNode.
3486
3487 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3488
3489         * Theme.cs: Marked default_font as private, and initialize it in ctor
3490         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
3491         on 2.0 profile.
3492         * ThemeGtk.cs: Removed default_font intialization.
3493         * ThemeWin32Classic.cs: Removed default_font initialization.
3494
3495 2006-12-28  Chris Toshok  <toshok@ximian.com>
3496
3497         * Control.cs: fix a couple of place where we were creating handles
3498         more aggressively than we should be.  Fixes ControlRefresh unit
3499         tests.
3500
3501 2006-12-28  Chris Toshok  <toshok@ximian.com>
3502
3503         * Control.cs: contrary to what the comment said, Control.Dock does
3504         not supercede Control.Anchor - the last one you assign to decides
3505         the layout behavior.  so we need to keep track of which was the
3506         last set.  Also, fix some of the affected property arguments in
3507         PerformLayout calls, and remove an redundant parent.PerformLayout
3508         call in OnResized.
3509
3510         Add a VisibleInternal property, which returns is_visible.  We
3511         can/should get rid of all the usage of this field elsewhere.
3512
3513 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3514         
3515         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
3516         control style, not DoubleBuffer. Added UseDoubleBuffering property
3517         that indicates whether doublebuffering is enabled and supported.
3518         (comment from and code based on Gert Driesen's patch in #80324).
3519         Fixes #80324.
3520
3521 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3522         
3523         * Control.cs: Fixed a NRE.
3524
3525 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3526
3527         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
3528         for 2.0.
3529
3530 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3531
3532         * Control.cs: Rewrote double buffering, now a seperate
3533         class handles all the buffering, no Graphics is disposed of
3534         until the painting is finished (earlier implementation 
3535         would crash if the control was resized in the OnPaint, 
3536         since it would cause the double buffer to be recreated
3537         and the old one disposed), a separate Graphics is 
3538         created for every paint (MS behaviour and anyways the state
3539         of the Graphics would have to be saved and restored otherwise)
3540         
3541         * XplatUIDriver.cs: 
3542         * XplatUIX11.cs:
3543         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
3544         so that we can get the graphics for the back buffer without
3545         having to create a new one and remove the offscreen_dc parameter
3546         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
3547         
3548 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3549
3550         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
3551         Also make virtual all the key-related methods.
3552
3553         * ListViewItem.cs: Make virtual the key related methods for
3554         ListViewSubItemCollection.
3555
3556 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3557
3558         * ListView.cs:
3559         * ListViewItem.cs:
3560         * ThemeWin32Classic.cs:
3561         * Theme.cs: Initial support for Tile view in ListView,
3562         as well as the implementation of the required bits for it (Item
3563         and Subitem).
3564
3565 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3566
3567         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
3568         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
3569         Provide useful exception messages.
3570
3571 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3572
3573         * TrackBar.cs: Remove a warning.
3574         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
3575         when used by DateTimePicker, fixes #80287. This also requires that 
3576         MonthCalendar implements it's own drawing for the yearly updown control,
3577         otherwise the Capture tracking would be too complicated. Removed the Click 
3578         and DoubleClick events (according to comments they were hiding the base class
3579         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
3580         raise these events, not that they cannot be raised. It is possible to raise 
3581         them by calling OnClick and OnDoubleClick). Added two internal fields in 
3582         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
3583         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
3584         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
3585         event, no longer needed.
3586         
3587 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3588
3589         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
3590         true if new value differs from current value.
3591
3592 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3593
3594         * Control.cs: ControlCollection.Count must be public. Fixed build of
3595         unit tests.
3596
3597 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3598
3599         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
3600
3601 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3602
3603         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
3604
3605 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3606
3607         * Control.cs: Invalidates control including when Width and Height is 
3608         equal zero or is not visible, only Paint event must be care about 
3609         this. Fixes #79913.
3610
3611 2006-12-26  Chris Toshok  <toshok@ximian.com>
3612
3613         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
3614         more corcompare work.
3615
3616         * DataGridView.cs: fix compiler warning.
3617
3618         * ColumnHeader.cs: some corcompare work, and also take the
3619         opportunity to make the internal fields private.
3620
3621         * ListView.cs: fix the fallout from the above field change.
3622
3623 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3624
3625         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
3626         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
3627         ToolStripTextBox.cs: Fixes to events and corcompare.
3628
3629 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3630
3631         * ListView.cs: Call owner.OnMousexx event to propagate events from
3632         item to ListView. Fixes #80367.
3633
3634 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3635
3636         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
3637         if value is less than one. ItemHeight should not be set to a value
3638         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
3639         Removed extra tabs.
3640
3641 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3642
3643         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
3644         * ToolStripStatusLabel.cs: Add Spring for Moma.
3645
3646 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3647
3648         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
3649         Fixed code formatting. Removed debug code.
3650         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
3651
3652 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3653
3654         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
3655         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
3656         ArgumentOutOfRangeException if ColumnCount is negative. In 
3657         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
3658         less than 4 or higher than 32768.
3659         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
3660         Fixed FormatProvider to return CurrentCulture unless explicitly set.
3661         Fixed IsFormatProviderDefault to return true if FormatProvider has
3662         not been explicitly set.
3663
3664 2006-12-25  Chris Toshok  <toshok@ximian.com>
3665
3666         * Application.cs: add a couple of 2.0 events.
3667
3668 2006-12-25  Chris Toshok  <toshok@ximian.com>
3669
3670         * Control.cs: fix compiler warning.
3671
3672         * AxHost.cs: corcompare fixes.
3673
3674         * ApplicationContext.cs: corcompare fixes.
3675
3676 2006-12-25  Chris Toshok  <toshok@ximian.com>
3677
3678         * Control.cs: only update dist_right/dist_bottom if the
3679         width/height is > 0.  this fixes anchored controls being resized
3680         smaller until they disappear and then resized larger again.
3681
3682 2006-12-25  Chris Toshok  <toshok@ximian.com>
3683
3684         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
3685         since they're nothing more than X/Left and Y/Top, respectively.
3686
3687         Also, move back to a per-control Bitmap/Graphics for
3688         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
3689         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
3690         Height.
3691
3692 2006-12-25  Miguel de Icaza  <miguel@novell.com>
3693
3694         * MessageBox.cs: Implemented overload that takes a new "bool
3695         displayHelpButton" by adding a new internal field "show_help".
3696         When clicked this will raise the HelpRequested on the owner or the
3697         main form. 
3698
3699         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
3700         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
3701
3702         * ListView.cs: Add support ColumnWidthChanged and
3703         ColumnWidthChanging. 
3704
3705         Add support for ColumnReordered event.
3706         (ReorderColumn): Add NET_2_0 specific support for cancelling the
3707         reorder.
3708
3709         Very nice codebase!
3710
3711         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
3712
3713         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
3714
3715 2006-12-24  Chris Toshok  <toshok@ximian.com>
3716
3717         * GridTablesFactory.cs: 2.0 corcompare work.
3718
3719         * ToolStripContainer.cs: add "override" to
3720         ContextMenuStripChanged, and remove the local event object.
3721
3722         * ToolStripDropDown.cs: same with a couple properties.
3723
3724         * ToolStripPanel.cs: same with AutoSizeChanged event.
3725
3726         * TextBoxBase.cs: add "override" to AutoSizeChanged.
3727
3728         * Form.cs: add the remaining 2.0 events, and do some corcompare
3729         attribute work.
3730
3731         * DateTimePicker.cs: add "new" to padding.
3732
3733         * ButtonBase.cs: use Control's use_compatible_text_rendering.
3734
3735         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
3736
3737         * DataGridView.cs: PaddingChanged is overridden.
3738
3739 2006-12-24  Chris Toshok  <toshok@ximian.com>
3740
3741         * Control.cs: corecompare work here too.
3742
3743         * DataGridViewElement.cs, DataGridView.cs,
3744         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
3745         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
3746         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
3747         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
3748         work.
3749
3750 2006-12-24  Miguel de Icaza  <miguel@novell.com>
3751
3752         * Control.cs: Switched the error message on the console for a
3753         todo.  A review of the code will have to cope with this anyways
3754         (since its a large feature, it is in our radar) and it was
3755         producing too much output when running PDN.
3756
3757         * ToolStripComboBox.cs: Set the text when the SelectedIndex
3758         changes.  Applications depend on this (PDN 2.72)
3759
3760 2006-12-23  Chris Toshok  <toshok@ximian.com>
3761
3762         * TableLayoutSettings.cs: finish up the corcompare work for this
3763         class.
3764
3765 2006-12-23  Chris Toshok  <toshok@ximian.com>
3766
3767         * Control.cs: make SetImplicitBounds internal, do some futzing
3768         with LayoutEngine so that it's available in 1.1, and remove the
3769         entire duplicated code mess from PerformLayout.  Use
3770         System.Windows.Forms.Layout.DefaultLayout instead.
3771
3772         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
3773
3774 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
3775
3776         * Form.cs: Add MainMenuStrip property.
3777
3778 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
3779
3780         * Control.cs: Add ContextMenuStrip property and implementation.
3781         Fix ContextMenu implementation to show menu centered on control when
3782         activated using the keyboard instead of showing at screen (0,0).
3783
3784         * ToolStripDropDown.cs: Fix needed overload of Show ().
3785
3786 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3787
3788         * Menu.cs: Name property added for 2.0 profile.
3789         
3790 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3791
3792         * Menu.cs: Update information about FindMenuItem, method to be
3793         implemented soon.
3794
3795 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3796
3797         * MenuAPI.cs: When deselect items deselect also selected subitems.
3798         
3799 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3800
3801         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
3802         FindSubItemByCoord to found itens that is not active, also an
3803         cheking added to FindSubItemByCoord to search for items only 
3804         in visible popup windows. Fixes #80274.
3805
3806 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
3807
3808         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
3809         internal property, it be care about change ExStyle. 
3810
3811 2006-12-22  Andreia Gaita  <avidigal@novell.com>
3812
3813         * ContainerControl.cs: set activeControl for parent forms up the 
3814         tree when the new activecontrol is a container.
3815         When validating the active control, if it is a container, also
3816         raise up the validation for it's active control. Fixes #80280
3817         
3818         * Control.cs: Add internal property flag and check to prevent
3819         Focus events from getting raised when Select() is called for
3820         a ContainerControl. There are still too many focus events being
3821         raised at the moment though.
3822         Cleaned up the code a bit.
3823
3824 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3825
3826         * Control.cs: Added all missing 2.0 events.and
3827         fixed a couple of corcompare issues.
3828         * TrackBar.cs: Implemented missing 2.0 bits.
3829         * MonthCalendar.cs, 
3830         * DateTimePicker.cs, 
3831         * MdiClient.cs: Fixed some corcompare issues.
3832
3833 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3834
3835         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
3836         SplitterPanel.cs: corecompare work.
3837
3838 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3839
3840         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
3841         Clean up warnings for BackgroundImageChanged and PaddingChanged
3842         events now that they are implemented in Control.cs.
3843
3844 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3845
3846         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
3847         
3848         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
3849         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
3850         of TableLayoutPanel and supporting cast.
3851
3852 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3853
3854         * XplatUIWin32.cs: 
3855         - GrabWindow now confines the mouse pointer to the confine window.
3856         - Added Win32ClipCursor and Win32GetClipCursor.
3857
3858         * Control.cs: 
3859         - Added CaptureWithConfine to be able to capture and confine 
3860         mouse pointer.
3861         
3862         * InternalWindowManager.cs: 
3863         - Call CaptureWithConfine instead of Capture if we're an
3864         MdiChild (fixes #79982).
3865
3866 2006-12-21  Chris Toshok  <toshok@ximian.com>
3867
3868         * DataGrid.cs: guard against the initial state of selection, where
3869         selection_start == -1.  make sure we only select from index >= 0.
3870         Fixes bug #80291.
3871
3872 2006-12-21  Chris Toshok  <toshok@ximian.com>
3873
3874         * Control.cs: we don't need to be so draconian with
3875         UpdateDistances, and we thusly don't need to call it before
3876         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
3877
3878 2006-12-21  Daniel Nauck  <dna@mono-project.de>
3879
3880         * ComboBox.cs,
3881         TextBox.cs: Implemented AutoComplete properties.
3882
3883 2006-12-20  Chris Toshok  <toshok@ximian.com>
3884
3885         * DataGridView*.cs: some corecompare work.
3886
3887 2006-12-20  Jackson Harper  <jackson@ximian.com>
3888
3889         * XplatUIX11.cs: We need to hide the caret when deleting it,
3890         otherwise you get carets left lying around everywhere.
3891         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
3892         prevents getting some weird half drawn caret tracers when
3893         scrolling.
3894         * TextControl.cs: Attempt to reduce the number of times we need to
3895         recreate the caret.
3896
3897 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
3898
3899         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
3900
3901 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3902
3903         * DateTimePicker.cs:
3904         - Implemented missing 2.0 bits.
3905         - Changed some default values to match MS.
3906         
3907 2006-12-20  Jackson Harper  <jackson@ximian.com>
3908
3909         * TextBoxBase.cs: When changing the font across the document we
3910         can't recalculate after changing each line, since that will cahnge
3911         the line count.
3912         - PreferredHeight is a little different than i thought.
3913         - When backspacing, move the caret before we do the actual char
3914         delete, because when that delete crosses a wrap boundary the
3915         positional information will change.
3916
3917 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3918
3919         * Control.cs: Added some missing 2.0 bits: 
3920         BackgroundImageLayout, BackgroundImageLayoutChanged, 
3921         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
3922         add IBindableComponent and IDropTarget implementation.
3923         
3924         * MonthCalendar.cs: 
3925         - Added all missing 2.0 features:
3926         BackgroundImageLayout, RightToLeftLayout, 
3927         OnHandleDestroyed, RightToLeftLayoutChanged, 
3928         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
3929         PaddingChanged.
3930         - Rewrote all the BoldDate code, it was completely broken.
3931         - Fixed all the tests (the tests can now be re-enabled, the
3932         problems were not with the tests, but with the control, it was
3933         mostly broken).
3934         
3935         * DateTimePicker.cs: Changed the location where the 
3936         MonthCalendar is shown.
3937         
3938 2006-12-19  Chris Toshok  <toshok@ximian.com>
3939
3940         * DataGridView.cs: add IDropTarget implementation.
3941
3942         * ToolStripPanel.cs: add IDropTarget implementation.
3943
3944 2006-12-19  Jackson Harper  <jackson@ximian.com>
3945
3946         * TextControl.cs: soft now means something different than what it
3947         used to mean, we want to move the caret regardless of whether or
3948         not this break was soft (would we really have wanted the caret
3949         to not move with the break in the old context?)
3950         * TreeView.cs: Make sure we factor in the vert scrollbar when
3951         calculating the horizontal scrollbar's maximum.
3952
3953 2006-12-19  Andreia Gaita  <avidigal@novell.org>
3954
3955         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
3956         check for keywords in alternate casing, close bug #80049.
3957
3958 2006-12-19  Chris Toshok  <toshok@ximian.com>
3959
3960         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
3961         methods (which all do nothing).
3962
3963         * IDropTarget.cs: add the 4 missing methods.
3964
3965 2006-12-19  Chris Toshok  <toshok@ximian.com>
3966
3967         * TableLayoutRowStyleCollection.cs: corcompare work.
3968         
3969         * TableLayoutSettings.cs: same.
3970
3971         * TableLayoutStyle.cs: same.
3972
3973         * TableLayoutColumnStyleCollection.cs: same.
3974
3975 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
3976
3977         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
3978         TableLayoutPanel I've had in my local tree for way too long.
3979
3980 2006-12-19  Miguel de Icaza  <miguel@novell.com>
3981
3982         * TableLayoutSettings.cs: Finish the public API (still needs all
3983         the logic to update on changes). 
3984
3985         * TableLayoutPanelCellPosition.cs: new file.
3986         
3987         * TableLayoutRowStyleCollection.cs,
3988         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
3989         TableLayoutSettings.cs: Track the final 2.0 table api.
3990
3991 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3992
3993         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
3994         and Image List 2.0 members for ColummnHeader.
3995         * ListView.cs: Add key-related 2.0 methods for
3996         ColumnHeaderCollection.
3997
3998 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
3999
4000         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
4001         ArgumentNullException if items argument is null. Ignore null item in
4002         arrays. Removed extra tabs.
4003
4004 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
4005
4006         * MonthCalendar.cs: Fixed InvalidCastException.
4007
4008 2006-12-19  Jackson Harper  <jackson@ximian.com>
4009
4010         * TextControl.cs: Don't increment the position here.
4011         - When calculating char positions only add in the line break size
4012         for hard line breaks.
4013
4014 2006-12-19  Andreia Gaita  <avidigal@novell.org>
4015
4016         * SendKeys.cs: Changed some things to match ms.net behaviour
4017         when parsing shifted capital letters.
4018         
4019         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
4020         Add window handle as parameter to SendInput. X11 needs the 
4021         window handle, and the handle being passed      to it in the keys 
4022         queue is the active control handle (which windows needs), not 
4023         the window handle.
4024         
4025         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
4026         to support SendKeys on X.       
4027         
4028         * X11Keyboard: Implement helper method to lookup a linux keycode
4029         given the virtual keycode. Added table of keycode-2-virtualkey
4030         values to support this.
4031
4032 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4033
4034         * ListView.cs: Add support for SelectedIndexCollection
4035         and SelectedItemCollection 2.0 methods. Implement support
4036         for ImageKey too.
4037         * ListViewItem.cs: Add support for ListViewSubItemCollection
4038         2.0 methods. Also, fix an incorrect behavior of AddRange method
4039         (it shouldn't call Clear).
4040         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
4041
4042 2006-12-19  Jackson Harper  <jackson@ximian.com>
4043
4044         * RichTextBox.cs: 
4045         * TextBoxBase.cs: New args for FormatText
4046         * TextControl.cs: Rewrote the main drawing method, this version
4047         feels a little easier to understand and debug to me.  Hopefully it
4048         does to others also
4049         - Fix FormatText to OR in the new formating values.  Added
4050         FormatSpecified param, basically this works in the same way as
4051         BoundsSpecified in Control.
4052         - Set the caret properties when the caret is positioned.
4053         - When wrapping text make sure that we calculate the width of the
4054         last character
4055         - when calculating alignments we might have wrapped down to the
4056         next line, so don't search for an individual tag, search for the
4057         end of the line
4058         - We need to invalidate the selection area when we replace the
4059         selection.
4060         
4061 2006-12-19  Daniel Nauck  <dna@mono-project.de>
4062
4063         * Application.cs: add Restart () 2.0 support
4064
4065 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4066
4067         * MenuItem.cs: Invalidate menu item rectangle after change Enable
4068         property. Fixes #80268.
4069         
4070 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4071
4072         * MenuAPI.cs: Dont trigger select event when closes top menu
4073         item. Fixes #80270.
4074
4075 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4076
4077         * MenuAPI.cs: When you click on menuitem only trigger onselect
4078         event for top menu itens. Fixes #80271.
4079         
4080 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4081
4082         * MdiWindowManager.cs: Make IconicBounds depend on
4083         the bottom of MdiClient, not the top (fixes #80267)
4084         
4085 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4086
4087         * MdiClient.cs: Added missing 2.0 attribute
4088
4089 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4090
4091         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
4092         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
4093
4094 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
4095
4096         * MenuAPI.cs: Fix click when menuitem is not popup,
4097         this regression was caused by last commit (#80272).
4098
4099 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
4100
4101         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
4102         fire click event or close menu. Fixes #80272.
4103
4104 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4105
4106         * ListViewHitTestInfo.cs: add
4107
4108 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4109
4110         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
4111         * FlatButtonAppearance.cs: add
4112         * DockingAttribute.cs: add
4113
4114 2006-12-17  Chris Toshok  <toshok@ximian.com>
4115
4116         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
4117         and rebind our columns when it does - this way, if you make
4118         changes to the DataTable (or set the Table attribute on a DataView
4119         after setting it as the DataGrid's DataSource, the changes are
4120         made visible.)  Fixes bug #80107.
4121
4122 2006-12-17  Daniel Nauck  <dna@mono-project.de>
4123
4124         * ListViewGroup.cs: add internal Location property for layouting.
4125         * Theme.cs: add abstract ListViewGroupHeight function.
4126         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
4127
4128 2006-12-16  Andreia Gaita  <avidigal@novell.com>
4129
4130         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
4131         Added reset of selected index to 0 when adding first tab page.
4132         Fixes #80264
4133         
4134         * NumericUpDown.cs: Fix NET_2_0 check
4135
4136 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4137
4138         * ListViewGroup.cs: fixed DefaultValueAttribute value
4139
4140 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4141
4142         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
4143
4144 2006-12-15  Miguel de Icaza  <miguel@novell.com>
4145
4146         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
4147         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
4148         ScrollableControl.cs: Add a handful of methods that are
4149         overwritten in 2.0 
4150
4151 2006-12-15  Chris Toshok  <toshok@ximian.com>
4152
4153         * XplatUIWin32.cs: initial implementation of the Reversible
4154         drawing functions.  there are some problems.  DrawReversibleFrame
4155         doesn't seem to work at all for Dashed FrameStyle, and in the
4156         Thick case there are drawing errors at the corners (we probably
4157         need to bind Rectangle instead of doing moveto/lineto's.)
4158
4159 2006-12-16  Andreia Gaita  <avidigal@novell.com>
4160         
4161         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
4162         to send blocks of key messages. Send accumulates keys to send with Flush, 
4163         while SendWait sends all keys immediately.
4164                 
4165         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
4166         XplatUIX11.cs,  XplatUIX11-new.cs:
4167         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
4168         to Win32 SendInput.
4169         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
4170         
4171         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
4172         testing for ms.net on this class is very tricky, as the tests run too fast 
4173         to allow the hook to release, essentially freezing the keyboard and the 
4174         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
4175         category :p
4176
4177 2006-12-16  Daniel Nauck  <dna@mono-project.de>
4178
4179         * Padding.cs: fixed serialization compability to MS ("_var" field names),
4180                         added missing attributes.
4181  
4182 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4183
4184         * ListViewGroup.cs: Added missing attributes.
4185         * ListViewGroupCollection.cs: Added missing attributes.
4186
4187 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4188
4189         * ListViewItem.cs: fixed ListViewSubItem text property.
4190
4191 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4192         
4193         * Control.cs: Added missing 2.0 attributes
4194         
4195 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4196         
4197         * MdiClient.cs: Added missing 2.0 attribute.
4198         * MonthCalendar.cs: Added some missing 2.0 attributes 
4199         and properties.
4200         
4201 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4202
4203         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
4204
4205 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
4206
4207         * MainMenu.cs: Add the new 2.0 constructor to help out people
4208         using the MainMenu in VS2005.
4209
4210 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4211         
4212         * MdiChildContext.cs: Removed it, no longer used.
4213         * MdiClient.cs: Added missing 2.0 attributes.
4214         
4215 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4216         
4217         * InternalWindowManager.cs: Fix a NullRef with previous 
4218         changes for toolwindows.
4219         
4220 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4221
4222         * Control.cs: 
4223         - Added AfterTopMostControl to allow for certain controls 
4224         to always stay on top when normal controls are brought to 
4225         front.
4226         
4227         * XplatUIWin32.cs: 
4228         - (DrawInversibleRectangle): Get window rectangle from Win32 
4229         in stead of from control, since Win32 doesn't calculate
4230         screen coords correctly from control's Location if it 
4231         have docked siblings.
4232         
4233         * MdiWindowManager.cs:
4234         - Correct the control menu popup location when clicked on
4235         the maximized form icon. (fixes #80223.1)
4236         - Don't show moving rectangle if mouse hasn't moved from
4237         the original clicked point.
4238         - Removed FormGotFocus handler (not used).
4239         - Calculate the control buttons location from the main
4240         window's size and not client size (fixes #79770).
4241         - Form is now closed when the form icon is double-clicked
4242         (fixes #79775). 
4243         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
4244         
4245         * InternalWindowManager.cs:
4246         - Moved some MDI-only methods to MdiWindowManager.
4247         - Removed unused properties and methods.
4248         - Unified method naming for methods handling wm messages.
4249         - Moved all message handling to seperate methods for
4250         each message.
4251         
4252         * ThemeWin32Classic.cs:
4253         - DrawManagedWindowDecorations now draws the title bar 
4254         with a gradient brush.
4255         - Add a CPDrawButtonInternal that allows us to specify
4256         light, normal and dark colors for the buttons (control 
4257         buttons for MDI children were drawn with the same light
4258         color as the background, therefore loosing the 3D effect).
4259         
4260         * SizeGrip.cs:
4261         - Add a CapturedControl property that is used to 
4262         determine the control to resize (defaults to parent). 
4263         Needed for MdiClient, since its SizeGrip's parent is
4264         MdiClient, but the control to resize is the main form.
4265         
4266         * MdiClient.cs:
4267         - Set SizeGrip's CapturedControl to the main form in order
4268         to resize the main form and not the MdiClient.
4269         - Override AfterTopMostControl to leave the scrollbars 
4270         always on top.
4271
4272 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4273
4274         * ListView.cs: fixed ListViewItemCollection AddRange and
4275                         implemented ListViewItemCollection AddRange 2.0 support.
4276
4277 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4278
4279         * ListViewGroup.cs: Add.
4280         * ListViewGroupCollection.cs: Add
4281         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
4282         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
4283                                 stub for ImageKey 2.0 support.
4284
4285 2006-12-14  Mike Kestner  <mkestner@novell.com>
4286
4287         * ListView.cs: add text padding to the autocalculation for columns
4288         of width -2.  Fixes #80207.
4289  
4290 2006-12-14  Mike Kestner  <mkestner@novell.com>
4291
4292         * ListView.cs: add some index guarding for partial row navigation 
4293         logic.  Fixes #80250.
4294
4295 2006-12-14  Mike Kestner  <mkestner@novell.com>
4296
4297         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
4298         are added or inserted to the collection.  Fixes #81099.
4299
4300 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
4301
4302         * MenuAPI.cs: Closes menu when right click out side of popup
4303         it fix problem in ContextMenu and MainMenu. Fixes #80252.
4304
4305 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4306
4307         * ListViewItem.cs: Fix dumb error.
4308
4309         * ListView.cs: Add Find and ContainsKey methods in 
4310         ListViewItemCollection, and also return true for IsReadOnly
4311         and IsFixedSize (changes for 2.0). 
4312
4313 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
4314
4315         * Control.cs: Allow Region to be set to null.
4316
4317 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4318
4319         * MdiWindowManager.cs: Remove unused (commented out) code.
4320         * Form.cs: When the MdiChild is maximized, the form needs 
4321         WM_NCMOUSELEAVE, so request it.
4322         * InternalWindowManager.cs: 
4323         - Added tooltips to control buttons.
4324         - Removed duplicated control button handling code.
4325         - Removed unused (commented out) code.
4326         
4327 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
4328
4329         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
4330         was used because we must set cursor without trigger ChangeCursor event
4331         and without change Cursor control property. Fixes #79963.
4332
4333 2006-12-12  Andreia Gaita  <avidigal@novell.com>
4334         
4335         * Control.cs: Check if Region setter value is null, and ignore
4336
4337 2006-12-12  Jackson Harper  <jackson@ximian.com>
4338
4339         * TextControl.cs: We were almost always drawing one more line then
4340         needed, since the GetLineByPixel will return the last line found
4341         at that pixel. In most cases though, we were invalidating up to
4342         the junction between two lines.
4343         - Improve debug code.
4344
4345 2006-12-12  Chris Toshok  <toshok@ximian.com>
4346
4347         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
4348         and FillReversibleRectangle.
4349
4350         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
4351         and FillReversibleRectangle.
4352
4353         * XplatUIWin32.cs: add stubs which do nothing for
4354         DrawReversibleFrame, DrawReversibleLine, and
4355         FillReversibleRectangle.
4356
4357         * XplatUIOSX.cs: add stubs which raise NIE for
4358         DrawReversibleFrame, DrawReversibleLine, and
4359         FillReversibleRectangle.
4360
4361         * XplatUIX11.cs: add working implementation for
4362         DrawReversibleFrame, DrawReversibleLine, and
4363         FillReversibleRectangle.
4364         
4365         * ControlPaint.cs: implement DrawReversibleFrame,
4366         DrawReversibleLine, and FillReversibleRectangle, by calling into
4367         the appropriate XplatUI method.
4368
4369 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4370
4371         * Form.cs: Make MdiClient have the focus even if it's
4372         not selectable, since it should receive WM_KEY* and WM_MOUSE 
4373         messages. Fixes #79907.
4374         
4375 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4376
4377         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
4378         queried after the window is created.
4379         
4380         * XplatUIX11.cs: Added SendParentNotify to implement 
4381         WM_PARENTNOTIFY logic. Fixes #79965.
4382         
4383         * Control.cs: Added MakeParam.
4384         
4385 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4386
4387         * MdiClient.cs: Resume Layout before setting window
4388         states (fixes #80201).
4389
4390 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4391
4392         * MenuAPI.cs: Deselect a menu item after performing
4393         the click (fixes #80197).
4394
4395 2006-12-11  Jackson Harper  <jackson@ximian.com>
4396
4397         * TextBoxBase.cs: We need to cap this value, since Maximum -
4398         ViewPortHeight can be less than zero.
4399         - Only do selection with the left mouse button.
4400         * TextBox.cs: Don't tell the world that we have a context menu.
4401         * Control.cs: New method so that we can control whether or not the
4402         context menu is visible outside MWF.
4403
4404 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4405
4406         * ToolBarButton.cs: Fix text positon. 
4407
4408 2006-12-11  Miguel de Icaza  <miguel@novell.com>
4409
4410         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
4411
4412         * Control.cs (DoubleBuffered): Add implementation.
4413
4414         * Application.cs (OpenForms): Add.
4415
4416 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4417
4418         * Form.cs: Use opacity instead of Opactiy to determine if we need
4419         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
4420
4421 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4422
4423         * Control.cs: Fix NRE if Control.Site was set to null.
4424
4425 2006-12-11  Chris Toshok  <toshok@ximian.com>
4426
4427         * Control.cs: ControlCollection.Remove should return if the arg is
4428         null, and ControlCollection.SetChildIndex should raise a ANE.
4429
4430 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
4431
4432         * Control.cs: Verify value set for Dock property. Code formatting
4433         updates.
4434
4435 2006-12-11  Jackson Harper  <jackson@ximian.com>
4436
4437         * TextControl.cs: Draw the caret and the selection when a flag is
4438         set on the owner.
4439         * TextBoxBase.cs: We want to draw the caret and the selection for
4440         TextBox but not for TextBoxBase.
4441         - If the window is resized and scrolling is no longer needed (the
4442         whole doc is visible) set the scroll position to zero.
4443         - The default SelectWord (the one TextBox uses) should move the
4444         caret to the end of the word.
4445         - SelectAll moves the caret to the end of the selection.
4446         * TextBox.cs: We don't selectall on focus, we just do it when the
4447         control is created.
4448         
4449 2006-12-11  Mike Kestner  <mkestner@novell.com>
4450
4451         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
4452
4453 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4454
4455         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
4456         2.0 support.
4457         * ListViewItem.cs: Add Name 2.0 property.
4458
4459 2006-12-11  Andreia Gaita  <avidigal@novell.com>
4460
4461         * TabControl.cs: Set visibility on selected or default tab 
4462         when tabcontrol handle is created, so that it's contents
4463         actually show up (duh). Fixes #80193
4464         Don't redraw the control if there is no handle created, as
4465         the selected index might be completely invalid. Added some tests
4466         to check for this.
4467
4468 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4469
4470         * ToolBar.cs: Uses maximun width and height of all buttons as 
4471         button rectangle when ButtonSize specified, it looks strange but
4472         is what happens in Win32. Fixes #80189.
4473
4474 2006-12-11  Jackson Harper  <jackson@ximian.com>
4475
4476         * TextControl.cs: Need to track undo levels ourself, since
4477         compound actions will mess them up.
4478
4479 2006-12-10  Andreia Gaita  <avidigal@novell.com>
4480
4481         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
4482         SelectedIndex value is changed (even if it's not valid).
4483         Reset SelectedIndex to 0 when the handle is created and if
4484         the current index is invalid.
4485         Fixes SelectdeIndex unit tests and #80128
4486
4487 2006-12-08  Chris Toshok  <toshok@ximian.com>
4488
4489         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
4490         calls EndEdit, it needs to be called before we set current_cell to
4491         its new value.  Otherwise, we end up committing the value in the
4492         textbox to the new cell as well.  Fixes bug #80160.
4493
4494 2006-12-08  Chris Toshok  <toshok@ximian.com>
4495
4496         * Form.cs (set_CancelButton): if the button's DialogResult is
4497         None, set it to Cancel.  Fixes bug 80180.
4498
4499 2006-12-08  Jackson Harper  <jackson@ximian.com>
4500
4501         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
4502         to watch ourselves when setting the canvas size and setting the
4503         scrollbar values.
4504
4505 2006-12-08  Chris Toshok  <toshok@ximian.com>
4506
4507         * DataGrid.cs: comment out the two MakeTransparent calls for the
4508         time being so people using trunk (and not 1.2.2) on windows can
4509         actually use the datagrid.  This deals with bug #80151.
4510
4511 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4512
4513         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
4514         Graphics.DrawImage (image, int, int, int, int) overload instead
4515         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
4516         the dpi difference and was blurring images it drew.
4517         [Fixes bug #79960]
4518
4519 2006-12-08  Chris Toshok  <toshok@ximian.com>
4520
4521         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
4522         rowcnt is 0 (such as with an empty datasource), and make sure we
4523         initialize not_usedarea.Y to cells.Y, so we don't draw over the
4524         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
4525
4526 2006-12-08  Chris Toshok  <toshok@ximian.com>
4527
4528         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
4529         grid.
4530
4531 2006-12-08  Chris Toshok  <toshok@ximian.com>
4532
4533         [ Fixes bug #80167 ]
4534         
4535         * ThemeWin32Classic.cs: don't draw the image if the button's flat
4536         style is FlatStyle.System.
4537
4538         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
4539         ButtonBase.flat_style private, and switch uses of it to the public
4540         property.
4541         
4542 2006-12-08  Chris Toshok  <toshok@ximian.com>
4543
4544         [ Fixes bug #80121 ]
4545         
4546         * ThemeWin32Classic.cs: center the caption text in the datagrid
4547         when we draw it.
4548
4549         * DataGrid.cs: lessen the amount we add to the caption height from
4550         6 to 2.  6 was making it huge.
4551
4552 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4553
4554         * UpDownBase: Handle MouseWheel call directly instead of capturing
4555         the inner textbox's OnMouseWheel. Fixes #80166
4556
4557 2006-12-08  Jackson Harper  <jackson@ximian.com>
4558
4559         * TextControl.cs: We need to invalidate the textbox when we empty
4560         it (how had this not been discovered before?)
4561
4562 2006-12-08  Jackson Harper  <jackson@ximian.com>
4563
4564         * TextBoxBase.cs: Reworked the mouse down code so I could get it
4565         to behave like MS, we now ignore the eventargs.Click and just
4566         track state ourself, which we were already doing anyways.
4567         - Constrain the double click handler to the double click size.
4568         
4569 2006-12-08  Chris Toshok  <toshok@ximian.com>
4570
4571         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
4572         direction if that scrollbar isn't shown.  fixes bug #80158.
4573
4574 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4575
4576         * NumericUpDown.cs: Update value on getter. Fixes #79950
4577
4578 2006-12-08  Chris Toshok  <toshok@ximian.com>
4579
4580         * MenuItem.cs: add back in the event cloning code.  I didn't know
4581         how to do it in the face of the EventHandlerList work i'd done
4582         last week.  Fixes bug #80183.
4583
4584 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4585
4586         * Control.cs: Add an invalidate to the BackgroundImage setter.
4587         [Fixes 80184]
4588
4589 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4590
4591         * ToolStrip*: Add some small properties reported by MoMA, fix event
4592         firing and default properties based off of unit tests, and add some
4593         attributes based off of the class status page.
4594
4595 2006-12-07  Jackson Harper  <jackson@ximian.com>
4596
4597         * TextBoxBase.cs: Take HideSelection into account when determining
4598         whether or not to show the selection.
4599         * RichTextBox.cs: After inserting the RTF into the document move
4600         the cursor to the beginning of the document.
4601
4602 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4603
4604         * Control.cs: Remove static ArrayList "controls" which maintained
4605         a reference to every control created.
4606         * Application.cs: Create a static FormCollection to maintain a reference
4607         to every form created.  Use it in places that formerly enumerated through
4608         the controls one looking for forms.
4609         * Form.cs: Add and remove self from above FormCollection.
4610
4611 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
4612
4613         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
4614           not libgdk (though it makes me wonder why I didn't have any
4615           problems)
4616
4617 2006-12-07  Chris Toshok  <toshok@ximian.com>
4618
4619         [ you had to know this was coming after that last commit...]
4620         
4621         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
4622         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
4623         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
4624         XCopyArea).
4625
4626 2006-12-07  Chris Toshok  <toshok@ximian.com>
4627
4628         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
4629         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
4630         all the behavior we need for double buffering.
4631
4632         * XplatUIDriver.cs: implement the 3 double buffer methods using a
4633         client side Bitmap, just like the old Control-based double buffer
4634         code did.  The methods are virtual, so each XplatUI driver
4635         subclass can replace the implementation to use a faster, platform
4636         specific approach.
4637
4638         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
4639         double buffer code, and clean things up a bit in the process.
4640
4641 2006-12-06  Chris Toshok  <toshok@ximian.com>
4642
4643         * Control.cs: reindent WndProc.
4644
4645 2006-12-06  Chris Toshok  <toshok@ximian.com>
4646
4647         [ I wanna be like BenM when I grow up ]
4648         
4649         * Hwnd.cs: create a single static Graphics object on the static
4650         Bitmap we create.  use this for our text measurements.
4651
4652         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
4653         This was causing us to allocate a backbuffer for every control,
4654         even when it wasn't flagged as double buffered.  Instead use the
4655         single graphics instance.  This might have implications for
4656         multithreaded applications.  If we run into problems we can switch
4657         to creating 1 Graphics per control, on the static Hwnd bitmap.
4658
4659         this change nets us a 7M savings in private dirty mappings when
4660         running FormsTest.exe.
4661
4662 2006-12-06  Chris Toshok  <toshok@ximian.com>
4663
4664         * ListView.cs: the BackgroundImage override is just to set
4665         attributes.  chain up to base.BackgroundImage.
4666
4667         * RichTextBox.cs: same.
4668
4669         * ToolBar.cs: same, but we need to also redraw the toolbar when it
4670         changes, so instead a handler for BackgroundImageChanged.
4671         
4672         * Control.cs: make background_image private.
4673
4674 2006-12-06  Chris Toshok  <toshok@ximian.com>
4675
4676         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
4677         sure we even need this assignment, but roll with it for now.
4678
4679         * Control.cs: make the cursor field private.
4680
4681 2006-12-06  Chris Toshok  <toshok@ximian.com>
4682
4683         * Form.cs: we don't need to explicitly set ImeMode to
4684         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
4685         behavior in the face of ImeMode.Inherit.
4686
4687         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
4688         change the ctor's assignment to use ImeMode instead of ime_mode.
4689
4690         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
4691         ImeModeInherit.  Only check for the parent's imemode (and return
4692         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
4693         This fixes the button unit test, which sets both ImeMode and
4694         DefaultImeMode to ImeMode.Disable.
4695
4696         also make the ime_mode field private.
4697
4698 2006-12-06  Chris Toshok  <toshok@ximian.com>
4699
4700         * Control.cs: make control_style private.
4701
4702         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
4703         setting the styles to true, then setting them to false instead of
4704         reverting to their previous values.
4705
4706         also, call SetStyle on the scrollbars instead of using
4707         control_style directly.
4708
4709 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
4710
4711         * FormCollection.cs: Implement. [2.0]
4712
4713 2006-12-06  Chris Toshok  <toshok@ximian.com>
4714
4715         * Control.cs: make tab_stop private.
4716
4717         * Label.cs: set TabStop, not tab_stop.  reformat some event
4718         add/remove methods to make them more compact.
4719
4720 2006-12-06  Chris Toshok  <toshok@ximian.com>
4721
4722         * RadioButton.cs: fix TabStop handling.
4723
4724 2006-12-06  Chris Toshok  <toshok@ximian.com>
4725
4726         * TextBox.cs: remove the explicit assignments to has_focus.
4727         Control does that.
4728
4729         * ButtonBase.cs: remove the assignment to has_focus.  Control will
4730         manage that.
4731         
4732 2006-12-06  Chris Toshok  <toshok@ximian.com>
4733
4734         * ButtonBase.cs: remove all uses of is_enabled from this code.
4735         it's always true when any of the code containing the checks is
4736         executed.
4737
4738 2006-12-06  Chris Toshok  <toshok@ximian.com>
4739
4740         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
4741         with different semantics (some are present in both 1.1 and 2.0
4742         profiles) so that we match MS's behavior in our unit tests.
4743
4744 2006-12-06  Jackson Harper  <jackson@ximian.com>
4745
4746         * TextControl.cs: Make this operation undoable.
4747         * TextBoxBase.cs: Factor the border width into the preferred
4748         height.
4749         - implement Modified as per the spec.
4750
4751 2006-12-06  Chris Toshok  <toshok@ximian.com>
4752
4753         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
4754
4755 2006-12-06  Chris Toshok  <toshok@ximian.com>
4756
4757         * Control.cs: make right_to_left and context_menu fields private.
4758
4759 2006-12-06  Chris Toshok  <toshok@ximian.com>
4760
4761         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
4762         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
4763         Control.child_controls private.  switch all uses over to
4764         Control.Controls.
4765
4766 2006-12-06  Chris Toshok  <toshok@ximian.com>
4767
4768         * System.Windows.Forms/GroupBox.cs,
4769         System.Windows.Forms/AccessibleObject.cs,
4770         System.Windows.Forms/ErrorProvider.cs,
4771         System.Windows.Forms/Control.cs,
4772         System.Windows.Forms/UpDownBase.cs,
4773         System.Windows.Forms/ScrollBar.cs,
4774         System.Windows.Forms/DateTimePicker.cs,
4775         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
4776         System.Windows.Forms/ToolTip.cs,
4777         System.Windows.Forms/RadioButton.cs,
4778         System.Windows.Forms/LinkLabel.cs,
4779         System.Windows.Forms/Splitter.cs,
4780         System.Windows.Forms/TextBoxBase.cs,
4781         System.Windows.Forms/ToolStripTextBox.cs,
4782         System.Windows.Forms/ContainerControl.cs,
4783         System.Windows.Forms/ThemeWin32Classic.cs,
4784         System.Windows.Forms/SizeGrip.cs,
4785         System.Windows.Forms/ToolStripDropDown.cs,
4786         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
4787         private.  switch all uses over to Control.Parent.
4788
4789 2006-12-06  Chris Toshok  <toshok@ximian.com>
4790
4791         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
4792         Control does this before calling emitting these events.
4793
4794         * TabControl.cs: same.
4795
4796         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
4797         Control.client_rect.
4798
4799         * ButtonBase.cs: use the ClientSize property instead of the
4800         client_size field.
4801
4802         * ScrollableControl.cs: same.
4803
4804         * Control.cs: another pass at making properties private.  also,
4805         move the initialization of tab_stop to the ctor.
4806
4807 2006-12-05  Andreia Gaita <avidigal@novell.com>
4808
4809         * TabControl.cs: Let the selected index be set freely if the 
4810         control handle is not yet created.
4811
4812 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
4813
4814         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
4815         internal until I can rewrite DefaultLayout.
4816         * ToolStrip.cs: Fix build error and some general cleaning.
4817         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
4818         Fix build errors caused by making some of Control's fields private.
4819
4820 2006-12-05  Jackson Harper  <jackson@ximian.com>
4821
4822         * TextControl.cs: Redo Insert a little so that it use IndexOf
4823         instead of Split, this prevents it from messing up on things like
4824         \n\n\n. Also more effecient since the split array doesn't need to
4825         be created.
4826         * TextBoxBase.cs: AppendText doesnt handle multiline and non
4827         multiline text differently, this is the first of many fixes that
4828         will make multiline/non-multiline the same thing as far as the
4829         TextBoxBase is concerned.
4830         - Don't split the text and insert lines, this can lose some line
4831         endings (like is the last line a soft or hard break). Instead use
4832         the new Insert.
4833         - Fix an off by one when combining all the lines in the Text
4834         getter.
4835         - Remove separate multiline handling from the Text getter/setter.
4836
4837 2006-12-05  Chris Toshok  <toshok@ximian.com>
4838
4839         * ButtonBase.cs: a few changes:
4840
4841         - don't reinitialize internal Control fields in the ctor when they
4842         have the same values as Control sets them.
4843
4844         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
4845         this before calling those methods.
4846
4847         - we don't need to call Refresh for anything.  use Invalidate
4848         instead.
4849
4850         - OnEnabledChanged doesn't need to redraw at all - Control.cs
4851         calls Refresh in its OnEnabledChanged.
4852         
4853         - several of the events we were registered for in the ctor to
4854         redraw ourselves already include calls to Invalidate in the
4855         property setters that raise the events.  remove the extra
4856         invalidation.
4857
4858         - reformat a switch statement that was 83274658 columns wide.
4859         
4860 2006-12-05  Mike Kestner  <mkestner@novell.com>
4861
4862         * ComboBox.cs: fix a unit test regression from a TextBox
4863         SelectionLength return of -1 when there's no selection.  
4864
4865 2006-12-05  Chris Toshok  <toshok@ximian.com>
4866
4867         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
4868         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
4869         cleaning up some of the internal Control fields being used by
4870         subclasses.
4871
4872 2006-12-05  Mike Kestner  <mkestner@novell.com>
4873
4874         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
4875         listbox after AddImplicit calls since it defaults to hidden. Add a 
4876         hack to preserve requested heights across DropDownStyle changes.
4877
4878 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
4879
4880         * PropertyGrid.cs: Hide FindFirstItem method from public API.
4881
4882 2006-12-05  Chris Toshok  <toshok@ximian.com>
4883
4884         * DataGridView.cs: fix compiler warnings.
4885
4886         * PrintControllerWithStatusDialog.cs: same.
4887
4888         * ToolBar.cs: same.
4889
4890         * FolderBrowserDialog.cs: same.
4891
4892         * Splitter.cs: same.
4893
4894         * DataGridViewComboBoxCell.cs: same.
4895
4896         * XplatUIWin32.cs: same.
4897
4898         * PictureBox.cs: same.
4899
4900         * Win32DnD.cs: same.
4901
4902         * PageSetupDialog.cs: same.
4903
4904         * FileDialog.cs: same.
4905
4906         * PrintDialog.cs: same.
4907
4908         * DataGridTextBoxColumn.cs: same.
4909
4910         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
4911
4912 2006-12-05  Chris Toshok  <toshok@ximian.com>
4913
4914         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
4915         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
4916         System.ComponentModel.EventHandlerList work.
4917
4918 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
4919
4920         * DrawTreeNodeEventArgs.cs: Added.
4921
4922 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4923         
4924         * InternalWindowManager.cs: Remove an unused field.
4925         
4926 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4927
4928         * InternalWindowManager.cs:
4929         - Save the point where the title bar is clicked.
4930         
4931         * MdiWindowManager.cs:
4932         - Only allow moving of the window as long as the 
4933         clicked point on the title bar does not get out of
4934         MdiClient's rectangle. Fixes #79982.
4935         
4936         * MdiClient.cs:
4937         - Added Horizontal/VerticalScrollbarVisible.
4938         - Simplified the scrollbar sizing algorithm.
4939         - Cache the difference in scrolled value in
4940         H/VBarValueChanged and move the calculation out
4941         of the for loop.
4942
4943 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4944
4945         * Control.cs: Make the Console.WriteLine in WndProc 
4946         write more info.
4947
4948 2006-12-05  Chris Toshok  <toshok@ximian.com>
4949
4950         * ToolStripManager.cs, ToolStripButton.cs,
4951         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
4952         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
4953         ToolStripSplitButton.cs, ToolStripSeparator.cs,
4954         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
4955         ToolStripProgressBar.cs, ToolStripContainer.cs,
4956         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
4957         to using System.ComponentModel.EventHandlerList.
4958
4959 2006-12-04  Chris Toshok  <toshok@ximian.com>
4960
4961         * LinkLabel.cs: fix up compiler warnings.
4962
4963         * TableLayoutSettings.cs: same.
4964
4965         * TreeView.cs: same.
4966
4967         * ToolBar.cs: same.
4968
4969         * TabControl.cs: same.
4970
4971         * RichTextBox.cs: same.
4972
4973         * ListViewItem.cs: same.
4974
4975         * PropertyGrid.cs: same.
4976
4977         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
4978
4979         * ToolTip.cs same.
4980
4981         * TextRenderer.cs: fix up compiler warnings.
4982
4983         * Label.cs: same.
4984
4985         * Form.cs: corcompare fixes.
4986
4987         * PictureBox.cs: fix up compiler warnings.
4988
4989         * ImageListStreamer.cs: same.
4990
4991         * TrackBar.cs: corcompare fix.
4992
4993         * Control.cs: fix up compiler warnings.
4994
4995         * SplitterPanel.cs: same.
4996
4997         * NumericTextBox.cs: same.
4998
4999         * ImageList.cs: same.
5000
5001         * StatusStrip.cs: same.
5002
5003         * ProgressBar.cs: corcompare fix.
5004
5005         * ToolStripButton.cs: fix up compiler warnings.
5006
5007         * ToolStripStatusLabel.cs: same.
5008
5009         * ToolStripSplitButton.cs: same.
5010
5011         * ToolStripSeparator.cs: same.
5012
5013         * ToolStripProgressBar.cs: same.
5014
5015         * ToolStripDropDownMenu.cs: same
5016
5017         * ToolStripDropDown.cs: same.
5018
5019         * ToolStripDropDownButton.cs: same.
5020
5021         * ToolStrip.cs: same.
5022
5023         * ToolStripControlHost.cs: same.
5024
5025         * ToolStripContentPanel.cs: same.
5026
5027         * ToolStripDropDown.cs: same.
5028
5029         * ToolStripContainer.cs: same.
5030
5031         * ToolStripPanel.cs: same, and add "new" where we need it to work
5032         with the new ArrangedElementCollection.
5033
5034         * ToolStripItemCollection.cs: add "new" where we need it to work
5035         with the new ArrangedElementCollection.
5036
5037 2006-12-04  Andreia Gaita <avidigal@novell.com>
5038
5039         * TabControl.cs: Fix default tab selection to after TabControl
5040         gets focus and not before. Fixes #80128
5041
5042 2006-12-04  Chris Toshok  <toshok@ximian.com>
5043
5044         * DataGridTableStyle.cs: remove the gross calling of
5045         datagrid.Refresh from here.  It's a broken idea and it doesn't
5046         work anyway.
5047
5048         * DataGrid.cs: instead, just register/unregister from the
5049         DataGridTableStyle events in CurrentTableStyle.  we play it
5050         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
5051         even though some would most likely not require it.  Fixes bug
5052         #80115 (and one portion of #80117 as a side effect).
5053
5054 2006-12-04  Chris Toshok  <toshok@ximian.com>
5055
5056         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
5057         so the textbox (if any) goes away.  Fixes bug #80117.
5058
5059 2006-12-04  Chris Toshok  <toshok@ximian.com>
5060
5061         * DataGridColumnStyle.cs: set the column's readonly property
5062         initially based on the property descriptor's IsReadOnly.  Fixes
5063         bug #80044.
5064
5065 2006-12-04  Chris Toshok  <toshok@ximian.com>
5066
5067         * ComboBox.cs: wrap the dropdown style changing work in
5068         SuspendLayout/ResumeLayout.  Fixes bug #79968.
5069
5070 2006-12-04  Jackson Harper  <jackson@ximian.com>
5071
5072         * TextBoxBase.cs: Fix off by one, since these are one-based.
5073         * TextBox.cs: Select all the text when we get focus.  The TextBox
5074         does this but the RTB does not.
5075
5076 2006-12-04  Chris Toshok  <toshok@ximian.com>
5077
5078         * DataGridTextBoxColumn.cs: remove some spew.
5079
5080         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
5081         but some part of me is saying "it shouldn't be here.."  At any
5082         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
5083         setting the value.
5084
5085 2006-12-04  Chris Toshok  <toshok@ximian.com>
5086
5087         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
5088         to reassign the propertydescriptor.
5089
5090 2006-12-04  Jackson Harper  <jackson@ximian.com>
5091
5092         * TextBoxBase.cs:
5093         * TextControl.cs: Remove some unused variables.  Maybe this will
5094         patch things up between mike and I.
5095         - don't split lines less then one char wide, if the viewport is
5096         that small text won't be visible anyways.
5097         
5098 2006-12-04  Jackson Harper  <jackson@ximian.com>
5099
5100         * TextBoxBase.cs: Default selection length is -1, need to do some
5101         more testing on windows to see when this is used for the property.
5102         - Redid the Lines [] property to that we properly remove soft line
5103         breaks
5104         - added support for preserving carriage returns
5105         -  CanUndo is not a variable like 'is undo enabled' it just returns
5106         true if there is undo operations available.
5107         - AppendText doesn't need to grab the last tag itself anymore,
5108         this happens automatically when we move the cursor.
5109         * TextControl.cs: Add CompoundActions to the undo class. This
5110         allows combining the other operations into one big option.  ie a
5111         paste will combine { delete old, insert new, move cursor }
5112         - Add InsertString undo operation
5113         - New method for deleting multiline text
5114         - Add carriage returns to lines. So we can preserve carriage
5115         returns when text is 'roundtripped'
5116
5117 2006-12-04  Chris Toshok  <toshok@ximian.com>
5118
5119         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
5120         minimum 0.  Fixes the scrollbar exception in bug #80136.
5121
5122 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5123
5124         * MdiClient.cs: 
5125         * MdiWindowManager: Removed unused fields and methods.
5126         
5127 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5128         
5129         * StatusBar.cs: Update all panels when a AutoSize=Contents
5130         panel needs updating.
5131         
5132         * StatusBarPanel.cs: Remove twidth and only use initialize.
5133         Fixes #80031.
5134                 
5135 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5136
5137         * Form.cs: When a form's MdiParent is set add it directly
5138         on top of the z-order in stead of relying on MdiClient's
5139         ActivateChild to do it. Fixes #80135.
5140         
5141         * MdiClient.cs: 
5142         - Remove original_order, mdi_child_list is already doing
5143         the same thing.
5144         - Create mdi_child_list on construction in
5145         stead of first use (avoids a few null checks).
5146
5147         * MenuItem.cs: Use an already existing list of mdi children
5148         to get the correct order of children and remove the other
5149         redundant list.
5150
5151 2006-12-04  Chris Toshok  <toshok@ximian.com>
5152
5153         * PropertyGridView.cs: cached_splitter_location is only used in
5154         !DOUBLEBUFFER code.
5155
5156         * PropertyGrid.cs: implement the ComComponentNameChanged event
5157         using Events, hoping that would fix the warning.  Looks like a
5158         compiler bug instead (#80144).
5159
5160         * PropertyManager.cs: remove unused method.
5161
5162 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
5163
5164         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
5165         include parentesis to fix expression evaluation. Fixes #79634.
5166
5167 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
5168         
5169         * MenuAPI.cs:
5170         - Changes to fix behavior in Menu control, some reported in #80097
5171         and other detected during behavior refactory like a select event
5172         problems.
5173         - Remove unneded "if's" conditions.
5174         - Created an internal to flag when popup is active in control, we need 
5175         it because in .NET you can have menu active but without popup active
5176         when you active menu using popup without visible items.
5177         - Mimic win32 behavior for Select and Popup events.  
5178         - Dont open popup menu when you dont have visible subitems.
5179         - Do nothing when click on disabled menu item.
5180         - Some small changes to follow the coding style guidelines.
5181         - Unselect menu only when another control gives focus. Fixes #80097.
5182         - Remove unused code.
5183         
5184         * MenuItem.cs: internal VisibleItems method to check if menu
5185         theres visible subitems, it will be usefull to fix some 
5186         behavior in Menu control.
5187         
5188 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
5189         
5190         * Timer.cs: Tag property for 2.0 profile.
5191         
5192 2006-12-01  Chris Toshok  <toshok@ximian.com>
5193
5194         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
5195         
5196         * Win32DnD.cs: comment out some unused fields.
5197
5198         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
5199         some unused properties/methods.
5200
5201         * XplatUIX11.cs: fix MousePosition so we override the base class's
5202         property instead of conflicting with it.
5203
5204         * PictureBox.cs: comment out some unused fields
5205
5206         * OSXStructs.cs: make some struct fields public.
5207
5208         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
5209         MousePosition so we override the base class's property instead of
5210         conflicting with it.
5211
5212         * X11Dnd.cs: comment out some unused fields
5213
5214         * X11DesktopColors.cs: fix some struct field visibility to quiet
5215         the compiler.
5216
5217         * X11Dnd.cs: remove some debug code.
5218
5219         * ThemeClearlooks.cs: comment out unused field.
5220
5221         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
5222
5223         * ThemeGtk.cs: comment out some unused pinvokes.
5224
5225         * Timer.cs: remove some unused fields.
5226
5227         * ThemeClearlooks.cs: comment out unused field.
5228
5229         * UpDownBase.cs: comment out unused field.
5230
5231         * DataObject.cs: comment out unused field.
5232
5233         * DataGridBoolColumn.cs: reomve unused field.
5234
5235         * DataGrid.cs: remove unused field.
5236
5237         * Cursor.cs: remove old ToBitmap code.
5238
5239         * ControlPaint.cs: remove unused method.
5240
5241         * ScrollBar.cs: remove unused fields.
5242
5243         * ComboBox.cs: remove unused field, and chain up to
5244         AccessibleObject ctor.
5245
5246         * ListBox.cs: remove unused field.
5247
5248         * ButtonBase.cs: wrap a couple fields in NET_2_0.
5249
5250         * GridEntry.cs: remove unused fields.
5251
5252         * Binding.cs: remove unused fields.
5253
5254         * AxHost.cs: remove unused method.
5255
5256         * ContainerControl.cs: remove unused field.
5257
5258         * ScrollableControl.cs: remove unused fields.
5259
5260 2006-12-01  Chris Toshok  <toshok@ximian.com>
5261
5262         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
5263         the Where/WhereString stuff.  it's easy enough to CWL
5264         Environment.StackTrace.
5265
5266         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
5267         unused private fields.
5268
5269 2006-12-01  Jackson Harper  <jackson@ximian.com>
5270
5271         * TextControl.cs: Do not update the view while inserting multiline
5272         text. If we update the view we might wrap lines, before entering
5273         the new lines, which causes the new line insertion calculations to
5274         be totally fubared.
5275         - Remove an old TODO
5276         - Make debug output a little nicer
5277         
5278 2006-12-01  Chris Toshok  <toshok@ximian.com>
5279
5280         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
5281
5282 2006-12-01  Chris Toshok  <toshok@ximian.com>
5283
5284         [ fix the majority of the CS0108 warnings we've been suppressing ]
5285         
5286         * TreeView.cs: mark BackgroundImageChanged as 'new'.
5287
5288         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
5289         to "LayoutToolBar" to quiet mcs.
5290         
5291         * TabControl.cs: mark our ControlCollection class as 'new'.
5292
5293         * TextBoxBase.cs: mark some events as 'new'.
5294
5295         * Splitter.cs: TabStop is 'new'.
5296
5297         * ControlBindingsCollection.cs: mark a few methods as new since
5298         they change the visibility from protected to public.
5299
5300         * RadioButton.cs: DoubleClick -> base class, and remove unused
5301         HaveDoubleClick.
5302
5303         * MonthCalendar.cs: ImeMode property -> base class, and mark many
5304         events as new.
5305
5306         * NumericUpDown.cs: TextChanged -> base class.
5307
5308         * CheckedListBox.cs: mark our ObjectCollection class as new to
5309         quiet mcs.
5310
5311         * FolderBrowserDialog.cs: make HelpRequest event new and have it
5312         muck with the base class.
5313
5314         * StatusBar.cs: fix some mcs warnings about Update being the same
5315         name as a base class method.
5316
5317         * RichTextBox.cs: mark some events as new, and make them do things
5318         to the base class impl.
5319
5320         * UserControl.cs: mark TextChanged as new, and have it manipulate
5321         base.TextChanged.
5322
5323         * UpDownBase.cs: mark some things new.
5324
5325         * CheckBox.cs: mark DoubleClick "new", and add some text about
5326         what we need to look at.
5327
5328         * Panel.cs: make the events "new", and manipulate the base
5329         version.  these are just here for attributes.
5330
5331         * AccessibleObject.cs: make owner private.
5332
5333         * Control.cs: deal with AccessibleObject.owner being private.
5334         cache our own copy if we need it.
5335
5336         * Button.cs: add "new" to the DoubleClickEvent.
5337
5338         * ListBox.cs: no need to track our own has_focus here.  let
5339         Control.has_focus do it for us.  Also some other work to clear up
5340         warnings about not overriding base class methods of the same name.
5341         
5342         * ComboBox.cs: clear up some warnings about not override base
5343         class methods of the same name.
5344
5345 2006-12-01  Chris Toshok  <toshok@ximian.com>
5346
5347         * Form.cs: flag a few things as "new" to quiet some of the mcs
5348         warnings.
5349
5350         * AxHost.cs: same.
5351
5352         * PrintPreviewDialog.cs: same.
5353
5354         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
5355         now DGV isn't so horrible on the class status page.  also, move
5356         all events to using System.ComponentModel.EventHandlerList.  my
5357         wrists hurt.
5358
5359 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5360
5361         * MdiWindowManager.cs:
5362         - Set form to active mdi child if shown,
5363         and update the active mdi child to the next 
5364         remaining child in the z-order if the form is hidden.
5365
5366         * Form.cs: 
5367         - Track if the form has been visible and if its 
5368         visibility is beeing changed, so that the MdiClient
5369         can properly decide the ActiveMdiChild. The MdiClient 
5370         cannot track this since the form can change visibility 
5371         before MdiClient is created.
5372
5373         * MdiClient.cs:
5374         - Don't activate anything of the parent form is changing
5375         its visibility.
5376         - Rework ActiveMdiChild to only return visible mdi 
5377         children and take into account several other corner 
5378         cases.
5379
5380 2006-12-01  Chris Toshok  <toshok@ximian.com>
5381
5382         * IBindableComponent.cs: new 2.0 interface.
5383
5384 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
5385
5386         * DataGrid.cs: Font for caption area is bold by default.
5387
5388 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
5389
5390         * Menu.cs: Tag property for 2.0.
5391         
5392 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
5393
5394         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
5395         
5396 2006-12-01  Chris Toshok  <toshok@ximian.com>
5397
5398         * TreeView.cs: doh, the Begin* events should be
5399         TreeViewCancelEventHandler.
5400
5401 2006-12-01  Chris Toshok  <toshok@ximian.com>
5402
5403         * Form.cs: Form.ControlCollection already stores off the
5404         form_owner field.  don't access the base class's internal "owner"
5405         field.
5406
5407         * Control.cs: make all the fields in Control.ControlCollection
5408         private.  there's no need for any internal fields here.
5409
5410 2006-12-01  Chris Toshok  <toshok@ximian.com>
5411
5412         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
5413         OnHandleCreated.  Fixes bug #80109.
5414
5415 2006-12-01  Chris Toshok  <toshok@ximian.com>
5416
5417         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
5418         SplitContainer.cs, Control.cs, StatusStrip.cs,
5419         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
5420         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
5421         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
5422         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
5423         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
5424         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
5425         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
5426         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
5427         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
5428         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
5429
5430         do most of the work to convert our code over to use
5431         System.ComponentModel.Component.Events for
5432         adding/removing/dispatching events.
5433
5434
5435 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5436
5437         * DataGridView.cs: Fix an ArgumentNullException reported 
5438         twice today in IRC.
5439
5440 2006-11-30  Mike Kestner  <mkestner@novell.com>
5441
5442         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
5443         grabbed listbox.  Fixes #80036 and #80101.
5444
5445 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5446
5447         * Message.cs: Changed ToString() to match MS.
5448         
5449 2006-11-30  Jackson Harper  <jackson@ximian.com>
5450
5451         * TextBoxBase.cs: You can still change the selected text on a read
5452         only textbox.
5453         * TextControl.cs: Lower magic number for wrap calculations. This
5454         lets text get closer to the right (far) edge.
5455
5456 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5457
5458         * Control.cs: Tweak 2.0 layout properties.
5459         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
5460         * TextRenderer.cs: Add a new overload.
5461         * ToolStrip*: Huge amount of changes and new features.
5462
5463 2006-11-30  Mike Kestner  <mkestner@novell.com>
5464
5465         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
5466         scroll range correct.  Fixes #79994.
5467
5468 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5469
5470         * MdiWindowManager.cs: Update main form's text when
5471         a form is closed. (fixes #80038)
5472         
5473 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
5474
5475         * ToolBar.cs:
5476         - Fix an regression in ButtonSize.
5477         - Get ImeMode default value change to "Disable".
5478         - Get ShowTooltips default value change to true, default value is 
5479         "false" but after make a test in .NET we get "true" result as default.
5480         
5481 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
5482
5483         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
5484
5485 2006-11-29  Chris Toshok  <toshok@ximian.com>
5486
5487         * XplatUIWin32.cs (GetWindowTransparency): check return value of
5488         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
5489         SetWindowTransparency hasn't been called.
5490
5491 2006-11-29  Chris Toshok  <toshok@ximian.com>
5492
5493         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
5494         if it's supported.
5495         (set_AllowTransparency): reorder things a little so that the
5496         WS_EX_LAYERED style is removed properly.
5497
5498 2006-11-29  Chris Toshok  <toshok@ximian.com>
5499
5500         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
5501         
5502         * Form.cs: only call the XplatUI transparency method (get/set) if
5503         SupportsTransparency says it's supported. Otherwise fallback to
5504         doing nothing (in the set case) or returning the instance field we
5505         cache (in the get case).
5506
5507         * XplatUIStructs.cs: add TransparencySupport flag enum.
5508         
5509         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
5510         change to SupportsTransparency.
5511
5512         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
5513         TransparencySupport.None from SupportsTransparency.
5514
5515         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
5516         TransparencySupport.Set from SupportsTransparency.
5517
5518         * XplatUIWin32.cs: implement GetWindowTransparency calling
5519         GetLayeredWindowAttributes, and implement SupportsTransparency by
5520         checking whether or not both
5521         GetWindowTransparency/SetWindowTransparency are available
5522         entrypoints.  We need to do this since SetWindowTransparency is
5523         available as of win2k, but GetWindowTransparency requires winxp.
5524         yay win32 api.
5525
5526         * XplatUI.cs: Add GetWindowTransparency, and change
5527         SupportsTransparency to allow for either/both Get/Set.
5528
5529 2006-11-29  Chris Toshok  <toshok@ximian.com>
5530
5531         * DataGrid.cs: keep from going into an infinite loop redrawing a
5532         datagrid that has no datasource.  Fixes bug #80033.
5533
5534 2006-11-29  Chris Toshok  <toshok@ximian.com>
5535
5536         * MenuItem.cs: fix the NRE when we assign text (and therefore call
5537         Invalidate) before the mainmenu has been assigned to a control.
5538
5539 2006-11-29  Chris Toshok  <toshok@ximian.com>
5540
5541         * DataGrid.cs: detect when we should be double the double click
5542         row/column autosize stuff, although that codepath has yet to be
5543         written.  part of the work for bug #79891.
5544
5545 2006-11-29  Chris Toshok  <toshok@ximian.com>
5546
5547         * Binding.cs (SetControl): fix unit test.
5548
5549 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5550
5551         * PageSetupDialog.cs: Validate the margins and set them in
5552         PageSettings. 
5553         * NumericTextBox.cs: New class to mimic the behavior of the
5554         textboxes used in the printing dialogs.
5555
5556 2006-11-29  Andreia Gaita  <avidigal@novell.com>
5557         
5558         * Form.cs: Revert previous change (remove call UpdateBounds
5559         from form constructor), because it messes with the handle creation
5560         order, and that one needs lots and lots of love.
5561         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
5562         for valid printer and throw InvalidPrinterException if document
5563         is set but printer not valid), adding a MonoTODO. Once 
5564         handle creation is done properly, we can put this back in.
5565
5566 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5567
5568         * MenuItem.cs: Create a invalidate method for menu item, to be
5569         calling from set text, it make text changes to imadiate update
5570         on screen. Fixes #80013. 
5571         
5572 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5573
5574         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
5575         fixes bug #80070 and some other problem on toolbar buttons
5576         layout.
5577
5578 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5579
5580         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
5581         with dotted brush.      Fixes #79564
5582         
5583 2006-11-28  Andreia Gaita  <avidigal@novell.com>
5584
5585         * Form.cs: Removed call to UpdateBounds on Form
5586         constructor, it was causing a call to CreateHandle
5587         before it was supposed to.
5588         * PrintControllerWithStatusDialog: Applied patch
5589         by Chris Toshok to hide controller when there are
5590         no printers available.
5591         PrintDialog.cs: initialize printer settings to 
5592         null - correct DefaultValues test #5
5593         * PrintPreviewControl.cs: Move PrintController
5594         initialization to GeneratePreview
5595         * PrintPreviewDialog.cs: 
5596         - Remove Preview generation     from Document_set(). It is 
5597         called on OnPaint
5598         - Throw InvalidPrinterException on CreateHandle if
5599         a Document is set but there are no printers or 
5600         printer is not valid.
5601         * ThemeWin32Classic: don't paint PrintPreviewControl
5602         if there is nothing to paint    
5603
5604 2006-11-28  Miguel de Icaza  <miguel@novell.com>
5605
5606         * Form.cs: Add another popular method.
5607
5608         * TabPage.cs: ditto.
5609
5610 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5611
5612         * MenuItem.cs: Fixed a warning.
5613         * InternalWindowManager: Fixed a warning.
5614
5615 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5616
5617         * MenuItem.cs:
5618         - When cloning a menu also clone MdiList and clone the 
5619           window menu items properly (as the forms and menuitems
5620           are kept in an internal hashtable, these need updating 
5621           as well)
5622         - Rewrote the window menu code, menu items are added in the
5623           order the forms were added to their parent, and they are
5624           updated every time the window menu is shown (before the
5625           list was only generated once, in the current order of the
5626           forms, and would never be updated). A checkmark is shown
5627           next to the item corresponding to the active mdi child.
5628
5629 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5630
5631         * XplatUIStructs.cs: 
5632         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
5633         
5634         * XplatUIWin32.cs: 
5635         - Added TME_NONCLIENT to TMEFlags.
5636         - Handles WM_NCMOUSEMOVE in GetMessage to 
5637           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
5638
5639         * MdiWindowManager:
5640         - Now merges mdi child menu to parent menu when maximized.
5641         - Recalculate NC areas of both mdi child and mdi parent. 
5642           Fixes #79757 (4).
5643           on window state and size changes.Fixes #79844 (3).
5644         - Handle WM_NCCALCSIZE to properly calculate borders.
5645
5646         * Form.cs:
5647         - Add/remove to the mdi containers list of mdi children 
5648           in the order they are added.
5649         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
5650           to the maximized mdi child.
5651         
5652         * InternalWindowManager.cs:
5653         - Only execute a click on the control buttons on the mouse up,
5654           not on the mouse down. Show the state of the button 
5655           (was only showing Normal state, never Pressed state). The
5656           pressed button now follows the mouse (if you click the Close 
5657           button and move the mouse over the Maximize button, the 
5658           Maximize button will be shown as pressed). Since Win32 does
5659           not generate WM_NCLBUTTONUP if you release the button outside
5660           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
5661           it as a mouse up.
5662         
5663         * ThemeWin32Classic.cs:
5664         - Draw a missing border around mdi child forms. Fixes #79844 (2).
5665
5666         * MdiClient.cs:
5667         - Added a list of forms which contains the order the forms are
5668           added to the mdi parent.
5669         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
5670         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
5671         - If the active form changes set the scrollbars to the top
5672           of the Z order, otherwise the form could hide them.
5673         - Scrollbars are now sized according to ClientSize, not 
5674           to Size, and they take into account the other scrollbar
5675           to determine maximum.
5676         
5677 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
5678         
5679         * XplatUI.cs:
5680         * XplatUIDriver.cs:
5681         * XplatUIX11.cs:
5682         * XplatUIWin32.cs:
5683         * XplatUIOSX.cs:
5684         - Added RequestAdditionalWM_NCMessages for windows to 
5685           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
5686           Currently only implemented in XplatUIWin32.
5687
5688 2006-11-27  Chris Toshok  <toshok@ximian.com>
5689
5690         * Hwnd.cs: only add the hwnd to the windows hash in
5691         set_WholeWindow and set_ClientWindow if whole_window/client_window
5692         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
5693
5694 2006-11-27  Mike Kestner  <mkestner@novell.com>
5695
5696         * ComboBox.cs: remove redundant OnDropDown call.  It is called
5697         from the ComboListBox.ShowWindow code. Fixes #79969.
5698
5699 2006-11-27  Chris Toshok  <toshok@ximian.com>
5700
5701         * Hwnd.cs: remove the setters for ExposePending and
5702         NCExposePending - noone uses them.
5703
5704 2006-11-27  Jackson Harper  <jackson@ximian.com>
5705
5706         * TextControl.cs: new param for ReplaceSelection which determines
5707         whether we select the new selection, or set the cursor to the end
5708         of the new selection.
5709         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
5710         pasting, select the new text.
5711         * RichTextBox.cs: Use new param for ReplaceSelection.
5712
5713 2006-11-27  Jackson Harper  <jackson@ximian.com>
5714
5715         * TextBoxBase.cs: Set the selection to the caret after the caret
5716         is moved, otherwise they get out of sync.
5717
5718 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
5719
5720         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
5721         it fixes #80015
5722
5723 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
5724
5725         * ThemeWin32Classic.cs: 
5726         - Fix toolbar drop down arrow position.
5727         - Fix drop down appearance when ToolBar.Appearance is normal,
5728         it fixes #80018.
5729         
5730 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
5731
5732         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
5733         * Control.cs: Same.
5734         * UpDownBase.cs: Same.
5735         * ButtonBase.cs: Same.
5736         * ScrollBar.cs: Same.
5737         * TrackBar.cs: Same.
5738         * PictureBox.cs: Same.
5739         * UserControl.cs: Same.
5740         * Label.cs: Same.
5741         * ListControl.cs: Same.
5742         * TextBoxBase.cs: Same.
5743         * ListView.cs: Same.
5744         * RichTextBox.cs: Same.
5745         * TreeView.cs: Same.
5746
5747 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
5748
5749         * PrintDialog.cs:
5750         - Text label for where 
5751         - Text label comment was not shown
5752
5753 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
5754
5755         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
5756
5757 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5758
5759         * InternalWindowManager.cs: 
5760         - Handle WM_PARENTNOTIFY to activate the form
5761         if any child control is clicked.
5762         - The form is only sizable if not minimized.
5763
5764         * MdiWindowManager.cs:
5765         - Save the IconicBounds if the form is moved.
5766         - Rework SetWindowState, now the window bounds 
5767         are stored only if the old window state is Normal.
5768         
5769         * MdiClient.cs:
5770         - In SetWindowStates store the old window state if 
5771         the window is maximized and restore window state if
5772         the window looses focus.
5773         - Don't handle any scrollbar value changes if 
5774         initializing the scroll bars. Fixes #79771.
5775         - Reworked ArrangeIconicWindows. Current algorithm
5776         tests bounds agains all other minimized windows, if
5777         any intersections create new bounds (going left to 
5778         right, bottom to top) and then test again. When 
5779         successful the bounds are saved and never computed
5780         again. Fixes #79774.
5781
5782 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5783
5784         * InternalWindowManager.cs: Added HandleTitleBarUp.
5785
5786 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5787
5788         * NumericUpDown.cs: In .NET 1.1, user entered text is still
5789         hexadecimal in ParseUserEdit.
5790
5791         
5792 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5793
5794         * MdiWindowManager.cs: 
5795         - Handle a click on the form's icon to show the 
5796         system menu (when maximized). Fixes #79775.
5797         - Change the existing click handler for the form's
5798         icon when not maximized to show on MouseUp.
5799         Fixes #79776.
5800
5801         * Form.cs: In OnResize only layout the mdi child's
5802         parent if it actually has a parent. Might not if
5803         the window is closing.
5804
5805
5806 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5807
5808         * MdiClient.cs: Ignore active MDI client for text of parent, if
5809         child has no text set.
5810
5811 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5812
5813         * ToolBar.cs: Fixed ToString to match MS.
5814
5815 2006-11-22  Andreia Gaita  <avidigal@novell.com>
5816
5817         * NumericUpDown: 
5818         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
5819         update inner values on set. Fixes #79966.
5820         - Override OnLostFocus to update value on NET 2. Fixes #79950.
5821         - Fix hexadecimal parsing.
5822         
5823         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
5824         parent. Fixes #79957
5825
5826 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5827
5828         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
5829         the actual size has to be queried, since if height /
5830         width is negative Win32 changes it to 0. 
5831         Fixes #79999 on Windows.
5832         
5833         * XplatUIX11.cs: Set height / width to 0 if negative
5834         in SetWindowPos. Fixes #79999 on Linux.
5835         
5836 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
5837
5838         * ThemeWin32Classic.cs: Fix text redenring when button is
5839         pressed.
5840
5841 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
5842
5843         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
5844         and later navigate by mouse. Fixes #79528.
5845
5846 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
5847
5848         * ToolBar.cs: Set default value for TabStop to false in
5849         constructor, it fixes remaining behavior of bug #79863.
5850
5851 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5852
5853         * MdiWindowManager.cs:
5854         * InternalWindowManager.cs:
5855         - Moved a few methods specific to Mdi from 
5856         InternalWindowManager to MdiWindowManager.
5857         Fixes #79996.
5858         
5859 2006-11-21  Chris Toshok  <toshok@ximian.com>
5860
5861         * XplatUIOSX.cs: stub out InvalidateNC.
5862
5863         * XplatUIWin32.cs: implement InvalidateNC using the call I found
5864         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
5865
5866         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
5867
5868         * XplatUIDriver.cs: add InvalidateNC abstract method.
5869
5870         * XplatUI.cs: add InvalidateNC.
5871
5872 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
5873
5874         * ToolBar.cs: Invalidate complete button area when pressed status 
5875         was changed.
5876         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
5877         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
5878         by 1 when button is pressed.
5879
5880 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5881
5882         * ToolButton.cs: Invalidate middle of DropDown button when
5883         ToolBar theres DropDownArrows.
5884         * ThemeWin32Classic.cs: Change position of DropDown arrow and
5885         fix DropDown drawing operations.
5886
5887 2006-11-20  Chris Toshok  <toshok@ximian.com>
5888
5889         * NativeWindow.cs: fix the formatting of functions ('{' on the
5890         following line), and enable the thread exception dialog.
5891
5892         * Application.cs: remove the duplicate exception catching from
5893         here.
5894
5895 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5896
5897         * Toolbar.cs: Triggers button click event when click on icon
5898         of dropdown ToolBarButton. Fixes #79912.
5899         
5900 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5901
5902         * Theme.cs:
5903         * ThemeWin32Classic.cs:
5904         - Added a property WindowBorderFont to enable themeing
5905           of mdi child windows' Text.
5906           
5907 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5908
5909         * InternalWindowManager.cs:
5910         * Form.cs:
5911         * MdiClient.cs:
5912         * MdiWindowManager.cs: 
5913         - If mdi child is maximized, set mdi parent's
5914           text to "Parent - [Child]". Fixes #79770.
5915         - If there is any maximized mdi child windows, only the active 
5916           window (and any new windows) is maximized, the rest are normal.
5917         - On a WindowState change only save mdi child's window bounds 
5918           if the old window state was normal. Fixes #79774.
5919         - The scroll bars are now calculated on hopefully all
5920           necessary events. Fixed #79771 / #79844->6 / #79906.
5921         - MdiClient.SizeScrollBars() now takes into account docked 
5922           controls in the parent when calculating available space.
5923         - InternalWindowManager now always repaints the entire title
5924           area. Fixes #79844->1/4/5.
5925         - Added RequestNCRecalc on mdi child windowstate changes.
5926           Fixes #79772.
5927
5928 2006-11-20  Mike Kestner  <mkestner@novell.com>
5929
5930         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
5931         in the MouseUp handler of the listbox and move the return handling
5932         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
5933
5934 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5935
5936         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
5937
5938 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5939
5940         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
5941           working in 1.2.x anymore. So, updated.
5942
5943 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
5944
5945         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
5946         NumberGroupSeparator of current culture instead of assuming en-US.
5947         Fixed bug #79967.
5948
5949 2006-11-17  Mike Kestner  <mkestner@novell.com>
5950
5951         * Control.cs: Add the concept of implicit bounds setting so that
5952         dock/undock round trips preserve explicitly set size/locations.
5953         Fixes #79313.
5954
5955 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5956
5957         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
5958           can't handle those filters. (Fixes bug #79961)
5959
5960 2006-11-17  Chris Toshok  <toshok@ximian.com>
5961
5962         [ fixes the exit/crashes associated with #79835.  it's clearly
5963         suboptimal though, we need to figure out a better way to solve
5964         this. ]
5965         
5966         * PrintPreviewControl.cs: deal with the new invalid printer
5967         exceptions.
5968
5969         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
5970         and return false (so CommonDialog.ShowDialog doesn't actually show
5971         the form.)
5972
5973         * PrintDialog.cs: enable/disable the Ok button depending on
5974         whether or not the printer is valid.
5975
5976         * CommonDialog.cs (ShowDialog): only actually show the form if
5977         RunDialog returns true.
5978
5979 2006-11-17  Jackson Harper  <jackson@ximian.com>
5980
5981         * TextControl.cs: When soft splitting a line, mark it as a soft
5982         split line. Also carry over the current line break to the next
5983         line.
5984
5985 2006-11-17  Chris Toshok  <toshok@ximian.com>
5986
5987         * XplatUIX11.cs: when scrolling a window with an invalid area, we
5988         only want to shift the part of the invalid area that overlaps the
5989         area we're scrolling.  we also don't want to clear the invalid
5990         area unless the invalid area was entirely contained within the
5991         scrolling area.
5992
5993 2006-11-16  Chris Toshok  <toshok@ximian.com>
5994
5995         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
5996         also make sure to free the memory returned by XGetWindowProperty
5997         in GetText().
5998
5999         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
6000
6001 2006-11-16  Chris Toshok  <toshok@ximian.com>
6002
6003         * XplatUI.cs: add a new super secret way to get at the totally
6004         unsupported X11 backend.
6005
6006 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
6007
6008         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
6009
6010 2006-11-16  Jackson Harper  <jackson@ximian.com>
6011
6012         * TreeView.cs: Allow more explicit setting of top node position
6013         for scrollbars. Slower algo, but more accurate.
6014         - CollapseAll should maintain the current top node.
6015         * TextBoxBase.cs: When positioning the caret, use the line, pos
6016         method, since the x, y method does not grab the correct tag, and
6017         the caret height never gets set correctly. (Maybe I should just do
6018         away with the caret having its own height, and always use the
6019         carets current tag for height).
6020
6021 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
6022
6023         [Fixes 79778, 79923]
6024
6025         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
6026         Parent to the FosterParent instead.
6027
6028 2006-11-16  Jackson Harper  <jackson@ximian.com>
6029
6030         * TreeView.cs: Need to recalc the topnode when we expand or
6031         collapse. The scrolling methods can't handle this on their own,
6032         since they use differences between the last scroll position, and
6033         those difference get completely messed up since we are expanding
6034         nodes.  This problem should probably be fixed in the scrolling
6035         methods, so they can figure out exactly where they are, but this
6036         will slow things down a little.
6037         * ThemeWin32Classic.cs: Special case for groupboxes with empty
6038         strings, makes nunit-gui look a lot nicer.
6039
6040 2006-11-16  Chris Toshok  <toshok@ximian.com>
6041
6042         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
6043         the broken multithreaded event handling we have in here.  File
6044         this entry under "Why we should move to the new X11 backend".
6045
6046         Any thread can make it into UpdateMessageQueue, which gets events
6047         from the X socket - some of which could belong to hwnds being
6048         managed by a different thread.  We can also have multiple threads
6049         in UpdateMessageQueue at the same time, with each one reading from
6050         the X socket.  This leads to many problems, with the following
6051         solutions:
6052
6053         We can't use hwnd.Queue.Enqueue anywhere in here and must use
6054         EnqueueLocked.
6055
6056         The MotionNotify compression we do can't work across threads
6057         (without locking the entire queue, perhaps) since we call
6058         hwnd.Queue.Peek, so we just punt and don't compress motion events
6059         unless the owning thread is the one which got the X event.
6060
6061         ConfigureNotify is another fun one, since it modifies the hwnd's
6062         bounds and then enqueues the event.  We add a lock to Hwnd which
6063         is held when setting configure_pending to true (and enqueuing the
6064         event).
6065
6066         There is a race wrt the wake socket.  we need to make sure that
6067         only 1 thread is waiting on that socket, or else a thread could
6068         sleep waiting for data that never comes.  It's difficult (but not
6069         impossible) to make happen, because it seems to require something
6070         like the following:
6071
6072             1. Thread 1 polls on wake_receive
6073         
6074             2. poll returns saying there's data to be read on
6075                wake_receive.
6076         
6077             3. Thread 2 polls on wake_receive and immediately returns
6078                saying there's data to be read.
6079
6080             4. Thread 2 reads the wakeup byte from wake_receive
6081
6082             5. Thread 1 attempts to read the wakeup byte from
6083                wake_receive.
6084
6085             6. Thread 2 exits (due to a form closing, perhaps).
6086
6087             7. Thread 1 blocks forever.
6088         
6089         Fun, eh?
6090
6091         Fixing the Expose handling isn't done yet, and the races inherent
6092         in that piece of code are responsible for the drawing mistakes you
6093         see when generating expose events in a MT app (like NPlot).  This
6094         one is the likely to be the hardest to bandaid, and it doesn't
6095         appear to cause anything but drawing problems.  The other issues
6096         caused apps to exit or hang.
6097
6098         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
6099         called from a different thread than the one that should be calling
6100         these functions.
6101
6102         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
6103
6104 2006-11-15  Chris Toshok  <toshok@ximian.com>
6105
6106         * Application.cs: null out the context's MainForm when we exit
6107         RunLoop.  Fixes a newly checked in unit test as well as the last
6108         ODE from bug #79933.
6109
6110 2006-11-15  Chris Toshok  <toshok@ximian.com>
6111
6112         * Form.cs (set_Owner): allow a null value so we can clear the
6113         form's owner.
6114         (Dispose): set all our owned_form's Owner properties to null, and
6115         clear the owned_forms collection.
6116         (WM_CLOSE): clean up this a little bit.. still not right though.
6117
6118         * ApplicationContext.cs: OnMainFormClosed should only call
6119         ExitThreadCore if the main form isn't recreating.  Fixes unit
6120         test.
6121
6122 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6123
6124         [Fixes 78346]
6125
6126         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
6127
6128 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6129
6130         [Fixes 79433]
6131
6132         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
6133         keep popup window types from stealing focus from the main form
6134         on Windows.
6135
6136         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
6137
6138         * MenuAPI.cs: Set above flag to true.
6139
6140 2006-11-15  Chris Toshok  <toshok@ximian.com>
6141
6142         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
6143         the button being released is not in wParam.
6144
6145 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
6146
6147         * Form.cs: Add the released button to MouseEventArgs.Button
6148         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
6149         on Win32.
6150
6151 2006-11-15  Chris Toshok  <toshok@ximian.com>
6152
6153         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
6154         GetText().  untested because it's unused in our implementation.
6155         Control.Text always caches the text, even if
6156         ControlStyles.CacheText is not set.
6157
6158         fixes bug #79939.
6159
6160 2006-11-15  Chris Toshok  <toshok@ximian.com>
6161
6162         [ fixes #79933 ]
6163         
6164         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
6165         message.  no hiding, no disposing.
6166
6167         in the WM_CLOSE handler, hide the form if it's modal.
6168
6169 2006-11-15  Chris Toshok  <toshok@ximian.com>
6170
6171         * XplatUIX11.cs: use AddExpose instead of sending a message.
6172         fixes textbox border drawing.
6173
6174 2006-11-15  Chris Toshok  <toshok@ximian.com>
6175
6176         * PropertyGridView.cs: keep from crashing on mouse move/down when
6177         the property grid is empty.
6178
6179 2006-11-14  Jackson Harper  <jackson@ximian.com>
6180
6181         * TextControl.cs: Make PageUp and PageDown more like the MS
6182         versions.
6183         * TextBoxBase.cs: When we set the text property position the
6184         cursor at the beginning of the document.
6185
6186 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6187
6188         * Form.cs: if a mdi child's WindowState has changed
6189         before it's creation, it would display wrong control
6190         buttons.
6191         
6192 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
6193
6194         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
6195           (Fixes bug #79927)
6196
6197 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
6198
6199         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
6200         the window gets to paint its borders even if the window is
6201         getting smaller.
6202         
6203         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
6204         otherwise the old control buttons would still be painted 
6205         if the window gets bigger.
6206         
6207         * PaintEventArgs.cs: add an internal method so that the clip 
6208         rectangle can be changed.
6209         
6210 2006-11-13  Chris Toshok  <toshok@ximian.com>
6211
6212         [ fixes bug #79745 ]
6213         
6214         * NotifyIcon.cs: lots of cleanup.
6215
6216         * X11Structs.cs: add an enum for XEMBED messages.
6217
6218         * XplatUIX11.cs: reindent one of the giant switch statements, it
6219         was taking up an additional tab stop, and this file is already way
6220         too wide for my laptop's screen.
6221
6222         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
6223         we get it, resize the hwnd to the WMNormalHints max_width/height.
6224
6225 2006-11-13  Jackson Harper  <jackson@ximian.com>
6226
6227         * TextBoxBase.cs: Compute the value changes for the mouse wheel
6228         teh simple way.
6229
6230 2006-11-13  Chris Toshok  <toshok@ximian.com>
6231
6232         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
6233         #79898.  force a reference to the Region to stick around so the
6234         unmanaged object isn't collected (rendering our handle in the MSG
6235         stale).
6236
6237 2006-11-13  Chris Toshok  <toshok@ximian.com>
6238
6239         * XplatUIX11.cs: fix #79917 for window managers which support
6240
6241         using XStoreName on the raw utf8, and we need to convert to
6242         COMPOUND_TEXT if it's non-latin1.
6243
6244 2006-11-13  Chris Toshok  <toshok@ximian.com>
6245
6246         * Form.cs (set_DialogResult): we need to set closing to false if
6247         we're setting our result to None.  fixes bug #79908.
6248
6249 2006-11-13  Jackson Harper  <jackson@ximian.com>
6250
6251         * TextControl.cs: When formatting text, compute the adjusted tag
6252         lengths correctly, using FindTag for the end tag instead of trying
6253         to figure it out outselves.
6254         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
6255         the item, ItemHeight doesn't work, because trees with large
6256         imagelists use those for their height
6257         * TreeView.cs: ActualItemHeight factors in the image height
6258         - compute left edge of checkboxes correctly
6259         - when expanding/collapsing move the bottom down one pixel, so we
6260         aren't moving part of the node
6261
6262 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6263
6264         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
6265         stack in PaintEventStart so that it won't get disposed by the gc
6266         before reaching PaintEventEnd.
6267
6268 2006-11-13  Jackson Harper  <jackson@ximian.com>
6269
6270         * TextBoxBase.cs: Don't select the word if we are on a line with
6271         no text.
6272         - We don't need to position the caret on mouse up, since the mouse
6273         move handler should be doing this
6274         - When double clicking a blank line, the caret is advanced to the
6275         next line.
6276
6277 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
6278
6279         * TreeNodeCollection.cs: Avoid duplicating indexer code.
6280
6281 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
6282
6283         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
6284         Fixes part of bug #79910.
6285
6286 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
6287
6288         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
6289           (bug #79903). Some minor string updates to match ms.
6290
6291 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6292
6293         * FileDialog.cs: Don't add an extension if the filename
6294           already ends with that extension.
6295
6296 2006-11-10  Jackson Harper  <jackson@ximian.com>
6297
6298         * TreeView.cs: Use the currently highlighted node for the
6299         BeforeSelect event.
6300         * TextBoxBase.cs: There is no need to expand selection on
6301         MouseMove.
6302         - CanUndo means 'is there any undo operations', not 'is undo
6303         allowed on this textcontrol. Fixed ClearUndo unit test.
6304
6305 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
6306
6307         * Button.cs: only perform click when button is Selectable (so as 
6308         not to activate default buttons when they're disabled)
6309         
6310         * Control.cs: Rewrite of the SelectNextControl and related 
6311         methods. HandleClick now selects next control if the current one
6312         is being disabled.
6313         
6314         * Form.cs: OnActivated selects next active control only if Load 
6315         has already occurred. If Load hasn't run, there's no point in 
6316         selecting here, Load might change the state of controls.
6317         
6318         * FocusTest.cs: Tests marked as working again for these fixes
6319
6320 2006-11-10  Chris Toshok  <toshok@ximian.com>
6321
6322         * XplatUIX11.cs: a couple of fixes.
6323
6324         - use XInternAtoms with almost all the atoms we need to register,
6325         instead of many, many calls to XInternAtom.  should help a bit on
6326         startup time, at the expense of making the code look a little
6327         worse.
6328
6329         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
6330         isn't reparented (which seems to be a clue that we're running fon
6331         compiz) and they have an Owner form.  This fixes the tool windows
6332         in paint.net when running under compiz.
6333
6334         - when setting the opacity of a window, support both the case
6335         where the window has been reparented and also when it hasn't been.
6336         Since compiz/beryl doesn't seem to reparent windows, and these are
6337         the only window managers which support translucency, I'm not sure
6338         why we need the hwnd.reparented case at all.. but leave it in.
6339         now we get translucent windows in paint.net under compiz/beryl.
6340
6341 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6342
6343         * FileDialog.cs: Always return the value for FilterIndex that
6344           was set. Internally convert it to values that make sense.
6345
6346 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6347         
6348         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
6349
6350 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6351
6352         * Toolbar.cs: Change default value of DropDownArrows to true, the 
6353         signature still using false to make it compatible with MS but the 
6354         initial value is true. Fixes #79855.
6355
6356 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6357
6358         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
6359           only available on Linux.
6360
6361 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
6362
6363         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
6364         reduce number of calls to redraw method during toolbar creation.
6365
6366 2006-11-09  Mike Kestner  <mkestner@novell.com>
6367
6368         * ListView.cs : raise SelectedIndexChanged when an item is selected
6369         programmatically via the Item.Selected property.  Gert's nice 
6370         ListViewSelectedIndexChanged test fixture now runs clean.
6371
6372 2006-11-09  Mike Kestner  <mkestner@novell.com>
6373
6374         * ListView.cs : raise SelectedIndexChanged when a selected item is
6375         removed from the item collection using Remove or RemoveAt.
6376
6377 2006-11-09  Mike Kestner  <mkestner@novell.com>
6378
6379         * ListView.cs : raise SelectedIndexChanged once per selected item
6380         for compat with MS.  Fixes #79849+.
6381
6382 2006-11-09  Chris Toshok  <toshok@ximian.com>
6383
6384         * TabControl.cs: initialize row_count to 0, and set it to 1 when
6385         we need to (if we have any tab pages).  Fixes unit test.
6386
6387 2006-11-09  Chris Toshok  <toshok@ximian.com>
6388
6389         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
6390         width is 0, not 3.  Fixes a unit test.
6391
6392 2006-11-09  Mike Kestner  <mkestner@novell.com>
6393
6394         * ListView.cs : use Implicit scrollbars so that focus isn't 
6395         stolen from the listview when they are clicked. Fixes #79850.
6396
6397 2006-11-09  Chris Toshok  <toshok@ximian.com>
6398
6399         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
6400         have a root item.  Fixes #79879.
6401
6402 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
6403
6404         * FileDialog.cs:
6405           - Fix ToString ()
6406           - An ArgumentException is now thrown if a wrong filter
6407             is applied (matches ms). The previous filter doesn't change
6408             anymore if an exception is thrown.
6409           - Changing the FileName property also affects FileNames
6410         * ColorDialog.cs: The length of the CustomColors array is always
6411           16. It doesn't matter if we use a smaller array or null to update
6412           or change the custom colors property.
6413         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
6414           for RootFolder if we get a undefined value.
6415
6416 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6417
6418         * StatusBarPanel.cs: 
6419         - Width is set to MinWidth if Width is smaller than
6420         MinWidth. Fixes #79842.
6421         - MinWidth now always overrides Width (MSDN says MinWidth
6422         is set to Width when AutoSize = None, but they do not 
6423         behave like that).
6424         - Style has now the the correct default value.
6425         
6426 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6427  
6428         * TrackBar.cs: 
6429         - The control is completely invalidated on 
6430         Got/LostFocus to draw the focus rectangle correctly.
6431         - When AutoSize then height is always 45 (width for 
6432         vertical controls).
6433         
6434         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
6435         on the mouse when moved and it doesn't move when grabbed
6436         until the mouse moves as well. Also fixed some wrong 
6437         calculations when clicking on the thumb (control thought
6438         click was outside of thumb and didn't grab it).
6439         Fixes some of the issues in #79718.
6440
6441 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
6442
6443         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
6444
6445 2006-11-08  Chris Toshok  <toshok@ximian.com>
6446
6447         * PropertyGridView.cs: only call ToggleValue if the item is not
6448         readonly.
6449
6450 2006-11-08  Jackson Harper  <jackson@ximian.com>
6451
6452         * TextBoxBase.cs: The RichTextBox and textbox have very different
6453         word selection methods.  Implement the textbox's simple word
6454         selection here, and let the RichTextBox override and provide it's
6455         own.
6456         - Don't do extra selection on mouseup
6457         * RichTextBox.cs: Use the documents word selection algorithm, I
6458         think ideally, this function will be pulled into the
6459         RichTextBox.cs code someday.
6460
6461 2006-11-08  Chris Toshok  <toshok@ximian.com>
6462
6463         * RootGridEntry.cs: new class to represent GridItemType.Root.
6464
6465         * CategoryGridEntry.cs: reformat, and add boilerplate.
6466         
6467         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
6468         returns the UI parent anyway, and we need special handling to
6469         implement the GetTarget method in the face of it.  Also, implement
6470         Select().
6471
6472         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
6473         a root grid item, and use that instead of PropertyGrid.grid_items.
6474         Also, make use of TypeConverters (and add limitted support for
6475         ICustomTypeDescriptors) when initially populating the grid.
6476         Arrays now show up more or less properly.
6477
6478 2006-11-08  Chris Toshok  <toshok@ximian.com>
6479
6480         * Application.cs: set the modal dialog to non modal after we close
6481         it.  Fixes bug #79866.
6482
6483 2006-11-08  Jackson Harper  <jackson@ximian.com>
6484
6485         * TextControl.cs: When combining lines carry over the line end
6486         style from the end line.
6487         - Invalidate the selected area when setting it, if it is visible.
6488         * TextBoxBase.cs: Only rich text box can do full line selects.
6489         - Make sure to set the cursor position when there is a click,
6490         otherwise two clicks in separate areas could cause a large chunk
6491         to be selected.
6492
6493 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6494
6495         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
6496         Fixes #79863.
6497
6498 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6499
6500         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
6501         time. Remove tooltips when ToolButton click events.  Fixes #79856.
6502
6503 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6504
6505         * MenuAPI.cs: Ignore right click for menu actions and fixes
6506         menu border when clicked.  Fixes #79846.
6507
6508 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6509
6510         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
6511         MouseState after create wParam for message, this fixes mouse button 
6512         equal none in mouse up events.
6513         
6514 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
6515
6516         * Control.cs : Focus() now calls Select to set the Container's
6517         Active Control and to give it focus. To avoid infinite recursion
6518         (because ActiveControl also calls Focus at one point), a check 
6519         is made in Focus with the help of a new internal variable
6520         is_focusing.
6521
6522 2006-11-07  Mike Kestner  <mkestner@novell.com>
6523
6524         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
6525         if there's a selection.  Fixes #79849.
6526
6527 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
6528
6529         * PropertyGrid.cs: Avoid fixed height of help description label.
6530         Fixes part of bug #79829.
6531
6532 2006-11-07  Chris Toshok  <toshok@ximian.com>
6533
6534         * XplatUIX11.cs: fix #79790 again, by using the
6535         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
6536
6537 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6538
6539         * ToolBar.cs: Fix left click checking.
6540
6541 2006-11-07  Chris Toshok  <toshok@ximian.com>
6542
6543         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
6544
6545 2006-11-07  Chris Toshok  <toshok@ximian.com>
6546
6547         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
6548         PropertyManager unit tests.
6549
6550         * PropertyManager.cs: make property_name internal.
6551
6552 2006-11-07  Chris Toshok  <toshok@ximian.com>
6553
6554         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
6555         pass a unit test.  Also, don't set image_index to anything in
6556         response to setting the ImageList property.
6557
6558 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6559
6560         * ToolBar.cs: Ignore click events when mouse button is not a
6561         left button, only accepts other button for dropdown menus.  
6562         Fixes #79854.
6563
6564 2006-11-07  Chris Toshok  <toshok@ximian.com>
6565
6566         * DataGrid.cs: make the back and parent row buttons a little less
6567         ugly.
6568
6569 2006-11-07  Jackson Harper  <jackson@ximian.com>
6570
6571         * TextBoxBase.cs: When converting to Text don't put line breaks in
6572         for soft line breaks.
6573         * TextControl.cs: There is an initial "fake" line in the document,
6574         this is now a soft break line, so that an extra line feed doesn't
6575         get added to the end of documents.
6576
6577 2006-11-07  Chris Toshok  <toshok@ximian.com>
6578
6579         [ fix bug #79778 ]
6580         
6581         * CurrencyManager.cs: if the list is readonly, don't bother
6582         checking if IBindingList.AllowNew is true.
6583
6584         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
6585         for non-DataRowView datasources..  or rather, make it not crash.
6586         (DataGridPaintRelationRow): make sure we limit the row painting to
6587         the area not covered by the row header, and make our cell width at
6588         least large enough to cover the relation area.  This allows grids
6589         that have relations but no rows to render correctly.
6590         (DataGridPaintRowContents): same type of changes here.
6591         (SetDataSource): move back to always calling
6592         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
6593         navigating back through relations.
6594         (HitTest): handle the case where we have no cells but have
6595         relations.  Right now we generate a hit in cell 0 of whatever the
6596         row is, not sure if this is strictly correct, but it works for our
6597         purposes.
6598         
6599         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
6600         bother doing anything.
6601
6602 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
6603
6604         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
6605         early version of StatusStrip.  Not responsible for eaten
6606         application or firstborn children.
6607
6608 2006-11-06  Chris Toshok  <toshok@ximian.com>
6609
6610         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
6611         call GetTabRect with a -1 index.  Fixes #79847.
6612
6613 2006-11-06  Jackson Harper  <jackson@ximian.com>
6614
6615         * TreeNodeCollection.cs: Update scrollbars after clearing.
6616
6617 2006-11-06  Chris Toshok  <toshok@ximian.com>
6618
6619         * NumericUpDown.cs: fix the ToString method for some unit test
6620         love.
6621
6622 2006-11-06  Chris Toshok  <toshok@ximian.com>
6623
6624         * PropertyGrid.cs:
6625         - set the initial SelectedGridItem if we can.
6626
6627         - Exclude non-mergable properties only if we're merging > 1
6628         object.  Merging 1 object isn't really merging, obviously.
6629
6630         - Handle PropertySort.NoSort just like Alphabetical, which is
6631         wrong of course, but at least gets things on the screen.
6632         
6633         * PropertyGridView.cs:
6634         - Add method "FindFirstItem" which finds the first property grid
6635         item, so we can select it by default.
6636
6637         - make use of GridEntry.CanResetValue.
6638
6639         - Don't call RedrawBelowItemOnExpansion here anymore, the
6640         individual GridEntry's will do that.
6641
6642         - Remove the ITypeDescriptorContextImpl internal class.
6643         
6644         * GridEntry.cs:
6645         - this class needs to implement ITypeDescriptorContext, as it's
6646         what MS's PropertyDescriptorGridEntry does, which means we can
6647         remove the ITypeDescriptorContextImpl internal class from
6648         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
6649
6650         - keep a reference to our PropertyGridView, and move the call to
6651         RedrawBelowItemOnExpansion here from PGV.  This means
6652         programmaticly setting Expanded actually does something visible.
6653
6654         - add a CanResetValue() function which takes into account our
6655         possibly multiple "selected_objects" in the merged case.  Shifting
6656         PropertyGridView to use this method fixes another unreported
6657         crasher found running the test for #79829.
6658
6659         - when Top or Bounds is updated, make sure the PropertyGridTextBox
6660         is updated to reflect this.
6661
6662         * CategoryGridEntry.cs: the ctor takes the PGV now.
6663         
6664 2006-11-06  Jackson Harper  <jackson@ximian.com>
6665
6666         * TextControl.cs: These are 1 based.
6667         * TextBoxBase.cs: When setting the selected text, don't change the
6668         selected text tags, this is done by ReplaceText, just position the
6669         cursor at the end of the new text.
6670
6671 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
6672
6673         * ListView.cs: Allow label edit only when, when LabelEdit is
6674           set to true.
6675
6676 2006-11-06  Jackson Harper  <jackson@ximian.com>
6677
6678         * TextControl.cs: If a suitable wrapping position isn't found,
6679         just wrap right in the middle of a word.
6680
6681 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
6682
6683         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
6684           bug #79820.
6685
6686 2006-11-06  Jackson Harper  <jackson@ximian.com>
6687
6688         * TreeView.cs: Can't use the VisibleCount property when setting
6689         scrollbar heights, because this doesn't take into account whether
6690         or not the horz scrollbar just came visible.
6691
6692 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
6693
6694         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
6695         activated.  Fixes #79369, #79832.
6696
6697 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
6698
6699         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
6700           had to remove support for links that point to a directory. FileInfo
6701           returns no usefull information (means, the directory they point to)
6702           for such links. Replaced some empty string ("") with String.Empty.
6703
6704 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
6705
6706         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
6707         NullReferenceException when attempting to remove node that is not in
6708         collection. Throw NullReferenceException when null is passed to 
6709         Remove. Allow first element of the collection to be removed. Fixes
6710         bug #79831.  In GetEnumerator ().Current return null if positioned 
6711         before the first element of the collection. In GetEnumerator ().Reset,
6712         position before first element of the collection.
6713
6714 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
6715
6716         * PropertyGrid.cs: To match MS, remove default title and description
6717         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
6718         buttons.
6719
6720 2006-11-04  Chris Toshok  <toshok@ximian.com>
6721
6722         * Theme.cs: add a Clamp method, just for kicks.
6723
6724         * ThemeWin32Classic.cs: clamp all color components to [0..255].
6725
6726 2006-11-04  Chris Toshok  <toshok@ximian.com>
6727
6728         * Form.cs: if the form isn't visible, Close() does nothing.
6729
6730 2006-11-03  Chris Toshok  <toshok@ximian.com>
6731
6732         * Form.cs (Close): if the form is modal, don't Dispose of it, only
6733         Hide it.
6734         (WndProc): don't Dispose after handling the WM_CLOSE message.
6735
6736         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
6737         them as such, instead of using casts from Control to Form.  Also,
6738         don't Dispose of the modal dialog when we fall out of the loop -
6739         Close() it instead.
6740
6741         fixes bug #79813.
6742
6743 2006-11-03  Chris Toshok  <toshok@ximian.com>
6744
6745         * Control.cs (Dispose): only go through the dispose thing if we're
6746         @disposing, and we haven't already been disposed.  Fixes bug
6747         #79814.
6748
6749         * Form.cs: no reason to call "base.Dispose()" here instead of
6750         "Dispose()".
6751
6752 2006-11-03  Mike Kestner  <mkestner@novell.com>
6753
6754         * ComboBox.cs : use ToString instead of casts in AddItem for
6755         sorting functionality.  Fixes #79812.
6756
6757 2006-11-03  Chris Toshok  <toshok@ximian.com>
6758
6759         * Application.cs: pave the way for actually using the thread
6760         exception dialog.  it's ifdefed out at the moment.
6761
6762 2006-11-03  Chris Toshok  <toshok@ximian.com>
6763
6764         * ThreadExceptionDialog.cs: until we get a better layout, actually
6765         hide the details textbox and label when we shouldn't see them.
6766
6767 2006-11-03  Jackson Harper  <jackson@ximian.com>
6768
6769         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
6770         multiline textboxes anymore.  This method also determines the
6771         width/height of a textboxes canvas area.
6772         - Sorta a revert of the last patch.  For multiline just position
6773         the controls, then bail.  This way the scrollbar width won't be
6774         altered.
6775
6776 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
6777
6778         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
6779         it dont need.  Fixes #79537.
6780
6781 2006-11-02  Jackson Harper  <jackson@ximian.com>
6782
6783         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
6784         send the status after firing the DndOver event.
6785
6786 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6787
6788         * TrackBar.cs: Now orientation only switches height / width if
6789         the control's handle is created (Win32 does it like this). Also 
6790         fixed a typo in ToString() for a test to pass, changed the 
6791         exception thrown in set_LargeChange and set_SmallChange to 
6792         match Win32 behaviour, and added TrackBar tests to the unit 
6793         tests.
6794
6795 2006-11-02  Chris Toshok  <toshok@ximian.com>
6796
6797         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
6798         not _NET_WM_STATE_NO_TASKBAR.
6799
6800 2006-11-02  Jackson Harper  <jackson@ximian.com>
6801
6802         * TextControl.cs: Increment count by one, since in the update view
6803         count - 1 is used.
6804
6805 2006-11-02  Jackson Harper  <jackson@ximian.com>
6806
6807         * TextBoxBase.cs: Use client rectangle not bounds for checking if
6808         the mouse is in the client rectangle (duh).
6809
6810 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6811         
6812         * TrackBar.cs: Fixed trackbar jumping around when clicking
6813         on it - the trackbar was not detecting correctly at which
6814         side of the thumb the click was done. (fixes #79718)
6815
6816 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
6817
6818         * ListBox.cs: scroll visible area when change SelectedIndex to
6819         a non visible area.  Fixes #79481.
6820
6821 2006-11-01  Jackson Harper  <jackson@ximian.com>
6822
6823         * TextControl.cs: When replacing the selection move the selection
6824         start/end/anchor to the end of the new text.
6825
6826 2006-11-01  Jackson Harper  <jackson@ximian.com>
6827
6828         * XplatUIWin32.cs: When setting the parent change the controls
6829         visibility to it's visibility flag, not to it's old parents
6830         visibility (.Visible walks the parent chain).
6831
6832 2006-11-01  Chris Toshok  <toshok@ximian.com>
6833
6834         * XplatUIX11.cs: revert the #79790 fix, as the simple.
6835         XSetTransientForHint fix breaks paint .net's tool windows.  more
6836         work needed for that one.
6837
6838 2006-11-01  Chris Toshok  <toshok@ximian.com>
6839
6840         * ScrollBar.cs: throw ArgumentException instead of Exception in
6841         LargeChange/SmallChange setters.  fixes unit tests.
6842
6843 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
6844
6845         * ContainerControl.cs: reverted rev.67183 (which was itself
6846         a reversion of rev.66853... eh).
6847         
6848         * Control.cs: Fixes Reflector hang by changing Focus() call
6849         to what it was before rev.66643 (calling Select() here sets 
6850         ActiveControl, which in some situations calls back Focus and 
6851         eventually does a stack overflow). Temp fix.    
6852         Changes to GetNextControl() to not look for children to select when
6853         parent cannot be selectable (so it looks for siblings instead)  
6854         
6855 2006-10-31  Mike Kestner  <mkestner@novell.com>
6856
6857         * CheckedListBox.cs : off by one error in returned index from
6858         ObjectCollection.Add.  Fixes #79758.
6859
6860 2006-10-31  Chris Toshok  <toshok@ximian.com>
6861
6862         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
6863         calls for the textbox/spinner, to keep from recursing to the point
6864         where we crash.  Fixes #79760.
6865
6866 2006-10-31  Chris Toshok  <toshok@ximian.com>
6867
6868         * ListControl.cs (set_SelectedValue): don't throw exceptions on
6869         null/"" value, just return.  matches ms's behavior and fixes some
6870         failing tests.
6871
6872 2006-10-31  Chris Toshok  <toshok@ximian.com>
6873
6874         * Control.cs (set_Capture): make a logic a little easier to
6875         follow.
6876
6877         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
6878         if it's being destroyed.  A necessary fix surely, but a bandaid
6879         also, to fix the stuck capture problem in bug #78413.
6880
6881 2006-10-31  Chris Toshok  <toshok@ximian.com>
6882
6883         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
6884         convention of clearing hwnd.ClientRect when we set the
6885         width/height (so it'll be recalculated by Hwnd).
6886
6887 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
6888
6889         * ContainerControl.cs: reversed Contains check from
6890         ActiveControl due to hanging problems. This fix
6891         partly regresses #79667 (button does not have
6892         initial focus), so this might be a symptom for 
6893         a larger parenting problem (set_ActiveControl
6894         is being called but the child control does
6895         not have the parent set yet?)   
6896         
6897 2006-10-31  Mike Kestner  <mkestner@novell.com>
6898
6899         * MenuAPI.cs : fix keynav when menu is click activated.
6900
6901 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
6902
6903         * ToolStrip*: Version 0.2.
6904
6905         * MenuStrip.cs: Version 0.1.
6906
6907         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
6908
6909 2006-10-30  Chris Toshok  <toshok@ximian.com>
6910
6911         [ fixes the oversized notify icon issue in bug #79745 ]
6912         
6913         * NotifyIcon.cs: scale the icon down to the size we're given by
6914         the XplatUI layer (this would be faster if we did it once instead
6915         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
6916         since it's never invoked.
6917
6918         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
6919         pixels high by default, so let's hardcode our systray icon to that
6920         size.  The SYSTEM_TRAY protocol should really have a way for
6921         client apps to query for the correct icon size.. but oh well.  A
6922         couple of patches to deal with the screwy client_window ==
6923         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
6924         instance, and also make sure we don't XSelectInput twice).
6925
6926 2006-10-30  Chris Toshok  <toshok@ximian.com>
6927
6928         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
6929         recreating forms.  Control recreation is the bane of my existence.
6930         Fix it in a way that keeps everyone happy.
6931
6932 2006-10-30  Chris Toshok  <toshok@ximian.com>
6933
6934         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
6935         just non-CHILD ones.  otherwise sometimes scrollbars end up with
6936         client_windows not being resized to the proper size (ReportBuilder
6937         shows this extremely well).
6938
6939 2006-10-30  Chris Toshok  <toshok@ximian.com>
6940
6941         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
6942         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
6943         showing up in the gnome taskbar.  Fixes bug #79790.
6944
6945 2006-10-30  Chris Toshok  <toshok@ximian.com>
6946
6947         * ApplicationContext.cs: guard against a NRE.
6948
6949         * Application.cs: null out the old MainForm for the context, so we
6950         don't try to use it again once it's disposed.  Fixes bug #79783.
6951
6952 2006-10-30  Chris Toshok  <toshok@ximian.com>
6953
6954         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
6955         BindingContext, set the data source directly, otherwise do the
6956         lazy approach - the actual ListManager will be created when we get
6957         a BindingContext. Fixes bug #79700.
6958
6959 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6960
6961         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
6962           XplatUIX11.cs: Remove old 2 parameter SetVisible.
6963
6964         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
6965
6966 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6967
6968         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
6969         of SetVisible that allows a window to be shown, but not activated.
6970         This is needed on Windows for MenuStrip, and can probably be used
6971         with MainMenu and ComboBox to fix the focus stealing issues on
6972         Windows.
6973
6974         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
6975
6976 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
6977
6978         * PictureBox.cs: Fix the output of the ToString method.
6979
6980 2006-10-29  Chris Toshok  <toshok@ximian.com>
6981
6982         * Control.cs (get_TopLevelControl): fix bug #79781.
6983
6984 2006-10-29  Chris Toshok  <toshok@ximian.com>
6985
6986         * ListControl.cs (set_DataSource): throw Exception here, not
6987         ArgumentException, to match MS behavior.
6988
6989 2006-10-29  Chris Toshok  <toshok@ximian.com>
6990
6991         * Form.cs: remove the try-catch's around calls to GetWindowState.
6992         We can just check the return value.
6993
6994         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
6995         Instead return -1.
6996
6997         * XplatUI.cs: Add note about additional return value for
6998         GetWindowState.
6999
7000 2006-10-29  Chris Toshok  <toshok@ximian.com>
7001
7002         * Control.cs (CreateHandle): when we create our handle, we also
7003         create the handles of our child controls.  Fixes one of the
7004         Control unit tests (CH11).
7005
7006 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
7007
7008         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
7009
7010 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
7011
7012         * ThemeClearlooks.cs: A little speedup.
7013
7014 2006-10-27  Chris Toshok  <toshok@ximian.com>
7015
7016         * Control.cs: implement Control.FromChildHandle in a way that
7017         matches the docs (and fixes the failed test.)
7018
7019 2006-10-27  Chris Toshok  <toshok@ximian.com>
7020
7021         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
7022         comments).
7023
7024         * DataGrid.cs: implement ResetForeColor such that the tests
7025         succeed.
7026         
7027 2006-10-27  Chris Toshok  <toshok@ximian.com>
7028
7029         * ToolBarButton.cs: setting text/tooltiptext to null results in it
7030         being set to "".  Fixes bug #79759.
7031
7032 2006-10-27  Jackson Harper  <jackson@ximian.com>
7033
7034         * TextControl.cs: We need to clear the entire selection area when
7035         setting the start, otherwise multiline selections are still
7036         visible.
7037
7038 2006-10-26  Chris Toshok  <toshok@ximian.com>
7039
7040         * PropertyGridView.cs: 
7041
7042         - ifdef all the code specific to the double
7043         buffer case, and provide some alternatives in the non-doublebuffer
7044         code, which makes heavy use of XplatUI.ScrollWindow to move things
7045         around without having to invalidate (and cause flicker).  There
7046         are still some drawing problems in the non-doublebuffered case, so
7047         DOUBLEBUFFER is defined by default.
7048
7049         - Fix the way dropdowns are handled.  now we explicitly watch for
7050         the events which might cause the dropdown to close, and break out
7051         of the nested event loop there.  This gets rid of all Capture
7052         code, at the expense of the Msg special casing.  Seems to work,
7053         though, and fixes bug #79743.
7054
7055 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
7056         * Control.cs: SetIsRecreating now recreates implicitly added
7057         child controls as well. Finally fixes #79629. The flag passed to 
7058         SetIsRecreating has also been removed since it wasn't used.
7059         
7060 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7061
7062         * PageSetupDialog.cs: Clean some code, fix some bits, 
7063         add some checks, and add a printer sub-dialog.
7064
7065 2006-10-26  Chris Toshok  <toshok@ximian.com>
7066
7067         * PropertyGrid.cs: make set_SelectedObject call
7068         set_SelectedObjects, and move the duplicate logic to the
7069         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
7070
7071         * PropertyGridView.cs: hide the textbox when we get a
7072         SelectedObjectsChanged event.
7073
7074         Fixes bug #79748.
7075
7076 2006-10-26  Chris Toshok  <toshok@ximian.com>
7077
7078         * PropertyGridView.cs: deal with the type converter not supporting
7079         GetStandardValues() or GetStandardValues() returning null, which
7080         is does in the default case.  Fixes #79742.
7081
7082 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
7083
7084         * CheckedListBox.cs: nunit no longer crashes when selecting 
7085         Project/Edit menu option
7086         
7087 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
7088
7089         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
7090         is no menu selected. fixes #79739
7091
7092 2006-10-25  Chris Toshok  <toshok@ximian.com>
7093
7094         * PropertyGridView.cs: factor out the splitter invalidation code
7095         into the SplitterPercent setter, and for kicks implement the
7096         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
7097         amount in either direction.
7098
7099 2006-10-25  Chris Toshok  <toshok@ximian.com>
7100
7101         * PropertyGridView.cs: do some cleanup of the brush used to draw
7102         text - read only fields should be grayed out.  not sure how to do
7103         this with the textbox, though.  but the textbox's should also be
7104         readonly now at least.  Also, hide/show the textbox when resizing
7105         the control.
7106         
7107         * CursorConverter.cs: use System.Reflection when getting the
7108         properties of Cursors, as TypeDescriptor.GetProperties isn't
7109         returning static properties.
7110
7111 2006-10-25  Chris Toshok  <toshok@ximian.com>
7112
7113         * PropertyGridView.cs: factor out the up/down handling, and reuse
7114         it for page up/down.  also add End/Home support.
7115
7116 2006-10-25  Chris Toshok  <toshok@ximian.com>
7117
7118         * PropertyGridView.cs:
7119
7120         - ensure the selected grid item is visible in the scrolled area,
7121         fixes bug #79572.
7122
7123         - fix Keys.Down handling when you're on the last item in the
7124         propertygrid.
7125
7126 2006-10-25  Mike Kestner  <mkestner@novell.com>
7127
7128         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
7129         clicks too.  Fixes #79725.
7130
7131 2006-10-24  Chris Toshok  <toshok@ximian.com>
7132
7133         * PropertyGrid.cs: use property.Converter instead of
7134         TypeDescriptor.GetConverter(property.PropertyType), so we catch
7135         TypeConverters declared on the property as well as on the
7136         PropertyType.  Fixes bug #79678.
7137
7138 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
7139
7140         * MimeIcon.cs, Mime.cs:
7141           Fallback to the default platform handler if no shared mime info
7142           stuff exists (fixes #79693).
7143
7144 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
7145         * ContainerControl.cs: Incorrect contains check in ActiveControl 
7146         from previous fix (duh).
7147
7148 2006-10-20  Chris Toshok  <toshok@ximian.com>
7149
7150         * PropertyGridView.cs: the dropdown should be MIN(number of items
7151         in list, 15).  Fixes #79551.
7152
7153 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
7154         Fixes #79384, #79394, #79652, #79667
7155         * Application.cs: 
7156         
7157         - Modal windows are now destroyed in the proper order for windows
7158         
7159         * ContainerControl.cs:
7160         
7161         - ActiveControl setter has more conditions on when to return:
7162                 - if we're reselecting the active control, but it actually
7163                 didn't have focus (window hidden or some such), it runs
7164                 - if the active control being selected doesn't actually 
7165                 exist in the container, it returns
7166         
7167         * Form.cs
7168         
7169         - The ShowDialog now gets the current form as the owner when
7170         invoking without parameters, and correctly activates the owner 
7171         when returning
7172         
7173         * MessageBox.cs
7174         
7175         - MessageBox now catches the Escape key to exit
7176
7177 2006-10-20  Chris Toshok  <toshok@ximian.com>
7178
7179         * PropertyGridView.cs: fix a number of issues (bug #78565, and
7180         most of bug #79676):
7181
7182         - you can navigate around the property grid with the arrow keys.
7183
7184         - the dropdown is sized properly when the pg has a vertical
7185         scrollbar.
7186
7187         - fix the indentation for subentries, and properly select the
7188         entire label rect.
7189
7190         - fix the gray bar's drawing (only draw it to the last element,
7191         not for the height of the control.  Also make sure we draw that
7192         last horizontal grid line.
7193
7194         - use the same mechanism the datagrid uses wrt the editing textbox
7195         when scrolling/resizing/etc.  Namely, we hide it first, do the
7196         operation, then show it again (if it's still visible).
7197         
7198         - aggressively remove a lot of unnecessary refreshes (and also
7199         calls to Invalidate(). call more limited variants, and only redraw
7200         what we need.)
7201         
7202         * PropertyGrid.cs:
7203
7204         - when we're populating the merged collection, fill in the UI
7205         parent with either the passed in item, or the category item we
7206         create.
7207
7208         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
7209
7210         * GridItem.cs: drop some fully qualified names.
7211         
7212         * GridEntry.cs: add a "UIParent", which is basically the parent
7213         treenode.
7214
7215         * GridItemCollection.cs: add an IndexOf method.
7216
7217 2006-10-20  Mike Kestner  <mkestner@novell.com>
7218
7219         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
7220         a working win32 NC invalidation mechanism, we can't invalidate
7221         menus.  [Fixes #79705]
7222
7223 2006-10-20  Mike Kestner  <mkestner@novell.com>
7224
7225         * ListBox.cs : don't update the VScrollbar if the list is empty,
7226         just hide it.  [Fixes #79692]
7227
7228 2006-10-20  Jackson Harper  <jackson@ximian.com>
7229
7230         * RichTextBox.cs: Handle some special chars better, and don't skip
7231         the entire group when we encounter a special char that we don't
7232         handle correctly.
7233
7234 2006-10-18  Chris Toshok  <toshok@ximian.com>
7235
7236         * PropertyGridView.cs: address a number of issues from bug #79676,
7237         mostly of the cosmetic variety.
7238
7239         - The highlight rectangle for indented items not extends all the
7240         way to the left.
7241
7242         - Indented items aren't indented so much.
7243
7244         - the dropdown is properly sized width-wise if the pg has a
7245         vertical scrollbar.
7246
7247 2006-10-18  Chris Toshok  <toshok@ximian.com>
7248
7249         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
7250         systray stuff is rather convoluted to begin with.
7251
7252         systray icons are a single window for some reason (that I haven't
7253         figured out yet), and for them, client_window == whole_window.
7254         Given the way the tests are structured elsewhere to determine
7255         which paints are pending (client vs. nc), that situation will
7256         always yield PAINT, not NCPAINT.  So, if we have a pending
7257         nc_expose and no pending expose, remove the hwnd from the paint
7258         queue, and also set nc_expose_pending to false, to keep us from
7259         blocking further expose's adding the hwnd to the paint queue.
7260
7261         phew.  like i said, a rather convoluted change.  Fixes the
7262         notifyicon repaint issues in bug #79645.
7263
7264 2006-10-18  Chris Toshok  <toshok@ximian.com>
7265
7266         * Form.cs: when getting the backcolor of the form, don't get
7267         base.BackColor, as this allows parents to influence the background
7268         color.  This breaks mdi forms.  Instead, if the background_color
7269         is empty, return the default.
7270
7271 2006-10-18  Chris Toshok  <toshok@ximian.com>
7272
7273         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
7274         to being private instead of internal static.
7275
7276         * Control.cs: remove all the stupid ParentWaitingOnRecreation
7277         crap, it wasn't working for more deeply nested controls anyway,
7278         and we already have the is_recreating flag - use that instead.
7279         Before calling DestroyHandle in RecreateHandle, recurse through
7280         the control tree setting it to true.  this returns the recreate
7281         code to much of its original simplicity, while now guaranteeing we
7282         actually recreate everything we're supposed to.  This change gets
7283         fyireporting actually showing mdi children.
7284
7285 2006-10-17  Chris Toshok  <toshok@ximian.com>
7286
7287         * Form.cs: remove some debug spew, and collapse some duplicate
7288         code at the end of SetClientSizeCore.
7289
7290         * XplatUIX11.cs: 
7291         - add some more debug spew here too wrt Destroy handling.
7292         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
7293         in Control's handling of WM_DESTROY.
7294         - Remove the handling of zombie window DestroyNotifies from the
7295         event loop - we don't need it.  Now the only DestroyNotifies we
7296         actually handle are ones generated by X.
7297         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
7298         match gtk's (functioning) handling of this. This keep metacity
7299         from leaving droppings in the form of wm borders with no window
7300         contents all over the place.
7301
7302         * Control.cs:
7303         - add a bunch of debug spew wrt control recreation.
7304         - fix a bug where we weren't tracking Visible properly on
7305         recreated hwnds.
7306         - fixed the WM_PAINT double buffer handling to support re-entrant
7307         calls (yes, i know it's gross, but it's happening to us).
7308
7309 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7310         * ThemeWin32Classic.cs: changed drawing of selected days
7311         to make them look better.
7312
7313 2006-10-16  Chris Toshok  <toshok@ximian.com>
7314
7315         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
7316         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
7317
7318         * XplatUIX11.cs: move away from using hwnd.client_dc and
7319         hwnd.non_client_dc and on to a stack of dc's (and in window's
7320         case, PAINTSTRUCT's), so we can deal with nested Paint calls
7321         without puking or not disposing of Graphics objects.
7322
7323         * XplatUIOSX.cs: same.
7324
7325         * XplatUIWin32.cs: same.
7326
7327 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
7328
7329         * FileDialog.cs: Don't call on_directory_changed inside
7330           OnSelectedIndexChanged (it changes the SelectedIndex too).
7331           Instead move it to OnSelectionChangeCommitted.
7332
7333 2006-10-13  Chris Toshok  <toshok@ximian.com>
7334
7335         * XplatUIX11.cs: more Destroy work.  the current code does the
7336         following things, in order:
7337
7338         1. Enumerates all handles of all controls at or below the one
7339         being destroyed, in pre-order.  As it is doing this, it marks the
7340         handles as zombie and clears all references to them.
7341         
7342         2. calls XDestroyWindow on the window passed in.
7343
7344         3. SendMessage's WM_DESTROY to all he handles in the accumulated
7345         list.
7346
7347 2006-10-13  Chris Toshok  <toshok@ximian.com>
7348
7349         * XplatUIX11.cs: set hwnd.zombie to true before calling
7350         SendMessage (WM_DESTROY).  this keeps us from marking the new
7351         window a zombie, and also keeps us from calling sendmessage at
7352         all.
7353
7354 2006-10-13  Jackson Harper  <jackson@ximian.com>
7355
7356         * TextControl.cs: Do not show the caret and selection at the same
7357         time.  Reduces ugliness by 35%.
7358
7359 2006-10-13  Chris Toshok  <toshok@ximian.com>
7360
7361         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
7362         zombie after we do the recursive call, so we actually do call
7363         SendMessage on the children controls.
7364         (GetMessage): if we find a pending paint event for a zombie hwnd,
7365         remove the hwnd from the paint queue, or else it will always be
7366         there (and we'll effectively loop infinitely)
7367
7368 2006-10-13  Mike Kestner  <mkestner@novell.com>
7369
7370         * MenuItem.cs : add Selected format under keynav too.
7371         Fixes #79528.
7372
7373 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
7374
7375         * PropertyGrid.cs: Fixed some NRE's and small difference between our
7376         implementation and that of MS.
7377
7378 2006-10-13  Chris Toshok  <toshok@ximian.com>
7379
7380         * Control.cs (OnInvalidated) only futz with the invalid_region if
7381         the control is double buffered.  this fixes the apparent hang in
7382         the ListView unit tests.  Someone needs to make the
7383         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
7384
7385 2006-10-13  Chris Toshok  <toshok@ximian.com>
7386
7387         * PropertyGridView.cs:
7388
7389         - do a little refactoring so that only one place calls
7390         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
7391         else call that.  Also make it Refresh, since there are redraw bugs
7392         otherwise (we should take a look at that...)
7393
7394         - do a little more refactoring work to share the body of code
7395         involved with the drop down.  it was duplicated in the code
7396         dealing with the listbox handling and in the code dealing with the
7397         UITypeEditors.
7398
7399         - add a Capture to the dropdown form's control once it's
7400         displayed, and add a MouseDown handler that checks to make sure
7401         the position is inside the control.  If it's not, close the
7402         dropdown.  This fixes #78190.
7403
7404         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
7405         if the value is different than the initial value.
7406         
7407 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
7408
7409         * Control.cs: see #78650
7410         - Fixed GetNextControl for several cases:
7411                 - Changed FindFlatForward to return 
7412                 correct sibling control when more than one
7413                 control has same TabIndex as the currently 
7414                 focused one.
7415                 - Changed FindFlatBackward to loop children
7416                 from last to first and apply same logic as in
7417                 FindFlatForward
7418                 - Changed FindControlForward to search for
7419                 children when control is not a container
7420                 but has children, or search for siblings if
7421                 control is a container...
7422                 - Changed FindControlBackward   to continue
7423                 searching for child controls when hitting 
7424                 Panel-like parents
7425                 
7426         - Fixed Focus method to update ActiveControl
7427         (FocusTest.FocusSetsActive failure)
7428         
7429         * TabControl.cs:
7430         - Focus rectangle now refreshes when gaining
7431         or losing focus
7432         - Removed grab for Tab key on IsInputKey that 
7433         was keeping tab navigation from working (#78650)
7434
7435 2006-10-13  Chris Toshok  <toshok@ximian.com>
7436
7437         * PropertyGridView.cs:
7438         - Rewrite SetPropertyValue to loop over SelectedGridItem's
7439         SelectedObjects.
7440
7441         - Deal with GridItem.Value == null a few places.
7442
7443         * PropertyGrid.cs: 
7444         - replace the PopulateGridItemCollection with a pair of methods
7445         which compute the intersection of all the properties in the
7446         SelectedObjects array.  Fixes #79615.
7447
7448         - Throw ArgumentException from set_SelectedObjects if there's a
7449         null in the array.
7450
7451         - Add GetTarget method which can be used to traverse up the
7452         GridItem.Parent chain.  It depends on the assumption that
7453         selected_objects for different GridEntries are always in the same
7454         order (a safe assumption).  Use this method and loop over all the
7455         selected objects in the entry when calling RemoveValueChanged and
7456         AddValueChanged.
7457         
7458         * GridEntry.cs: Make this handle multiple selected objects.
7459         .Value returns null if not all the selected objects share the same
7460         value.
7461
7462 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
7463         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
7464           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
7465           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
7466           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
7467           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
7468         add additional functionality.
7469
7470 2006-10-12  Mike Kestner  <mkestner@novell.com>
7471
7472         * ErrorProvider.cs : new ToolTipWindow ctor sig.
7473         * HelpProvider.cs : new ToolTipWindow ctor sig.
7474         * ToolTip.cs : remove ToolTip param from Window sig since it is
7475         not used.
7476         * ToolBar.cs : add tooltip support.  Fixes #79565.
7477
7478 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7479
7480         * ComboBox.cs: move the events in set_SelectedIndex to 
7481         after the call to HighlightIndex in order to avoid 
7482         possible recursion and subsequent problems with the call
7483         to HighlightIndex and include a range check in 
7484         set_HighlightIndex. Fixes #79588
7485         
7486 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7487
7488         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
7489         to ui thread's settings instead of sunday. 
7490         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
7491
7492 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7493
7494         * DateTimePicker.cs
7495         * MonthCalendar.cs
7496         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
7497         and implement missing functionality (selecting different parts 
7498         of the date and edit them individually with the keyboard).
7499         
7500 2006-10-11  Chris Toshok  <toshok@ximian.com>
7501
7502         * Control.cs (OnInvalidated): fix NRE relating to last change.
7503
7504 2006-10-11  Chris Toshok  <toshok@ximian.com>
7505
7506         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
7507         atoms in _NET_WM_STATE here if the window is maximized.  We need
7508         to do this because we're *replacing* the existing _NET_WM_STATE
7509         property, so those atoms will be lost otherwise, and any further
7510         call to GetWindowState will return Normal for a window which is
7511         actually maximized.  Fixes #79338.
7512
7513 2006-10-11  Jackson Harper  <jackson@ximian.com>
7514
7515         * TextControl.cs: Special case for setting selection end to
7516         selection start, we basically kill the anchor.
7517         - some todo comments.
7518
7519 2006-10-11  Chris Toshok  <toshok@ximian.com>
7520
7521         * Control.cs: switch to using an "invalid_region" to track which
7522         parts of the image buffer need updating.  This is more code than
7523         the simple fix from r66532.  That version just attempted to always
7524         fill the entire buffer on redraw, which turns out to be
7525         inefficient when invalidating small rectangles.  This version
7526         simply adds the invalid rectangle to the invalid region.  When we
7527         get any WM_PAINT message we see if it can be filled using the
7528         image buffer, and if it can't (if the paint event's clip rectangle
7529         is visible in the invalid region) we first fill the image buffer.
7530         So, the image buffer is still a cache, we just fill it lazily.
7531
7532         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
7533         need it any longer.
7534
7535 2006-10-11  Chris Toshok  <toshok@ximian.com>
7536
7537         * XplatUIX11.cs (SetWindowPos): we need to update both position as
7538         well as size after calling XMoveResizeWindow.  This keeps us from
7539         ignoring future SetWindowPos calls.  Fixes the disappearing
7540         DateTimePicker in the ToolBarDockExample from bug #72499.
7541
7542 2006-10-11  Chris Toshok  <toshok@ximian.com>
7543
7544         * TextBoxBase.cs: reorder things a bit when it comes to
7545         resizing-causing-recalculation.  we were recalculating the
7546         document when our position was changed, which shouldn't happen.
7547         We only care about size changes.  Clear up some more redundant
7548         recalculation calls while I'm at it.  This makes the toolbar dock
7549         example snappy when you're just dragging toolbars around (since it
7550         causes a relayout whenever you move one.)
7551
7552 2006-10-11  Chris Toshok  <toshok@ximian.com>
7553
7554         * ToolBarButton.cs (get_Rectangle): this only returns
7555         Rectangle.Empty if Visible == false, or Parent == null.
7556         Parent.Visible doesn't matter.
7557
7558 2006-10-10  Chris Toshok  <toshok@ximian.com>
7559
7560         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
7561         by .net 1.1, so switch to an internal method instead.
7562
7563 2006-10-10  Chris Toshok  <toshok@ximian.com>
7564
7565         * Control.cs (WM_PAINT): when a control is double buffered we draw
7566         initially to the ImageBuffer and then copy from there.  But when a
7567         parent control which has child controls is double buffered, the
7568         initial drawing doesn't encompass the entire ClientRectangle of
7569         the parent control, so we end up with uninitialized bits (this is
7570         easily seen by dragging the top toolbar in
7571         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
7572         manually set the ClipRectangle of the paint_event (only the one we
7573         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
7574         of the nastiness in bug #72499.
7575
7576         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
7577         which we use in Control.cs's WM_PAINT handling.
7578
7579 2006-10-10  Jackson Harper  <jackson@ximian.com>
7580
7581         * TextBoxBase.cs: Finish off the autoscrolling stuff.
7582
7583 2006-10-10  Chris Toshok  <toshok@ximian.com>
7584
7585         * Cursor.cs: Apply a slightly different patch to the one suggested
7586         in #79609.
7587
7588 2006-10-10  Jackson Harper  <jackson@ximian.com>
7589
7590         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
7591         not the parent form.
7592         * TextControl.cs: use difference in old line count vs new count to
7593         calculate how many lines were added, this takes into account soft
7594         line breaks properly.
7595
7596 2006-10-10  Chris Toshok  <toshok@ximian.com>
7597
7598         * LinkLabel.cs: don't call MeasureCharacterRanges against a
7599         rectangle located at 0,0 and the size of the text.  Use
7600         ClientRectangle instead.  This fixes rendering of non-left aligned
7601         link labels.
7602
7603 2006-10-10  Jackson Harper  <jackson@ximian.com>
7604
7605         * TextBoxBase.cs: When we set the selection start position the
7606         caret.
7607         * TextControl.cs: Need to update the caret when we decrement it to
7608         zero.
7609         - Make sure that the selection_visible flag gets reset to false if
7610         the selection isn't visible.  Before this you could get it set to
7611         visible by changing the selection start, then changing the end to
7612         equal the start.
7613
7614 2006-10-09  Jackson Harper  <jackson@ximian.com>
7615
7616         * TreeView.cs: Don't update scrollbars when we aren't visible.
7617         * TreeNodeCollection.cs: Only need to update scrollbars if being
7618         added to an expanded visible node or the root node.
7619
7620 2006-10-09  Chris Toshok  <toshok@ximian.com>
7621
7622         * XplatUIX11.cs (SendMessage): fix NRE.
7623
7624 2006-10-09  Jackson Harper  <jackson@ximian.com>
7625
7626         * TextBoxBase.cs: Implement horizontal autoscrolling.
7627         * TextControl.cs: Add a movement types that allows moving forward
7628         and backwards without wrapping.
7629
7630 2006-10-09  Mike Kestner  <mkestner@novell.com>
7631
7632         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
7633         with focus "expansion" of labels.  Fixes #79532 and then some.
7634         * ThemeWin32Classic.cs : add LineLimit to ListView label format
7635         when wrapping.
7636
7637 2006-10-09  Jackson Harper  <jackson@ximian.com>
7638
7639         * TextBoxBase.cs: Set the default max values to MaxValue since
7640         we use the scrollbar for autoscrolling and the default value is
7641         100.  If we don't do this the caret won't keep up with typing
7642         after about 18 characters.
7643         * TextControl.cs: Make sure the selection is offset by the
7644         viewport x.  This fixes selection when using auto scrolling.
7645
7646 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
7647         
7648         * Form.cs: The active control should be selected after the 
7649         OnLoad so that any child control initialization that affects
7650         the selection is done. Fixes #79406
7651
7652 2006-10-06  Chris Toshok  <toshok@ximian.com>
7653
7654         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
7655         to have no evil effects.
7656
7657         - Stop selecting StructureNotifyMask on non-toplevel windows.
7658
7659           The only way children should be resized is by using the SWF api,
7660           and we already send WM_WINDOWPOSCHANGED messages in those cases.
7661           Toplevel windows can be interacted with via the window manager,
7662           and so we keep the input mask there.
7663
7664           The other event StructureNotifyMask gives us (that we care
7665           about) is DestroyNotify.  The code is already structured such
7666           that it assumes we won't be getting a DestroyNotify event for
7667           the window we pass to XDestroyWindow (which is what
7668           StructureNotifyMask is supposed to guarantee.)  So, that code
7669           shouldn't be affected by this either.
7670
7671         - Stop selecting VisibilityChangeMask altogether.
7672
7673           We weren't doing anything with the resulting events anyway.
7674         
7675         This vastly reduces the number of X requests and events we see
7676         when resizing/laying out a large ui.
7677
7678 2006-10-06  Chris Toshok  <toshok@ximian.com>
7679
7680         * ScrollableControl.cs (DisplayRectangle): we need to take into
7681         account the DockPadding regardless of whether or not auto_scroll
7682         == true.  rework this slightly to this effect, and fix bug #79606,
7683         and part of #72499 (you can now see the drag handles and drag
7684         toolbars around).
7685
7686 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
7687
7688         * ListViewItem.cs: Collections of selected and checked items are now
7689         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
7690         we mark the collection "dirty".
7691         * ListView.cs: Marked collections readonly. Modified UpdateSelection
7692         to only clear SelectedItems when a new item is selected and MultiSelect
7693         is enabled. CheckedItems and SelectedItems now subscribe to Changed
7694         event of ListViewItemCollection, and mark its list dirty whenever
7695         that event is fire. This allows us to return selected/checked items 
7696         in the same order as they are in the Items collection. This matches
7697         the MS behavior.
7698
7699 2006-10-06  Chris Toshok  <toshok@ximian.com>
7700
7701         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
7702         right mouse clicks.  Fixes bug #79593.
7703
7704 2006-10-06  Chris Toshok  <toshok@ximian.com>
7705
7706         * Splitter.cs: doh, fix splitters that don't want to cancel the
7707         movement when you drag them.  Also, impose the limits on the
7708         values we send to the SplitterMovingEvent.  Fixes #79598.
7709
7710 2006-10-06  Jackson Harper  <jackson@ximian.com>
7711
7712         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
7713         since we use this for auto scrolling also.
7714
7715 2006-10-05  Chris Toshok  <toshok@ximian.com>
7716
7717         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
7718         beginning to think that most datagrid column types don't need this
7719         method.  Fixes bug #79392.
7720
7721 2006-10-05  Chris Toshok  <toshok@ximian.com>
7722
7723         * DataGrid.cs: move back to a more lazy scheme for creating the
7724         CurrencyManager, so we aren't updating it every time you set
7725         either DataSource or DataMember.  Also, don't call
7726         RecreateDataGridRows if the currency manager hasn't changed.
7727
7728 2006-10-05  Chris Toshok  <toshok@ximian.com>
7729
7730         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
7731         emitted, SelectedIndex should already be updated.  Fixes bug
7732         #78929.
7733
7734 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
7735
7736         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
7737           ToolStripTextBox.cs: Initial commit.
7738         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
7739
7740 2006-10-05  Jackson Harper  <jackson@ximian.com>
7741
7742         * TabControl.cs: We need to invalidate the tab control area when
7743         new ones are added (duh).
7744
7745 2006-10-03  Chris Toshok  <toshok@ximian.com>
7746
7747         * Form.cs (ProcessDialogKey): if the focused control is in this
7748         form and is a button, call its PerformClick method here.  Fixes
7749         #79534.
7750
7751 2006-10-04  Jackson Harper  <jackson@ximian.com>
7752
7753         * TabPage.cs: Ignore setting of Visible, and add an internal
7754         method for setting the controls visibility.  TabPage's Visible
7755         property is a little strange on MS, this seems to make us
7756         compatible, and fixes cases where people set all the tab pages to
7757         visible.
7758         * TabControl.cs: Use the new internal setting on tab pages
7759         visibility.
7760
7761 2006-10-03  Mike Kestner  <mkestner@novell.com>
7762
7763         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
7764
7765 2006-10-03  Mike Kestner  <mkestner@novell.com>
7766
7767         * ListView.cs : use is_visible instead of Visible to check if 
7768         scrollbars should be placed/sized.  Also some max_wrap_width
7769         love for LargeIcon view.  [Fixes #79533]
7770
7771 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
7772
7773         * TextControl.cs :
7774           Make set_TextAlign() do actually update the align. Fixed #78403.
7775
7776 2006-10-03  Chris Toshok  <toshok@ximian.com>
7777
7778         * DataGrid.cs: fix a crash when switching datasources if the
7779         vertical scrollbar is at someplace other than Value = 0.  Also,
7780         reduce the number of recalculation passes we do in SetDataSource
7781         from 2 to 1.
7782
7783 2006-10-03  Jackson Harper  <jackson@ximian.com>
7784
7785         * TextBoxBase.cs: Move the if value the same bail check up, we
7786         don't want to empty the document if it is already empty, this
7787         seems to severly mess up the caret.  TODO: I should probably fix
7788         the empty statement to update teh caret somehow.
7789
7790 2006-10-03  Chris Toshok  <toshok@ximian.com>
7791
7792         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
7793         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
7794         reflection, an internal row type, properties on said type, etc.)
7795         will work with our datagrid.  Fixes #79531.
7796
7797 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
7798
7799         * FileDialog.cs: Don't crash if a path is not accessible
7800           (System.UnauthorizedAccessException). Fixes #79569.
7801         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
7802           a ':' too. Return unknown icon for those paths/files.
7803
7804 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
7805
7806         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
7807         GetContainerControl returns null.
7808
7809 2006-10-02  Chris Toshok  <toshok@ximian.com>
7810
7811         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
7812         call to XGetWindowAttributes instead of "handle".  fixes an X
7813         error using notifyicon after the NotifyIconWindow to Form base
7814         class switch.
7815
7816 2006-10-02  Chris Toshok  <toshok@ximian.com>
7817
7818         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
7819         server grab and looping we need to do to get down to the most
7820         deeply nested child window.
7821         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
7822         QueryPointer again after the WarpPointer so we can generate a
7823         proper (fake) MotionNotify event to be enqueued in the destination
7824         window's queue.
7825         (GetCursorPos): call QueryPointer.
7826
7827         Fixes #79556.
7828
7829 2006-10-02  Jackson Harper  <jackson@ximian.com>
7830
7831         * NotifyIcon.cs: Derive the notify icon from a form, so things
7832         like FindForm work on it.
7833         - Swallow the WM_CONTEXTMENU message, since that is generated on
7834         mouse down, and context menu is a mouse up kinda guy.  I believe
7835         the correct fix here is probably to make the notify icon entirely
7836         NC area, but this seems to work fine for anyone not manipulating
7837         WndProc.
7838
7839 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
7840
7841         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
7842           ToolStripItemCollection.cs, ToolStripLabel.cs,
7843           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
7844           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
7845           Initial implementation.
7846         * TextRenderer.cs: Provide padding to MeasureText.
7847
7848 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
7849
7850         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
7851         of ButtonBaseAccessibleObject. Fix bug #79552.
7852
7853 2006-10-02  Jackson Harper  <jackson@ximian.com>
7854
7855         * MdiWindowManager.cs: When maximizing use the containers client
7856         rect, not it's bounds, so nc area is accounted correctly.
7857         - Use the parent form's size for the menu position, since the
7858         client isn't always the full form size.
7859
7860 2006-10-01  Chris Toshok  <toshok@ximian.com>
7861
7862         * ScrollableControl.cs: make sure neither right_edge or
7863         bottom_edge are < 0, since they're used as LargeChange for the
7864         horiz/vert scrollbars respectively.  Fixes #79539.
7865
7866 2006-10-01  Chris Toshok  <toshok@ximian.com>
7867
7868         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
7869         the xplatuix11 code can cause us to destroy/recreate our handle.
7870
7871         * XplatUIX11.cs
7872         (SystrayAdd):
7873         - this code can be invoked many times for the same Hwnd.  Make
7874           sure we only destroy the client window once (the first time this
7875           method is called).  This fixes bug #79544.
7876         - Remove the call to the improperly bound XSync.  why we had two
7877           bindings to this, I will never know, but this call resulted in
7878           events being discarded from the queue(!).
7879         - correct a misunderstanding of _XEMBED_INFO - the second atom is
7880           not our current state but the state we wish to be in.  So, 0 if
7881           we don't want to be mapped.  Change it to 1.
7882         (SystrayRemove): The XEMBED spec makes mention of the fact that
7883         gtk doesn't support the reparent of client windows away from the
7884         embedder.  Looking at gtksocket-x11.c seems to agree with this.
7885         The only avenue we have for removing systray icons is to destroy
7886         them.  We don't want the handle to go away for good, though, so
7887         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
7888         #79545.
7889         
7890 2006-10-01  Chris Toshok  <toshok@ximian.com>
7891
7892         * Form.cs (WndProc): inline the native_enabled variable usage into
7893         the cases in which it's used.  Fixes #79536.
7894
7895 2006-09-29  Mike Kestner  <mkestner@novell.com>
7896
7897         * ListView.cs : toggle the selection state for ctrl clicks in 
7898         multiselect mode. [Fixes #79417]
7899
7900 2006-09-29  Mike Kestner  <mkestner@novell.com>
7901
7902         * ListView.cs : kill CanMultiSelect and refactor the selection
7903         code to support multiselection in the absence of mod keys. Steal
7904         arrow/home/end keys by overriding InternalPreProcessMessage to
7905         restore regressed keynav behavior.
7906         [Fixes #79416]
7907
7908 2006-09-29  Jackson Harper  <jackson@ximian.com>
7909
7910         * MdiClient.cs: Repaint the titlebars when the active window is
7911         changed.
7912
7913 2006-09-29  Chris Toshok  <toshok@ximian.com>
7914
7915         * Application.cs: when entering a runloop with a modal, make sure
7916         the hwnd is enabled.  Fixes #79480.
7917
7918 2006-09-29  Chris Toshok  <toshok@ximian.com>
7919
7920         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
7921         when ListManager.CanAddRows == false, bump us back one.
7922
7923         * DataGridColumnStyle.cs (ParentReadOnly): remove the
7924         listmanager.CanAddRows check.  This makes ArrayLists uneditable
7925         using a datagrid, which is not right.
7926         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
7927         is an IEditable, but call property_descriptor.SetValue regardless.
7928         fixes #79435.
7929
7930 2006-09-29  Chris Toshok  <toshok@ximian.com>
7931
7932         * DataGridBoolColumn.cs: we need to test equality in the face of
7933         possible null values (as is the case with the default NullValue).
7934         This patch keeps us from crashing in that case.
7935
7936 2006-09-29  Jackson Harper  <jackson@ximian.com>
7937
7938         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
7939         here, since it will get called for every node collection in the
7940         tree. This is now done in the treeview once the sorting is
7941         finished.
7942         * TreeView.cs: Recalculate the visible order, and update the
7943         scrollbars after sorting, set the top nope to the root so that the
7944         recalc actually works.
7945
7946 2006-09-29  Chris Toshok  <toshok@ximian.com>
7947
7948         * LinkLabel.cs: more handling of the default link collection in
7949         the face of LinkArea manipulation.  The default link collection
7950         contains 1 element (start=0,length=-1).  If the user sets LinkArea
7951         to anything and the links collection is the default, clear it.
7952         Then only add the link if its nonempty.  Fixes #79518.
7953
7954 2006-09-29  Chris Toshok  <toshok@ximian.com>
7955
7956         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
7957         piece correctly when we hit a '\n'.  Fixes #79517.
7958
7959 2006-09-29  Chris Toshok  <toshok@ximian.com>
7960
7961         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
7962         change the binding of gdk_init_check to take two IntPtr's, and
7963         pass IntPtr.Zero for both of them.  Fixes #79520.
7964
7965 2006-09-29  Mike Kestner  <mkestner@novell.com>
7966
7967         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
7968         [Fixes #78779]
7969
7970 2006-09-28  Jackson Harper  <jackson@ximian.com>
7971
7972         * XplatUIX11.cs: When translating NC messages make sure we go from
7973         whole window to screen, not client window to screen.
7974         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
7975         method doesn't exist
7976         - Skip over controls that aren't forms when arranging.
7977
7978 2006-09-28  Jackson Harper  <jackson@ximian.com>
7979
7980         * XplatUIWin32.cs: Clip the rect to the parent window.
7981         * XplatUIStructs.cs: Add clipping modes struct.
7982         * InternalWindowManager.cs: New private method that factors title
7983         bar heights in when calculating the pos of an NC mouse message.
7984         - Use SendMessage to force a paint when the form's size is changed
7985         instead of painting the decorations immediately.
7986         - Don't let the NC button click messages get to DefWndProc,
7987         because they will attempt to handle windowing themself, and this
7988         messes up z-order (it will put them in front of the scrollbars).
7989         * XplatUIX11.cs: Make sure that we don't reset window managers if
7990         we already have one (ie the window is an MDI window).
7991
7992 2006-09-28  Chris Toshok  <toshok@ximian.com>
7993
7994         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
7995         menu code really needs going over.
7996
7997 2006-09-27  Chris Toshok  <toshok@ximian.com>
7998
7999         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
8000         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
8001         window is maximizable.  So, we need to make sure that even if we
8002         clear the border/wm frame of those functions, they're still
8003         available (basically, we remove the decoration without removing
8004         the function).  Half the fix for #79338.
8005
8006 2006-09-27  Chris Toshok  <toshok@ximian.com>
8007
8008         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
8009         Fixes bug #79515.
8010
8011 2006-09-27  Chris Toshok  <toshok@ximian.com>
8012
8013         * Splitter.cs: reorder things a bit so that we don't actually
8014         draw/move the splitter until after calling OnSplitterMoving.  This
8015         lets users cancel/disallow the movement by explicitly setting
8016         event.SplitX/SplitY.  Fixes #79372.
8017
8018 2006-09-27  Jackson Harper  <jackson@ximian.com>
8019
8020         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
8021         because it is most likely on a window being destroyed, and that
8022         will give us an X11 error.
8023
8024 2006-09-27  Chris Toshok  <toshok@ximian.com>
8025
8026         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
8027         the dropdown button now toggles between showing and hiding the
8028         dropdown.  Also, get rid of dropdown_form_showing and just use
8029         dropdown_form.Visible.  We still don't do a grab, but I'll leave
8030         that part to someone who has handled Capture-fu before.
8031
8032 2006-09-27  Chris Toshok  <toshok@ximian.com>
8033
8034         * DataGrid.cs: return false if alt isn't pressed when '0' is
8035         pressed.  this keeps the '0' key from being swallowed, and fixes
8036         bug #79350.
8037
8038 2006-09-27  Chris Toshok  <toshok@ximian.com>
8039
8040         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
8041         Calling Refresh (in response to a scrollbar event) screws up the
8042         scrollbar painting.  Fixes bug #78923.
8043
8044 2006-09-27  Chris Toshok  <toshok@ximian.com>
8045
8046         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
8047         then insert into hashtable" blocks threadsafe.
8048
8049 2006-09-27  Chris Toshok  <toshok@ximian.com>
8050
8051         * MessageBox.cs (CreateParams): the styles should be |'ed with our
8052         baseclass's, since otherwise the
8053         ControlBox/MinimizeBox/MaximizeBox assignments above have no
8054         effect.  This gets the close button back in messageboxes.
8055
8056 2006-09-27  Chris Toshok  <toshok@ximian.com>
8057
8058         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
8059         flag, not just != 0.  this makes flags that are actually multiple
8060         bits (like WS_CAPTION) work.  fixes bug #79508.
8061
8062 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
8063
8064         * PageSetupDialog.cs: add support for getting and settings the 
8065         paper size, source and orientation.
8066
8067 2006-09-26  Chris Toshok  <toshok@ximian.com>
8068
8069         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
8070         and caption == "", we need to remove the resize handles as well as
8071         the title bar.
8072
8073         * Control.cs (set_Text): turns out that setting Text on a form
8074         should change the WM styles on the window, since if ControlBox ==
8075         false, the only way to get a window border is to have a non-""
8076         Text property.  check winforms/forms/text.cs for an example.  so,
8077         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
8078         update both window styles and title.  This fixes a lot of dialogs
8079         (including the preferences dialog in MonoCalendar.)
8080
8081 2006-09-26  Chris Toshok  <toshok@ximian.com>
8082
8083         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
8084         control isn't a Form), call Win32ShowWindow to hide the window,
8085         but don't update the control Visible property.  When we reparent
8086         back to a parent control, call SetVisible in order for the
8087         window's visibility to be reinstated.
8088
8089         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
8090         the FosterParent.
8091
8092         * Control.cs (ControlCollection.Remove): remove that value.Hide()
8093         call for good, since it breaks MonoCalendar (and other things I'm
8094         sure.) Also, set all_controls to null *after* the owner calls,
8095         which end up regenerating it.
8096         (ChangeParent): allow new_parent to be == null, passing
8097         IntPtr.Zero down to XplatUI.
8098
8099         this fixes #79294 the right way.
8100
8101 2006-09-26  Mike Kestner  <mkestner@novell.com>
8102
8103         * GridEntry.cs : internal SetParent method.
8104         * PropertyGrid.cs : attach to property changed on the proper
8105         target if we have a hierarchical grid with subobjects. Setup
8106         GridItem.Parent for hierarchical items.
8107         * PropertyGridView.cs : Set value on the correct target for
8108         hierarchical grids. [Fixes #78903]
8109
8110 2006-09-26  Chris Toshok  <toshok@ximian.com>
8111
8112         * Control.cs (ChildNeedsRecreating): this should return true if
8113         either we're being recreated and the child is in our list, or our
8114         parent is waiting for our recreation.
8115
8116 2006-09-26  Chris Toshok  <toshok@ximian.com>
8117
8118         * Control.cs (ControlCollection.Remove): reinstate the
8119         value.Hide() call as suggested in bug #79294.
8120
8121 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
8122
8123         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
8124         coordinates (versus a relative move).
8125
8126 2006-09-26  Chris Toshok  <toshok@ximian.com>
8127
8128         * Control.cs: rework child recreation a little bit.  It turns out
8129         that we race between the DestroyNotify the WM_DESTROY message.  If
8130         the parent gets its DestroyNotify before the child gets the
8131         WM_DESTROY message, the child ends up not recreating (since the
8132         parent finishes its recreation on DestroyNotify, and the child
8133         checks ParentIsRecreating.)
8134
8135         So, instead we store off a list of all the child controls which
8136         need to be recreated when the parent control starts to recreate
8137         itself.  Then, when child controls get their WM_DESTROY message we
8138         check to see if they're in the parent's pending recreation list,
8139         and if so, we recreate.  This removes all dependency on ordering
8140         from the code and fixes the initial MonoCalendar upgrade dialog.
8141         
8142 2006-09-26  Jackson Harper  <jackson@ximian.com>
8143
8144         * TextControl.cs: Use the Line to get the length of the line,
8145         since soft line breaks can change the end line.
8146
8147 2006-09-26  Chris Toshok  <toshok@ximian.com>
8148
8149         * Control.cs (ControlCollection.AddImplicit): don't add the
8150         control again if it's already in one of our lists.  This keeps us
8151         from adding controls over and over again for comboboxes when their
8152         handle gets recreated (as the combobox adds implicit controls in
8153         OnHandleCreated).  Fixes the X11 errors in bug #79480.
8154
8155 2006-09-26  Jackson Harper  <jackson@ximian.com>
8156
8157         * TextControl.cs: When deleting characters make sure that any
8158         orphaned zero lengthed tags get deleted.
8159         - Fix ToString for zero lengthed tags.
8160
8161 2006-09-25  Jackson Harper  <jackson@ximian.com>
8162
8163         * TextControl.cs: When getting a tag at the location there can be
8164         multiple tags at the same spot, these are 0-lengthed tags that
8165         appear when extra formatting has been stuck in a location.  We
8166         need to pull out the last of these 0 lengthed tags.
8167
8168 2006-09-25  Jackson Harper  <jackson@ximian.com>
8169
8170         * TextControl.cs: Fix print out in debug method.
8171         * TextBoxBase.cs: When text is set bail if we are setting to the
8172         previous value.
8173         
8174 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
8175
8176         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
8177           It is now possible to change the selected index in a FontXXXListBox
8178           with the up and down arrow keys from the FontXXXTextBoxes.
8179           Also, send the FontXXXTextBox mouse wheel event to the corresponding
8180           FontXXXListBoxes to match ms.
8181
8182 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
8183
8184         * SystemInformation.cs: Return a clone of the theme's MenuFont because
8185         anyone can dispose it, anytime. All other properties returns enums, 
8186         structs or basic types so they don't need such tricks.
8187
8188 2006-09-22  Jackson Harper  <jackson@ximian.com>
8189
8190         * XplatUI.cs:
8191         * XplatUIWin32.cs:
8192         * Clipboard.cs:
8193         * DataFormats.cs:
8194         * XplatUIOSX.cs:
8195         * XplatUIDriver.cs: Update interface to add a primary selection
8196         flag, so the driver can use the primary selection buffer if
8197         needed.
8198         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
8199
8200         * RichTextBox.cs: We need to supply the data object to paste now
8201         (so we can choose to supply CLIPBOARD or PRIMARY).
8202         * TextBoxBase.cs: Supply data object to paste (see above).
8203         - Middle click uses the primary selection data object.
8204         
8205 2006-09-21  Chris Toshok  <toshok@ximian.com>
8206
8207         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
8208         of SetWMStyles.  It's still a rat's nest and is largely
8209         order-dependent which I dislike immensely.  This also fixes the X
8210         button disappearing from toplevel forms.
8211
8212 2006-09-21  Mike Kestner <mkestner@novell.com>
8213
8214         * ListBox.cs: move Jordi's click/dblclick raising code to the
8215         mouse up handler.
8216
8217 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8218
8219         * ListBox.cs: Fixes 79450
8220
8221 2006-09-21  Mike Kestner <mkestner@novell.com>
8222
8223         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
8224         to deal with people updating the TreeNodeCollection after the tree
8225         is disposed.  "Fixes" 79330.
8226
8227 2006-09-20  Jackson Harper <jackson@ximian.com>
8228
8229         * TextControl.cs: Push the cursor record onto the undo stack
8230         before the delete action. This fixes 78651.
8231
8232 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
8233
8234         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
8235         CreateParams. Fixes 79329.
8236
8237 2006-09-19  Chris Toshok  <toshok@ximian.com>
8238
8239         * XplatUIX11.cs: a couple of blanket code massage passes to clean
8240         things up a bit.  First, get rid of the NetAtoms array (and the NA
8241         enum), and just embed the atoms as static fields.  Also, add a
8242         couple of functions (StyleSet and ExStyleSet) to clean up all the
8243         bitmask testing of styles.
8244
8245         * X11Structs.cs: remove the NA enum, not needed anymore.
8246         
8247 2006-09-19  Chris Toshok  <toshok@ximian.com>
8248
8249         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
8250         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
8251         added cleanup to get MessageBox titles appearing again, which were
8252         broken by my earlier fix for caption-less/ControlBox-less windows.
8253
8254 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
8255
8256         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
8257           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
8258           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
8259           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
8260           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
8261           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
8262           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
8263           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
8264           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
8265           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
8266           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
8267             Inital import.
8268         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
8269           ToolStripButton.cs: Stubs needed for above.
8270         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
8271
8272 2006-09-15  Chris Toshok  <toshok@ximian.com>
8273
8274         * XplatUIX11.cs:
8275         - make the MessageQueues hashtable Synchronized.
8276         
8277         - SendMessage: if the Hwnd is owned by a different thread, use the
8278         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
8279         thread.  Fixes bug #79201.
8280
8281 2006-09-15  Chris Toshok  <toshok@ximian.com>
8282
8283         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
8284         ControlBox == false, we disallow maximize/minimize/close.  If the
8285         form Caption is "" we also disallow move (and get rid of the Title
8286         decoration).  Unfortunately, regardless of how things are set,
8287         we're stuck with the Title and WM menu.
8288
8289 2006-09-15  Chris Toshok  <toshok@ximian.com>
8290
8291         * Application.cs: add locking around the static message_filters
8292         ArrayList, part of #79196.
8293
8294 2006-09-15  Chris Toshok  <toshok@ximian.com>
8295
8296         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
8297         Form.ControlBox == false, the window has no titlebar nor resize
8298         handles.  fixes bug #79368.
8299
8300 2006-09-15  Chris Toshok  <toshok@ximian.com>
8301
8302         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
8303         >= 0.  Fixes bug #79370.
8304
8305 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
8306         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
8307         * Control.cs:
8308             Add properties: LayoutEngine, Margin, DefaultMargin.
8309             Add method: GetPreferredSize.
8310             Move layout logic from PerformLayout to layout engines. 
8311
8312 2006-09-13  Chris Toshok  <toshok@ximian.com>
8313
8314         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
8315         fix for #79326 broke #78718, so this change addresses that.
8316
8317         - in SendWMDestroyMessages remove the call to
8318         CleanupCachedWindows, since we might be recreating the control and
8319         need to maintain the references to right Hwnd handles.  Also, set
8320         the zombie flag to true for each of the children in the hierarchy
8321         instead of calling hwnd.Dispose.  This will cause GetMessage to
8322         ignore all events for the window except for DestroyNotify.
8323
8324         - In GetMessage, ignore messages except for DestroyNotify for
8325         zombie hwnds.
8326         
8327         * Control.cs: revert the is_recreating fix from the last
8328         ChangeLog.  It's definitely "right", but it breaks switching from
8329         an MDI form to a non-MDI form.  Will need to revisit that.
8330
8331         * Hwnd.cs: add a zombie flag, which means "the
8332         client_window/whole_window handles are invalid, but we're waiting
8333         for the DestroyNotify event to come in for them".  Set the flag to
8334         false explicitly if setting WholeWindow/ClientWindow, and also
8335         when Disposing.
8336         
8337 2006-09-13  Chris Toshok  <toshok@ximian.com>
8338
8339         * XplatUIX11.cs: rework window destruction slightly.
8340
8341         - when destroying the windows associated with a control, we don't
8342         need 2 separate XDestroyWindow calls.  Just the one for the
8343         whole_window (or for client_window if whole_window is somehow
8344         IntPtr.Zero -- can this happen?) is enough.
8345
8346         - reworked SendWMDestroyMessages slightly, so we always dispose
8347         the child control hwnd's after sending the messages.
8348         
8349         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
8350         the two places it was used (one was even using hwnd.Handle and the
8351         other hwnd.client_window.  ugh), adding another call in
8352         SendWMDestroyMessages.  We need this new call because now the
8353         DestroyNotify events in the queue will be ignored for the child
8354         controls (as their hwnd's were disposed, and the window id's
8355         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
8356
8357         - this fixes bug #79326.
8358
8359 2006-09-13  Chris Toshok  <toshok@ximian.com>
8360
8361         * Control.cs: don't always set is_recreating to false at the end
8362         of RecreateHandle, since sometimes we're not done (and won't be
8363         until WndProc handles the WM_DESTROY message).  Also, set
8364         is_recreating to false in the WM_DESTROY handling code.  Part of
8365         the fix for bug #79326.
8366
8367 2006-09-13  Miguel de Icaza  <miguel@novell.com>
8368
8369         * X11DesktopColors.cs: Start the droppage of debugging messages.
8370
8371         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
8372
8373 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
8374
8375         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
8376
8377 2006-09-12  Chris Toshok  <toshok@ximian.com>
8378
8379         * DataGrid.cs (get_ListManager): if the list_manager is null, try
8380         to create it using SetDataSource.  Fixes bug #79151.
8381
8382 2006-09-11  Chris Toshok  <toshok@ximian.com>
8383
8384         * XEventQueue.cs: add a DispatchIdle property.
8385
8386         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
8387         either the queue is null, or the queue has DispatchIdle set to
8388         true.
8389         (DoEvents): set queue.DispatchIdle to false around the
8390         peek/translate/dispatch message loop in this method.  This keeps
8391         Application.Doevents from emitting idle events.  Part of the fix
8392         for #78823.
8393
8394 2006-09-11  Chris Toshok  <toshok@ximian.com>
8395
8396         * DataGrid.cs (set_DataSource): make this work for both the
8397         winforms/datagrid test and ReportBuilder.  It seems as though when
8398         we've created a ListManager (or maybe it's if we have a
8399         BindingContext?), when we set the DataSource it clears the
8400         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
8401         #79333.
8402
8403 2006-09-11  Chris Toshok  <toshok@ximian.com>
8404
8405         * XplatUIX11.cs: deal with queue being null, which happens in all
8406         the Clipboard functions.  Fixes one of the two problems mentioned
8407         in #78612.
8408
8409 2006-09-11  Chris Toshok  <toshok@ximian.com>
8410
8411         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
8412         button on various spots (including outside the menu) works closer
8413         to MS, and doesn't crash.  Fixes #79343.
8414
8415 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
8416
8417         * ListView.cs: Do not initialize item_sorter in init. To match MS,
8418         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
8419         and the internal comparer is set. When a new ListViewItemSorter is set,
8420         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
8421         was specified. No further processing is necessary if SortOrder is set
8422         to it's current value. If Sorting is modified to None, and View is
8423         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
8424         (either custom or our internal ItemComparer) to null, on 1.0 profile
8425         only set item_sorter to null if its our internal IComparer. If Sorting
8426         is modified to Ascending or Descending, then use our internal IComparer
8427         if none is set, and if the current IComparer is our internal one then:
8428         on 2.0 profile always replace it with one for new Sorting, and on 1.0
8429         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
8430         Enum.IsDefined to verify whether a valid View value is specified in
8431         its setter. Automatically sort listview items when listview is
8432         created. In Sort, do nothing if ListView is not yet created, or if
8433         no item_sorter is set (no Sorting was set, Sorting was explicitly set
8434         to None or ListViewItemSorter was set to null). Added Sort overload
8435         taking a bool to indicate whether the ListView should be redrawn when
8436         items are sorted (we use this in ListViewItemCollection to avoid double
8437         redraws). Modified our internal IComparer to take the sort order into
8438         account. In Add and AddRange methods of ListViewItemCollection, also
8439         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
8440         view), but use overload with noredraw option to avoid double redraw.
8441         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
8442         true when View is Tile, and do the same when attempting to set View to
8443         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
8444         for selected/checked indices, as it involves overhead when sorting is
8445         done while these collections are not used all that often. Instead
8446         we'll build the indices on demand. Modified IList implementation of
8447         CheckedIndexCollection to use public methods if object is int.
8448         Modified CheckedListViewItemCollection to hide checked items if
8449         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
8450         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
8451         IList implementation in SelectedIndexCollection to use public methods
8452         if object is int. Modified SelectedListViewItemCollection to hide
8453         selected items if listview is not yet created.
8454         * ListViewItem.cs: CheckedIndices list no longer needs to be
8455         maintained separately (see ListView changes). Also clone font, fixes
8456         test failure.
8457
8458 2006-09-11  Mike Kestner  <mkestner@novell.com>
8459
8460         * ComboBox.cs: if we are updating the contents of the currently
8461         selected index, refresh the control or the textbox selection.
8462         [Fixes #79066]
8463
8464 2006-09-11  Mike Kestner  <mkestner@novell.com>
8465
8466         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
8467         the 'specified' logic has been moved there.  This seems like a bug 
8468         in Control.cs, since our current SetBoundsCore completely ignores 
8469         the specified parameter.  Peter's commit seems to indicate that is 
8470         the way the MS control implementation works.  [Fixes #79325]
8471
8472 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
8473
8474         * XplatUI.cs: Set default_class_name to be composed
8475         of current domain id. This allows MWF to be loaded in multiple
8476         domains on Win32.
8477
8478 2006-09-09  Miguel de Icaza  <miguel@novell.com>
8479
8480         * X11Keyboard.cs: If we are unable to obtain the input method, do
8481         not call CreateXic to create the input context.   Should fix
8482         #78944/79276.
8483
8484 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
8485
8486         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
8487           Simplified gnome support by adding more pinvokes to get the
8488           icon for a file or mime type.
8489
8490 2006-09-08  Jackson Harper  <jackson@ximian.com>
8491
8492         * MenuAPI.cs: Deslect popup context menu items before closing the
8493         window, so that you don't see the previously selected item
8494         selected when you reopen the menu.
8495         * TextControl.cs: Update the cursor position even if we don't have
8496         focus.  This fixes typing in things like the ComboBox.  I'm not
8497         totally sure we should always set the visibility if we don't have
8498         focus, but couldn't find any corner cases where the cursor showed
8499         up when it shouldn't.
8500
8501 2006-09-08  Chris Toshok  <toshok@ximian.com>
8502
8503         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
8504         our arrays are length 256.  & 0xff before indexing.  Fixes the
8505         crash in bug #78077.
8506         
8507 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8508
8509         * ThemeWin32Classic.cs: 
8510         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
8511         is true. Handle that check box too.
8512
8513 2006-09-07  Chris Toshok  <toshok@ximian.com>
8514
8515         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
8516         79244.
8517
8518 2006-09-07  Chris Toshok  <toshok@ximian.com>
8519
8520         * Control.cs: in set_BackColor only do the work if
8521         background_color != value.
8522
8523         * XplatUIX11.cs: move the clearing of invalid areas (both client
8524         and nc) to the same block of code where we set (nc_)expose_pending
8525         to false.  That is, move it from PaintEventEnd to PaintEventStart,
8526         so things that cause invalidates from within OnPaint will trigger
8527         another call to OnPaint.  Fixes bug #79262.
8528
8529 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
8530
8531         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
8532         * FileDialog.cs: Fix typo
8533
8534 2006-09-07  Jackson Harper  <jackson@ximian.com>
8535
8536         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
8537         for tab pages if they have any.
8538
8539 2006-09-06  Mike Kestner  <mkestner@novell.com>
8540
8541         * Splitter.cs: use the "current" rect when finishing drag handle
8542         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
8543
8544 2006-09-06  Mike Kestner  <mkestner@novell.com>
8545
8546         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
8547         support offset splitters. [Fixes #79298]
8548
8549 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
8550
8551         * Mime.cs: Fixed a bug that could override the global mime type
8552           result.
8553
8554 2006-09-05  Jackson Harper  <jackson@ximian.com>
8555
8556         * TabControl.cs: Better calculation method for setting the slider
8557         pos. Prevents crashes on really wide tabs.
8558         - Draw Image on tab pages if an image list is used.
8559
8560 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8561
8562         * MonthCalendar.cs: When Font changes, the Size should be
8563         updated to fit the new font's space requirements.
8564
8565 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
8566
8567         * ListBox.cs: If the items are cleared with Items.Clear set
8568           top_index to 0.
8569
8570 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8571
8572         * MonthCalendar.cs: Handle arrow keys as input keys. Also
8573         fire DateChanged event instead of DateSelected event when
8574         the date was changed by keyboard interaction.
8575
8576 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8577
8578         * DateTimePicker.cs: Handle DateChanged for the associated
8579         month_calendar control, and set month_calendar.Font from 
8580         OnFontChanged method, as well as resize the height of the
8581         control when needed. Make PreferredHeight proportional.
8582
8583 2006-09-01  Chris Toshok  <toshok@ximian.com>
8584
8585         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
8586         properties.
8587
8588         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
8589
8590 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
8591
8592         * FileDialog.cs: Set ClientSize instead of window size, to allow space
8593           for decorations (Fixes #79219)
8594
8595 2006-09-01  Mike Kestner  <mkestner@novell.com>
8596
8597         * ComboBox.cs: first stab at sorting plus some selection handling
8598         fixes to bring us more in line with MS behavior.  Also switches back
8599         to index based selection.  Alternative patches for index-based 
8600         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
8601         and latency@gmx.de on bug 78848.  I assume they were similar to this
8602         code I've had simmering in my tree forever.
8603         [Fixes #78848]
8604
8605 2006-09-01  Chris Toshok  <toshok@ximian.com>
8606
8607         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
8608         when setting list position guard against ending up with a -1 index
8609         (the other part of the fix for #78812).  Should probably make sure
8610         we don't need the analogous fix in the ItemDeleted case.
8611
8612         * DataGrid.cs:
8613         - in SetDataSource, work around the fact that the way
8614         OnBindingContextChanged is invoked will cause us to re-enter this
8615         method.  I'll remove the hack once I investigate
8616         OnBindingContextChanged.
8617
8618         - fix the logic in set_DataSource and set_DataMember (basically
8619         what to do if the other of the two is null.)
8620         
8621         - in OnListManagerItemChanged, we need to take into account the
8622         edit row when deciding whether or not to call RecreateDataGridRows
8623         (part of the fix for #78812).
8624
8625 2006-09-01  Jackson Harper  <jackson@ximian.com>
8626
8627         * Splitter.cs: Don't do anything if there is no control to affect
8628         (prevents us from crashing in weird tet cases).
8629         * TreeView.cs: Bounding box for the mouse movement reverting
8630         focus/selection back to previously selected node.  This matches
8631         MS, and makes the tree a lot more useable.
8632         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
8633         use clipping so they are not drawn.  This fixes when the control
8634         is set to have a transparent background, or if it was over an
8635         image.
8636
8637 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
8638
8639         * MimeIcon.cs: Improved handling for reading default icons when
8640           using gnome (2.16 made it necessary). Check and read svg icons
8641           first, then 48x48 and then 32x32 icons.
8642
8643 2006-08-31  Chris Toshok  <toshok@ximian.com>
8644
8645         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
8646         visible.
8647
8648         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
8649         ProcessKeyPreview.  Fixes part of #77806.
8650
8651         * DataGrid.cs: big patch.
8652
8653         - revert the queueing up of DataSource/DataMember if inside
8654         BeginInit/EndInit calls.  That's not the way the datagrid achieves
8655         its delayed databinding.  Instead, call SetDataSource in
8656         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
8657         #78811.
8658
8659         - Also, it wasn't mentioned in #78811, but the test case exhibits
8660         behavior that was lacking in our datagrid implementation - Columns
8661         that have mapping names that don't exist in the datasource's
8662         properties aren't shown.  Yuck.  To fix this I added the bound
8663         field to the column style, and basically any calculation to figure
8664         out anything about columns uses a loop to find the bound columns.
8665         still need to investigate if I can cache an array of the bound
8666         columns or if the indices must be the same.
8667
8668         - When setting CurrentCell, we no longer abort if the cell being
8669         edited was in the add row.  This fixes the other part of #77806.
8670
8671         - The new code also fixes #78807.
8672         
8673         * ThemeWin32Classic.cs: perpetrate the same disgusting
8674         column.bound field hack, and only render bound fields.
8675
8676 2006-08-31  Chris Toshok  <toshok@ximian.com>
8677
8678         * DataGridColumnStyle.cs: add bound field.  this field is true if
8679         the datasource has a property corresponding to the mapping name.
8680
8681         * DataGridTableStyle.cs: set the bound field on the column styles
8682         depending on whether or not we have a column for that property.
8683
8684 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
8685
8686         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
8687           splitter control (fixes #79228)
8688
8689 2006-08-31  Chris Toshok  <toshok@ximian.com>
8690
8691         * DataGridColumnStyle.cs: we need to delay the assignment of
8692         property descriptor until the last possible moment due to the lazy
8693         databinding stuff in the datagrid.  Also, fix the exceptions
8694         thrown by CheckValidDataSource to match MS.
8695
8696 2006-08-31  Jackson Harper  <jackson@ximian.com>
8697
8698         * Form.cs: When activated select the active control, if there is
8699         no active control, we select the first control.
8700         * XplatUIX11.cs: If there is no focus control when we get a
8701         FocusIn event, find the toplevel form and activate it.  This
8702         occurs when you popup a window, it becomes the focus window, then
8703         you close that window, giving focus back to the main window.
8704
8705 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8706
8707         * MonthCalendar.cs: 
8708         * ThemeWin32Classic.cs: Cache Font in bold style, as well
8709         as StringFormat with Center alignments in MonthCalendar,
8710         instead of creating new ones when drawing the control. 
8711         Also, draw the month name in bold style.
8712
8713 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
8714
8715         * Control.cs:
8716           - PerformLayout(): It would seem MS performs the fill even if the 
8717             control is not visible (part of #79218 fix)
8718           - ResetBackColor(): Use the setter to reset the color, to allow
8719             overriders to catch the change.
8720         * Form.cs:
8721           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
8722           - CreateHandle(): dito (part of $79218 fix)
8723           - Don't set an icon if we have a dialog
8724         * ScrollableControl.cs:
8725           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
8726           - ScrollIntoView(): No need to scroll if control is already visible
8727             (resolves fixme and fixes #79218)
8728
8729 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8730
8731         * MonthCalendar.cs: Change proportions in SingleMonthSize
8732         to match the aspect of the original control.
8733
8734 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
8735
8736         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
8737           get updated when they get maximized.
8738
8739 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
8740
8741         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
8742
8743 2006-08-29  Chris Toshok  <toshok@ximian.com>
8744
8745         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
8746
8747 2006-08-29  Jackson Harper  <jackson@ximian.com>
8748
8749         * TreeView.cs: Need to track selected node and highlighted node,
8750         they aren't always the same thing, when the mouse is down on a
8751         node it is hilighted, but not selected yet.
8752         - Do the HideSelection stuff right
8753         - Need to focus on rbutton mouse down. And redraw selection when
8754         right click is mouse upped.
8755
8756 2006-08-29  Mike Kestner  <mkestner@novell.com>
8757
8758         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
8759         when SubItems.Count < Columns.Count.  [Fixes #79167]
8760
8761 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
8762
8763         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
8764
8765 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
8766
8767         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
8768           from X. Only send based on ConfigureNotify if we don't have the
8769           correct location in hwnd (if the window manager moved us)
8770
8771 2006-08-28  Mike Kestner  <mkestner@novell.com>
8772
8773         * ListView.cs: remove a TODO. 
8774         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
8775         [Fixes ListView part of #79166]
8776
8777 2006-08-28  Mike Kestner  <mkestner@novell.com>
8778
8779         * ListView.cs: move wheel handler to parent since it is focused
8780         instead of the item_control now.  [Fixes #79177]
8781
8782 2006-08-28  Mike Kestner  <mkestner@novell.com>
8783
8784         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
8785         when the control is focused. [Fixes #79171]
8786
8787 2006-08-28  Mike Kestner  <mkestner@novell.com>
8788
8789         * ListView.cs: size the item and header controls for empty and
8790         unscrollable views.
8791         * ThemeWin32Classic.cs: draw disabled backgrounds.
8792         [Fixes #79187]
8793
8794 2006-08-28  Chris Toshok  <toshok@ximian.com>
8795
8796         * Form.cs: remove unused "active_form" static field.
8797
8798         * Hwnd.cs: lock around accesses to static windows collection.
8799
8800         * Application.cs: lock threads in Exit ().
8801
8802 2006-08-28  Chris Toshok  <toshok@ximian.com>
8803
8804         * NativeWindow.cs: lock around accesses to window_collection.
8805         
8806 2006-08-28  Chris Toshok  <toshok@ximian.com>
8807
8808         * Control.cs: err, fix this the right way, by locking on controls
8809         when using it.  not by making it synchronized.
8810
8811 2006-08-28  Chris Toshok  <toshok@ximian.com>
8812
8813         * Control.cs: make the static "controls" field synchronized, as it
8814         gets updated from multiple threads.
8815
8816 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
8817
8818         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
8819           Prevent other threads from exiting when calling thread sets quit state.
8820         * XEventQueue.cs: Added PostQuitState property
8821
8822 2006-08-27  Chris Toshok  <toshok@ximian.com>
8823
8824         * AsyncMethodData.cs: add a slot for the window handle.
8825
8826         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
8827         window (the destination control's window, not the foster window).
8828
8829         * Control.cs (BeginInvokeInternal): store the window's handle in
8830         the AsyncMethodData.
8831         
8832
8833 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
8834
8835         * XplatUIX11.cs:
8836           - PostQuitMessage: Removed resetting S.D display handle, we might have
8837             another loop started after calling PostQuitMessage (Fixes #79119)
8838           - Created destructor to reset S.D handle
8839
8840 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
8841
8842         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
8843
8844 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8845
8846         * TextControl.cs (Insert): Update the caret position even if we don't
8847           have a handle yet, just don't call the driver in that case.
8848         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
8849           to the end of the new selection text (Fixes #79184)
8850
8851 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8852
8853         * Form.cs (Activate): Only activate if the handle is created)
8854         * Control.c:
8855           - Mark window as invisible when it's disposed
8856           - Check if window handle is created when setting window visible, 
8857             instead of relying just on the is_created variable
8858           - Check if object is disposed when creating the control (Fixes #79155)
8859
8860 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8861
8862         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
8863           when allowing layout again. Otherwise we re-generate the anchoring 
8864           distance to the border again and actually alter what the user wanted
8865           This is ugly, it'd be better if we used DisplayRectangle instead of
8866           ClientRectangle for Control.UpdateDistances, but that causes us to
8867           have other problems (initial anchoring positons would be wrong)
8868           (Fixes #78835)
8869
8870 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8871
8872         * Control.cs:
8873           - The size and location setters shouldn't go directly to 
8874             SetBoundsCore, but to SetBounds, which triggers layout on the
8875             parent, then calls SetBoundsCore. (Related to fix for #78835)
8876           - SetBounds: Moved actual location update code into this function
8877             from SetBoundsCore, to match MS. Added call to PerformLayout if
8878             we have a parent (to trigger resizing of anchored parents if the 
8879             child size has changed (see testcase for #78835) 
8880         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
8881           new control code
8882         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
8883
8884 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8885
8886         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
8887           System.Drawing when a toplevel window gets closed; there might
8888           be other toplevel windows belonging to the same app (Fixes #78052)
8889
8890 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
8891
8892         * FileDialog.cs: After reading FileDialog settings from mwf_config
8893           use Desktop prefix only if a real folder doesn't exist anymore.
8894         * FontDialog.cs: Added char sets.
8895           It is now possible to select the font, size or style with the
8896           textboxes.
8897
8898 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
8899
8900         * PrintPreviewDialog.cs: Use assembly name constants.
8901
8902 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8903
8904         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
8905           scrollbar from whacking it's buttons)
8906
8907 2006-08-24  Chris Toshok  <toshok@ximian.com>
8908
8909         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
8910         in this patch (aggregating setting Left/Top/Width/Height to
8911         setting Bounds on the scrollbars), but the crux of the fix is in
8912         Recalculate, where we scroll by the remaining scroll_position if
8913         we're hiding a scrollbar.  The 2*$5 reward in the comment is
8914         serious.
8915
8916 2006-08-24  Jackson Harper  <jackson@ximian.com>
8917
8918         * MdiClient.cs:
8919         * MdiWindowManager.cs: If the form is made a non-mdi window we
8920         need to remove the form closed event so that closing forms works
8921         correctly.
8922
8923 2006-08-24  Jackson Harper  <jackson@ximian.com>
8924
8925         * Control.cs: Make IsRecreating internal so that the driver can
8926         check it
8927         - Temporarily remove the Hide when controls are removed, its
8928         making a whole bunch of things not work because visibility isn't
8929         getting reset elsewhere correctly
8930         * Form.cs: Need to do a full handle recreation when the mdi parent
8931         is set.
8932         * XplatUIX11.cs: If we are recreating handles don't dispose the
8933         HWNDs.  What was happening is the handles were being recreated in
8934         SendWMDestroyMessages, but then flow continued on in that method
8935         and destroyed the new handles.
8936
8937 2006-08-23  Jackson Harper  <jackson@ximian.com>
8938
8939         * Form.cs: MdiClient is always at the back of the bus
8940         * Control.cs: When the order of items in the collection is changed
8941         we need to reset the all_controls array
8942         - do the same sorta setup thats done when adding a control when a
8943         control is set on the collection.
8944
8945 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8946
8947         * TextBoxBase.cs (get_Text): Return an empty array if our document
8948           is empty (fixes #79052)
8949
8950 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8951
8952         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
8953           on WM_SYSCHAR messages (fixes #79053)
8954
8955 2006-08-23  Chris Toshok  <toshok@ximian.com>
8956
8957         * DataGrid.cs: fix flickering when scrolling vertically.
8958
8959 2006-08-23  Chris Toshok  <toshok@ximian.com>
8960
8961         * DataGrid.cs (EndEdit): only invalidate the row header when we
8962         need to.
8963
8964 2006-08-23  Chris Toshok  <toshok@ximian.com>
8965
8966         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
8967         methods.  fixes the flicker when scrolling around.
8968
8969 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8970
8971         * FileDialog.cs: Making sure the control is created before we get a 
8972           chance to use it with BeginInvoke (Fixes #79096)
8973
8974 2006-08-23  Chris Toshok  <toshok@ximian.com>
8975
8976         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
8977         width to use when painting the rows.
8978
8979 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8980
8981         * TextBoxBase.cs:
8982           - Throw ArgumentException if a negative value is passed to SelectionLength
8983           - Update the selection end if start is moved. end needs to be always
8984             after start. (Fixes #79095)
8985           - Track selection length; MS keeps the selection length even if start
8986             is changed; reset on all other operations affection selection
8987
8988 2006-08-22  Jackson Harper  <jackson@ximian.com>
8989
8990         * TreeView.cs: Make sure both scrollbars get displayed and sized
8991         correctly when the other bar is visible.
8992         - Use the original clip rectangle for checking if the area between
8993         the two scrollbars is visible, not the viewport adjusted clipping
8994         rectangle.
8995
8996 2006-08-22  Jackson Harper  <jackson@ximian.com>
8997
8998         * Binding.cs: We don't use IsBinding because it requires the
8999         control to be created, which really shouldn't be necessary just to
9000         set a property on the control.
9001
9002 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9003
9004         * ComboBox.cs: Some CB.ObjectCollection methods must throw
9005         ArgumentNullReferenceException when the argument is null.
9006
9007 2006-08-21  Jackson Harper  <jackson@ximian.com>
9008
9009         * Timer.cs: Track the thread that the timer is started in (NOT
9010         CREATED), this way messages for it will only be triggered on its
9011         queue.
9012         * XEventQueue.cs: Track the timers here, this makes timers per
9013         thread, like MS.
9014         * XplatUIX11.cs: The timers are moved to the XEventQueue.
9015
9016 2006-08-19  Chris Toshok  <toshok@ximian.com>
9017
9018         * XplatUIX11.cs: after further communication with pdb, we get the
9019         best of both worlds.  SetZOrder working for un-Mapped windows, and
9020         no X errors for un-mapped windows.
9021
9022 2006-08-19  Chris Toshok  <toshok@ximian.com>
9023
9024         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
9025         as it was causing pdn toolbars to not have the correct stacking.
9026
9027 2006-08-18  Mike Kestner  <mkestner@novell.com> 
9028
9029         * ListView.cs : guard against negative ClientArea.Width in scrollbar
9030         calculation.  Not sure why control should ever be setting a negative
9031         width though.  Fixes #78931.
9032
9033 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9034
9035         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
9036         null items in ObjectCollection class.
9037         * ListBox.cs.: Likewise.
9038
9039 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
9040
9041         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
9042           as the base method in ThemeWin32Classic should work fine.
9043           Fixed bug #78607.
9044
9045 2006-08-18  Jackson Harper  <jackson@ximian.com>
9046
9047         * Binding.cs: When validating if the value entered doesn't convert
9048         properly reset to the old value.
9049         * RadioButton.cs: Don't fire click when we get focus.
9050
9051 2006-08-18  Jackson Harper  <jackson@ximian.com>
9052
9053         * FileDialog.cs: Paint the selection on the directory combobox the
9054         same way as on MS. 
9055
9056 2006-08-17  Jackson Harper  <jackson@ximian.com>
9057
9058         * ErrorProvider.cs: Don't allow the error control to be selected.
9059         * Control.cs: Don't send the SetFocus messages, the control
9060         activation will do this, and if we do it blindly here validation
9061         does not work.
9062
9063 2006-08-17  Jackson Harper  <jackson@ximian.com>
9064
9065         * Control.cs:
9066         * ContainerControl.cs: Make validation events fire in the correct
9067         order.  TODO: For some reason the first validation event is not
9068         getting fired.
9069
9070 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9071
9072         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
9073
9074 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9075
9076         * ComboBox.cs : implement scroll wheel support for popped-down
9077         state. Fixes #78945. 
9078
9079 2006-08-17  Jackson Harper  <jackson@ximian.com>
9080
9081         * TreeView.cs: Specify treeview actions (old patch that didn't get
9082         committed for some reason).
9083         - Don't let the mouse wheel scroll us too far.  Just want to make
9084         the bottom node visible, not scroll it all the ways to the top.
9085
9086 2006-08-17  Jackson Harper  <jackson@ximian.com>
9087
9088         * XplatUIX11.cs: Mouse wheel events go to the focused window.
9089
9090 2006-08-17  Mike Kestner  <mkestner@novell.com> 
9091
9092         * ComboBox.cs : don't do mouseover selection in simple mode.
9093
9094 2006-08-16  Jackson Harper  <jackson@ximian.com>
9095
9096         * Form.cs: Fire the closing events for all the mdi child windows
9097         when a window is closed.  If the cancel args are set to true, the
9098         main window still gets the event fired, but it doesn't not close.
9099         * MdiWindowManager.cs: Do this closing cleanup in a Closed
9100         handler, instead of when the button is clicked, so cancelling the
9101         close works correctly.
9102         * ComboBox.cs: Send the mouse down to the scrollbar.
9103
9104 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9105
9106         * ListBox.cs: When passing 'null' to SelectedItem,
9107         set SelectedIndex to -1, to unselect items. This is the
9108         observed behaviour in .Net.
9109
9110 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
9111
9112         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
9113           MS flags saying there won't be any. (fixes #78800)
9114         * Control.cs (HandleClick): Made virtual
9115
9116 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9117
9118         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
9119           cultures. Fixed bug #78399.
9120
9121 2006-08-16  Jackson Harper  <jackson@ximian.com>
9122
9123         * Form.cs: Use the MdiClients MdiChildren property to access
9124         MdiChildren instead of creating the array from the child controls.
9125         * MdiClient.cs: Maintain a separate array of the mdi children, so
9126         that insertion order is maintained when the Z-order is changed.
9127
9128 2006-08-16  Mike Kestner  <mkestner@novell.com> 
9129
9130         * ListView.cs : add an ItemComparer and default to it for sorting.
9131         Fixes #79076, but sorting needs a complete overhaul to be compat with
9132         MS.
9133
9134 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
9135
9136         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
9137
9138 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9139
9140         * Hwnd.cs (Mapped): Properly traverse the tree
9141
9142 2006-08-15  Chris Toshok  <toshok@ximian.com>
9143
9144         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
9145         pass manager.Current.GetType() to ParseData.  It has to be the
9146         property type.  So, hold off doing the ParseData until we're in
9147         SetPropertyValue where we know the type.  This fixes the crash in
9148         #78821 but the textbox is still empty.
9149
9150 2006-08-15  Chris Toshok  <toshok@ximian.com>
9151
9152         * DataGrid.cs:
9153         - when we're scrolling, only call Edit() again if the
9154         current cell is still unobscured. Fixes bug #78927.
9155         - when handling mousedown on a cell, ensure the cell is visible
9156         before calling Edit.
9157         - remove the properties from DataGridRow, and remove the
9158         DataGridParentRow class altogether.
9159         
9160
9161 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9162
9163         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
9164           fire OnTextChanged by ourselves. There's no point calling base,
9165           we don't set the base value anywhere else. Fixes #78773.
9166
9167 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9168
9169         * ListBox.cs: Call CollectionChanged when modifying
9170         an item from Items indexer, to update the actual items
9171         in the list box.
9172
9173 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9174
9175         * PrintDialog.cs: Small fixes for focus and a pair of checks,
9176         to match .Net behaviour.
9177
9178 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9179
9180         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
9181
9182 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
9183
9184         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
9185
9186 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
9187
9188         * MessageBox.cs: Prevent potential NRE exception.
9189         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
9190
9191 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
9192
9193         * MessageBox.cs: Calculate the owner of a messagebox, also make
9194           it topmost. Fixes #78753
9195
9196 2006-08-14  Chris Toshok  <toshok@ximian.com>
9197
9198         * XplatUIX11.cs: A couple of fixes so that metacity will let us
9199         programmatically move windows.  first, set the PPosition hint as
9200         well as the USPosition hint.  Second include some code from pdb
9201         that sets the window type to NORMAL when we set the transient for
9202         hint.  This is because, in the absence of a window type, metacity
9203         thinks any window with TransientFor set is a dialog, and refuses
9204         to let us move it programmatically.  fascists.
9205
9206 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
9207
9208         * XplatUIX11.cs: When setting normal hints, take into consideration
9209           an different hints previously set so we don't delete them (fixes #78866)
9210
9211 2006-08-12  Chris Toshok  <toshok@ximian.com>
9212
9213         * ToolBarButton.cs: make Layout return a boolean, if something to
9214         do with the button's layout changed.
9215
9216         * ToolBar.cs:
9217         - add another parameter to Redraw, @force, which all existing
9218           calls set to true.
9219         - make the Layout function return a boolean which is true if the
9220           layout has actually changed.  Redraw now uses this (and @force)
9221           to determine when to invalidate.  At present the only place
9222           where @force can be false is the call from OnResize, when
9223           background_image == null.  So, resizing a toolbar when the
9224           layout doesn't change results in no drawing.
9225
9226 2006-08-12  Chris Toshok  <toshok@ximian.com>
9227
9228         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
9229         the VScrollBar and HScrollbar reversed.  oops.
9230
9231         * DataGrid.cs: fix the logic that assigns sizes to the implicit
9232         scrollbars.  we were assigning them twice (once in
9233         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
9234         therefore causing two scrollbar resizes (and redraws?) to happen
9235         per grid resize.
9236
9237 2006-08-12  Chris Toshok  <toshok@ximian.com>
9238
9239         * ToolBarButton.cs: redraw the entire button if the theme tells us
9240         to.
9241
9242         * Theme.cs: add ToolBarInvalidateEntireButton.
9243
9244         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
9245         buttons, just the border.
9246
9247         * ThemeNice.cs: redraw the entire toolbar button since we need to
9248         draw the highlight image.
9249
9250         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
9251         we need to redraw the entire button (not just the border).
9252
9253 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9254
9255         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
9256           for vertical bars. Fixes the mismatches shown by #78513
9257
9258 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
9259
9260         * FileDialog.cs: If a saved/remembered path doesn't exist
9261           anymore, fall back to "Desktop".
9262
9263 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9264
9265         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
9266           parent. It's apparently legal to not have one
9267         * XplatUIX11.cs:
9268           - SetZOrder: Don't try to set Z-Order on an unmapped window
9269           - CreateWindow: 0,0 are legal coordinates for a window. don't move
9270             it unless the coordinates are negative
9271
9272 2006-08-10  Mike Kestner  <mkestner@novell.com>
9273
9274         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
9275         when setting to null per msdn docs.  Fixes #78854.
9276
9277 2006-08-10  Chris Toshok  <toshok@ximian.com>
9278
9279         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
9280         flickering by setting a clip rectangle on the Graphics when we
9281         need to redraw just a particular menuitem.  Also, rename "OnClick"
9282         to "OnMouseDown" to reflect what it actually is.
9283         
9284         * Form.cs: track the OnMouseDown change.
9285
9286 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
9287
9288         * CommonDialog.cs: Properly inherit the CreateParams from the form
9289           and only change what we need. Fixes #78865
9290
9291 2006-08-10  Chris Toshok  <toshok@ximian.com>
9292
9293         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
9294         flickering in flat mode (and most of the flickering in general) by
9295         only invalidating the button border (and not the entire rectangle)
9296         when the state changes.  A couple of cases still flicker:
9297         ToggleButtons, and the dropdown arrow case when the user mouse
9298         ups.
9299
9300 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
9301
9302         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
9303           for german keyboards. Numlock state shouldn't affect the behaviour
9304           of the Del key. Fixes bug #78291.
9305
9306 2006-08-10  Chris Toshok  <toshok@ximian.com>
9307
9308         * ListControl.cs: remove the items.Clear line from BindDataItems,
9309         as this is the first thing done by both subclasses in their
9310         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
9311         passed -1, refresh the list.  This gets databinding working when
9312         the datasource is set on the list before the datasource is
9313         populated (as in wf-apps/ReportBuilder.)
9314
9315         * ComboBox.cs: remove the argument to BindDataItems.  This call
9316         should really go away, and be initiated by the ListControl code.
9317
9318         * ListBox.cs: same.
9319
9320 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9321
9322         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
9323           if no data is in the document when the control is displayed
9324
9325 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
9326
9327         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
9328           yes (fixes #78806)
9329         * TextControl.cs: 
9330           - PositionCaret: Allow positioning of caret but don't call methods 
9331             requiring a handle if the window isn't created yet
9332           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
9333           - owner_HandleCreated: Don't position the caret, just update it's 
9334             location. User might have already set a different position
9335
9336 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9337
9338         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
9339           windows. Screws up the returned coordinates for child windows. 
9340           Fixes #78825. I'm hoping this doesn't break something, since the
9341           code was explicitly put in 8 months ago, but no bug was attached.
9342           Menus still seem to work properly.
9343
9344 2006-08-08  Chris Toshok  <toshok@ximian.com>
9345
9346         * DataGrid.cs: make BeginInit/EndInit actually do what they're
9347         supposed to do - delay data binding until the EndInit call.  Also,
9348         make the table style collection's CollectionChangeAction.Refresh
9349         work properly.
9350
9351         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
9352         (with action = Refresh) when a consituent table's MappingName is
9353         changed.
9354
9355 2006-08-08  Chris Toshok  <toshok@ximian.com>
9356
9357         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
9358         Invalidate, since changing the text can change the size of the all
9359         toolbar buttons.
9360
9361 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9362
9363         * Form.cs (AddOwnedForm): Still need to add the form to our listif
9364           we don't have it yet
9365
9366 2006-08-08  Chris Toshok  <toshok@ximian.com>
9367
9368         * PrintControllerWithStatusDialog.cs: don't .Close() the status
9369         dialog, as this causes X errors later on, since we actually
9370         destroy the window.  Instead, .Hide() it.
9371
9372 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9373
9374         * ComboBox.cs: Added focus reflection for popup window
9375         * XplatUIX11.cs: 
9376           - Removed transient setting for non-app windows for now, not sure it
9377             was needed
9378           - Fixed logic checking if we have captions when deciding 
9379             override_redirect, WS_CAPTION is two bits and a 0 check was not
9380             sufficient
9381           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
9382             complicated
9383         * Form.cs: 
9384           - AddOwnedForm: Don't just add the form to the list, call the property
9385             to ensure the driver is informed about the ownership as well
9386           - CreateHandle: Set the TopMost status in the driver if we have an owner
9387         * XplatUI.cs: Fixed debug statement
9388
9389 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
9390         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9391           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
9392           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
9393           TrackBarRenderer.cs: Make constructor private.
9394         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
9395         * ProfessionalColorTable.cs: Make properties virtual.
9396
9397 2006-08-06  Duncan Mak  <duncan@novell.com>
9398
9399         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
9400         is not changing.
9401
9402 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9403         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9404           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
9405           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
9406           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
9407           Initial import of new 2.0 classes.
9408
9409 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9410         * Application.cs: Add 2.0 VisualStyles properties.
9411
9412 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9413         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9414           XplatUIX11.cs: Create property to allow access to existing private
9415           variable "themes_enabled"
9416
9417 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9418
9419         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
9420         file size, as otherwise our class libraries fail using windows. Fixes
9421         bug #78759.
9422
9423 2006-08-04  Jackson Harper  <jackson@ximian.com>
9424
9425         * Form.cs:
9426         * XplatUIX11.cs: Move the toolwindow window manager creation into
9427         the X11 driver, this way on win32 we can let windows create/handle
9428         the toolwindows.
9429
9430 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9431
9432         * PrintDialog.cs: Remove some redundant checks, add some others,
9433         clean some code, and move the focus to the text boxes when the
9434         values are incorrect.
9435
9436 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
9437
9438         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
9439
9440 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9441
9442         * NumericUpDown.cs: Setting the Minimum and Maximum is now
9443           handled correctly. Fixes bug #79001.
9444
9445 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9446
9447         * PrintDialog.cs: The "Copies" numeric up down must have
9448         set the Minimum property to 1; only if the value is bigger
9449         than 1, activate "Collate" check box. This is the behaviour of .Net.
9450         Also modify the Document elements only if it is not null.
9451
9452 2006-08-03  Jackson Harper  <jackson@ximian.com>
9453
9454         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
9455         length. (We have a larger array then actual node count).
9456                 
9457 2006-08-03  Jackson Harper  <jackson@ximian.com>
9458
9459         * ComboBox.cs: Don't show selection by default.
9460         - The SelectAll isn't needed here, since the focus code should do
9461         that
9462         - DDL style lists to manual selection drawing, so when they
9463         get/lose focus they have to invalidate.
9464
9465 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
9466
9467         * TextBoxBase.cs: Don't always show all selections by default.
9468
9469 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
9470         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
9471           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
9472           Fixed various typos.
9473
9474 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9475
9476         * Control.cs: Removing the controls in a ControlCollection with
9477           Clear now hides the controls as expected. Fixes bug #78804. 
9478
9479 2006-08-03  Jackson Harper  <jackson@ximian.com>
9480
9481         * Control.cs: Revert previous focus patch, it breaks reflector.
9482
9483 2006-08-03  Jackson Harper  <jackson@ximian.com>
9484
9485         * ComboBox.cs: Cleanup selection and focus with the combobox.
9486         This also eliminates some duplicated keyboard code, since now
9487         everything is handled by the main class.
9488         - Make list selection work on mouse up instead of down, to match
9489         MS.
9490
9491 2006-08-02  Jackson Harper  <jackson@ximian.com>
9492
9493         * Control.cs: Setting focus needs to go through the whole
9494         selection mechanism.
9495
9496 2006-08-02  Chris Toshok  <toshok@ximian.com>
9497
9498         * PrintPreviewDialog.cs: change MinimumSize to use
9499         base.MinimumSize so it works.
9500
9501 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
9502
9503         * TextControl.cs:
9504           - UpdateCaret: Added sanity check in case caret isn't defined yet
9505           - Line.Delete: Now updating selection and caret markers if we're
9506             transfering a node (Properly fixes #78323)
9507           - SetSelectionEnd: Added sanity check
9508         * TextBoxBase.cs: Removed broken attempt to fix #78323
9509
9510 2006-08-01  Chris Toshok  <toshok@ximian.com>
9511
9512         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
9513         Close() call is handled in Form, not here.
9514
9515 2006-08-01  Chris Toshok  <toshok@ximian.com>
9516
9517         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
9518         layout/rendering.
9519
9520         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
9521         for sizes < 100% zoom.  The code now aggressively attempts to keep
9522         from calling document.Print (), and tries not to use the scaling
9523         g.DrawImage whenever possible (it still does if you scale to >
9524         100%, since usually that involves huge images).
9525
9526         * PrintPreviewControl.cs: hook up the close button.
9527
9528 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
9529         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
9530           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
9531           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
9532           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
9533           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
9534           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
9535           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
9536           Removed [Serializable] for 2.0 Event Handlers.
9537
9538 2006-07-31  Jackson Harper  <jackson@ximian.com>
9539
9540         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
9541         * TextControl.cs: Uncomment out the body of this method.
9542
9543 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
9544
9545         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
9546           standard cursors.
9547
9548 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9549
9550         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
9551           that embed TextBox and need selections visible even if textbox is not
9552           focused to enforce that behaviour.
9553         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
9554           selection drawing
9555
9556 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9557
9558         * TextControl.cs:
9559           - Added new SetSelectionStart/SetSelectionEnd overloads
9560           - Fixed viewport width assignment to be accurate
9561           - Adjusted alignment line shift calculations to allow cursor on right
9562             aligned lines to be always visible at the right border (like MS)
9563         * TextBoxBase.cs:
9564           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
9565           - TextBoxBase_SizeChanged: recalculating canvas on size changes
9566           - CalculateScrollBars: Use ViewPort size instead of window size, to
9567             properly consider space occupied by the border and scrollbars 
9568             (Fixes #78661)
9569           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
9570             calculations; no longer leaves artifacts
9571           - CaretMoved: Adjusted window scrolling to match MS and fixed several
9572             calculation bugs (Still missing right/center align calculations)
9573
9574 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
9575
9576         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
9577           use of both scroll rect and clip rect, as they do the same.
9578
9579 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9580
9581         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
9582           in the event handler (fixes #78912)
9583
9584 2006-07-31  Chris Toshok  <toshok@ximian.com>
9585
9586         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
9587         grid.ListManager.Count, since grid.ListManager might be null.
9588         This of course begs the question "why are we drawing rows for a
9589         grid with no list manager (and therefor no rows)?"  Fixes the
9590         crash in bug #78929.
9591
9592 2006-07-31  Chris Toshok  <toshok@ximian.com>
9593
9594         * RelatedPropertyManager.cs: Don't always chain up to the parent
9595         ctor.  instead, call SetDataSource if the parent's position is !=
9596         -1.  Fixes the crash in #78822.
9597
9598 2006-07-31  Chris Toshok  <toshok@ximian.com>
9599
9600         * DataGrid.cs (get_ListManager): use field instead of property
9601         accessors for datasource and datamember.
9602         (RowsCount): make internal again.
9603         (OnMouseDown): end edits before resizing columns/rows.
9604         (OnMouseUp): restart edits after resizing columns/rows.
9605
9606 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
9607
9608         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
9609           This fixes the situation where the last set cursor is displayed
9610           whenever the mouse is over scrollbars.
9611
9612 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9613
9614         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
9615         Document properties, as well as initial values.
9616
9617 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
9618
9619         * XplatUIWin32.cs (SetBorderStyle): Setting both border
9620           and ClientEdge results in a 3-pixel border, which is
9621           wrong.
9622
9623 2006-07-28  Jackson Harper  <jackson@ximian.com>
9624
9625         * TreeNodeCollection.cs: Fix the clear method.
9626         - Fix the Shrink also
9627
9628 2006-07-27  Jackson Harper  <jackson@ximian.com>
9629
9630         * TreeView.cs: Make sure the visible order is computed when we
9631         attempt to size the scrollbars (for trees that mess with the
9632         scrolling when they shouldn't.
9633         - Make sure to give the scrollbars valid values.
9634
9635 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
9636
9637         * XplatUIX11.cs: Move motion compression code to where it
9638           has less performance impact
9639
9640 2006-07-26  Jackson Harper  <jackson@ximian.com>
9641
9642         * UpDownBase.cs: When the control is selected make the child
9643         controls non selectable, so that a click on them won't do a
9644         focus/unfocus cycle.
9645         - Don't give focus to the text box when the spinner is selected.
9646         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
9647
9648 2006-07-26  Chris Toshok  <toshok@ximian.com>
9649
9650         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
9651         satisfied with this solution.  If the bitmaps are small, we should
9652         just cache them in the PrintPreviewDialog and draw them here.
9653         Also, the layout is broken for the 2-up and 3-up cases.
9654
9655         * Theme.cs: add PrintPReviewControlPaint.
9656
9657         * PrintPreviewDialog.cs: first pass implementation.
9658
9659         * PrintPreviewControl.cs: first pass implementation.  No
9660         scrollbars yet.
9661
9662         * PrintDialog.cs: only validate fields if that particular portion
9663         of the UI is enabled.  Also, set the document's controller to a
9664         PrintControllerWithStatusDialog wrapping the document's print
9665         controller.
9666
9667         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
9668         bring up a SaveFileDialog (i hope we don't want to match the
9669         behavior of the crappy windows file entry) and set the
9670         PrinterSettings.PrintFileName accordingly.
9671
9672 2006-07-26  Jackson Harper  <jackson@ximian.com>
9673
9674         * ContainerControl.cs: Add a field that disables auto selecting
9675         the next control in a container when the container is activated.
9676         * UpDownBase.cs: Don't select the text box when the up down is
9677         selected.
9678
9679 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
9680
9681         * XEventQueue.cs: Added methods for peeking (used for compression
9682           of successive events)
9683         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
9684           mouse move events (fixes #78732)
9685
9686 2006-07-25  Jackson Harper  <jackson@ximian.com>
9687
9688         * UpDownBase.cs: Use an internal class for the textbox so that we
9689         can control focus.  the updown control should always have focus,
9690         if either the text area or the buttons are clicked.
9691         - Send the key messages to the textbox, since it never actually
9692         has focus
9693         - Activate and decativate the textbox caret.
9694
9695 2006-07-24  Jackson Harper  <jackson@ximian.com>
9696
9697         * Control.cs: Use the directed select when selecting a control,
9698         this way the container controls override will get called and the
9699         whole ActiveControl chain will get triggered.  TODO: probably need
9700         to make sure this gets done everywhere instead of the old
9701         Select(Control).
9702         * ContainerControl.cs: Implement the directed Select method to
9703         find and activate the correct child control.    
9704         
9705 2006-07-22  Mike Kestner  <mkestner@novell.com>
9706
9707         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
9708         menu handling code so that clicks without a grab work too.
9709         [Fixes #78914]
9710
9711 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
9712
9713         * FileDialog.cs: Enable the BackButton when dirstack has one element.
9714           Added some small optimizations.
9715
9716 2006-07-21  Matt Hargett  <matt@use.net>
9717
9718         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
9719
9720 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
9721
9722         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
9723           tests pass and match MS in some strange border cases.
9724
9725 2006-07-21  Chris Toshok  <toshok@ximian.com>
9726
9727         * ThemeWin32Classic.cs: handle drawing of the relation links and
9728         parent row buttons.
9729
9730         * Theme.cs: change args to DataGridPaintParentRow.
9731
9732         * DataGrid.cs: Don't use controls for the relation links and
9733         parent buttons, so we have to handle all their interactions in
9734         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
9735         when we're navigating through child tables, so we can reinstate
9736         selection, expanded state, current cell, etc.
9737
9738 2006-07-20  Chris Toshok  <toshok@ximian.com>
9739
9740         * ToolBar.cs: When we redraw a button, for whatever reason,
9741         there's no reason to redraw the entire toolbar.  Also, don't call
9742         Control.Refresh from within Redraw, as it's much heavier than
9743         Invalidate (which is really what we want).
9744
9745 2006-07-20  Chris Toshok  <toshok@ximian.com>
9746
9747         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
9748         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
9749         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
9750         traces from within a debug IBindingList datasource
9751         (in mono/winforms/datagrid) for *days*, I've finally gotten things
9752         to work in a similar fashion.
9753
9754 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9755
9756         * ListBox.cs: Don't call Sort () when setting 
9757         the Sorted property to false (avoid an unnecessary sort).
9758
9759 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9760
9761         * ListControl.cs: DataSource should throw an ArgumentException
9762         instead of a normal exception when the argument is not of the 
9763         correct type.
9764
9765 2006-07-20  Mike Kestner  <mkestner@novell.com>
9766
9767         * Control.cs: add InternalPreProcessMessage to allow us to steal
9768         key events before MWF gets its paws on them.  Adapted from a
9769         suggestion by eno.
9770         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
9771         up/down/left/right navigation. Override the new internal control
9772         method to steal the events since they never make it to WndProc.
9773         * ToolBarButton.cs: don't worry about pushed when setting hilight
9774         since the drawing code prefers pushed to hilight. Invalidate on 
9775         Hilight changes. Fixes #78547 and #78525.
9776
9777 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
9778
9779         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
9780           the canvas size. Fixes #78868
9781
9782 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
9783
9784         * Splitter.cs: Track requested split position until first layout
9785           is performed. Fixes #78871
9786
9787 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
9788
9789         * Application.cs: Removed code that forces 1.x for the version
9790           number if the version started with 0. Not sure why that code was
9791           there and I couldn't find any bugs that indicated we needed it.
9792           Fixes #78869
9793
9794 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
9795
9796         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
9797           ResetDefaults(), just write some output to the console until it's
9798           implemented. Fixes bug #78907 for now. Eliminated two warnings.
9799
9800 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
9801
9802         * PropertyGridView.cs: set StartPosition of drop down forms
9803         so they appear in correct initial spot.  Fixes #78190.
9804
9805 2006-07-19  Mike Kestner  <mkestner@novell.com>
9806
9807         * ThemeWin32Classic.cs: use parent background color when drawing
9808         flat toolbars.  Restructure the conditionals to make sure non-flat
9809         non-Divider toolbars are filled too.  Fixes #78837.
9810
9811 2006-07-19  Mike Kestner  <mkestner@novell.com>
9812
9813         * ListBox.cs: Sort on collection changes even if the handle
9814         isn't created yet.  Fixes #78813.
9815
9816 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9817
9818         * ListControl.cs: DisplayMember should never be null,
9819         and now we assign String.Empty when null is passed to it (this
9820         is the .Net way).
9821
9822 2006-07-17  Mike Kestner  <mkestner@novell.com>
9823
9824         * ListViewItem.cs: restructure Font and subitem Font handling 
9825         to hold a specific font and refer back to owner on null.
9826         Fixes #78761.
9827
9828 2006-07-17  Mike Kestner  <mkestner@novell.com>
9829
9830         * ToolBar.cs: bandaid for side-effect of previous patch which was
9831         discarding explicit heights for non-AutoSize toolbars.  Need to
9832         extend my format tester to deal with AutoSize=false. Fixes #78864.
9833
9834 2006-07-15  Jackson Harper  <jackson@ximian.com>
9835
9836         * LabelEditTextBox.cs:
9837         * TreeView.cs: Use a new LabelEdit class for node editing, this
9838         class automatically 'closes' itself when it gets the enter key or
9839         loses focus.
9840         - Use the client rectangle when setting the trees scrollbars, so
9841         border style is taken into account.
9842         
9843 2006-07-14  Jackson Harper  <jackson@ximian.com>
9844
9845         * TreeNode.cs:
9846         * TreeView.cs: Make the editing work similar to MSs, firing the
9847         events correctly and ending edits correctly.
9848
9849 2006-07-14  Mike Kestner  <mkestner@novell.com>
9850
9851         * ToolBarButton.cs:
9852         * ToolBar.cs: layout restructuring and redraw enhancements to support
9853         formatting changes gracefully, like setting TextAlign, ImageList, 
9854         ButtonSize, and Appearance.  Handles explicit button sizing quirks
9855         of the MS controls.  Things like flat toolbars ignoring button size
9856         but becoming constant sized at the largest button's size.  Normal
9857         toolbars with an image set cannot be shrunk smaller than the image,
9858         but text can be clipped/ignored.
9859         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
9860         is zero.  Seems like DrawString should be smart enough to not put
9861         anything on screen though. Also trim labels and ellipsize at the char
9862         boundary, not word.
9863         Fixes #78711 and #78483.
9864
9865 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9866
9867         * FolderBrowserDialog.cs: Disable "New Folder" button and
9868           "New Folder" contextmenu menuitem if a folder like "My Computer"
9869           is selected.
9870
9871 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9872
9873         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
9874         * FolderBrowserDialog.cs:
9875           - Use MWFConfig to store and read size and position settings
9876           - Added code to create a new folder (button or context menu).
9877             Use TreeView labeledit to change the name of the new folder.
9878
9879 2006-07-14  Jackson Harper  <jackson@ximian.com>
9880
9881         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
9882         when the tree is scrolled we end editing.
9883
9884 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9885
9886         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
9887           Down arrows
9888
9889 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
9890
9891         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
9892         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
9893         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
9894         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
9895         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
9896         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
9897         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
9898         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
9899         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
9900         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
9901         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
9902         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
9903         ListViewItemSelectionChangedEventHandler.cs,
9904         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
9905         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
9906         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
9907         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
9908         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
9909         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
9910         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
9911         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
9912         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
9913         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
9914         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
9915         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
9916         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
9917         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
9918         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
9919         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
9920         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
9921         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
9922         WebBrowserNavigatingEventHandler.cs, 
9923         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
9924
9925 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
9926
9927         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
9928         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
9929         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
9930         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
9931         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
9932         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
9933         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
9934         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
9935         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
9936         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
9937         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
9938         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
9939         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
9940         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
9941         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
9942         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
9943         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
9944         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
9945         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
9946         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
9947         ListViewItemStates.cs, MaskFormat.cs: Added
9948
9949 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
9950
9951         * PropertyGridView.cs: Fix keyboard navigation of drop down.
9952         Patch from eno for bug 78558.
9953         
9954 2006-07-13  Jackson Harper  <jackson@ximian.com>
9955
9956         * TreeView.cs: When an edit is finished make sure that the
9957         selected node is visible.
9958         - When setting the top/bottom use the scrollbars is_visible, so
9959         everything will be set correctly even if the tree isn't visible
9960         yet.
9961
9962 2006-07-13  Jackson Harper  <jackson@ximian.com>
9963
9964         * ComboBox.cs: Revert the item->index part of my previous patch.
9965         * TreeView.cs: Use LostFocus instead of Leave for detecting when
9966         the edit box has lost focus (duh).
9967         - Just make the edit box not visible when we get return, that will
9968         take the focus, which will call EndEdit
9969         * TreeNode.cs When we start editing, notify the treeview.
9970
9971 2006-07-12  Jackson Harper  <jackson@ximian.com>
9972
9973         * ComboBox.cs: Clear out old items before setting the item list.
9974         This prevents databound controls from having their items added
9975         twice.
9976         - Switch the combobox to use indices whereever possible instead of
9977         using Item's.  This allows usto navigate through lists that have
9978         more then one item with the same string value (ie a, b, b, a).
9979         - Scroll the listboxes scrollbar when a non visible item is
9980         highlighted
9981         - Allow keypress to cycle through all the possible values. For
9982         example if you have b1, b2, b3 and hold down the B key all the
9983         values will be cycled through.
9984         
9985 2006-07-12  Jackson Harper  <jackson@ximian.com>
9986
9987         * TextBoxBase.cs:
9988         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
9989         this using the internal methods.
9990         * Control.cs: Add OnGotFocusInternal.  A new method that allows
9991         controls to "override" OnGotFocus and change focus behavior if
9992         needed.
9993         - Same thing for LostFocus
9994         * ComboBox.cs: Pass off focus to the text control properly.
9995
9996 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
9997
9998         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
9999         * FolderBrowserDialog.cs: Almost a complete rewrite.
10000           - Better support for Environment.Specialfolders
10001           - Added support for MWFVFS
10002           - Made setting SelectedPath work
10003
10004 2006-07-12  Jackson Harper  <jackson@ximian.com>
10005
10006         * Control.cs: Optimze getting all the controls.
10007
10008 2006-07-11  Jackson Harper  <jackson@ximian.com>
10009
10010         * ContainerControl.cs: Override SETFOCUS in the container control,
10011         so that it is not selected on mouse click.
10012
10013 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
10014
10015         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
10016           Hopefully we will have a better way once all of focus is complete.
10017
10018 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
10019
10020         * ThemeWin32Classic.cs: Commented out some debug code and fixed
10021           a compile error with csc.
10022
10023 2006-07-11  Jackson Harper  <jackson@ximian.com>
10024
10025         * Control.cs: When hiding a control only select the next control
10026         if the current control was focused.
10027         - Don't handle enter/leave when setting/killing focus, this is
10028         done by the container control.
10029         - Remove is_selected, it's not needed anymore.
10030         - Add utility methods for selecting a child control, and for
10031         firing the Enter/Leave events.
10032         * ContainerControl.cs: When a control is activated fire the
10033         enter/leave events.
10034         - Don't wrap when processing the tab key, so that focus can be
10035         moved outside of the container.
10036         - Use the correct active control
10037
10038 2006-07-11  Jackson Harper  <jackson@ximian.com>
10039
10040         * ComboBox.cs: Remove some debug code that was blinding me.
10041         * UpDownBase.cs: These controls actually aren't implicit, they are
10042         visible to the user.
10043
10044 2006-07-10  Chris Toshok  <toshok@ximian.com>
10045
10046         * DataGrid.cs: move back to the is_adding boolean field.  god i
10047         hate this is_editing/is_adding/is_changing stuff.
10048
10049 2006-07-10  Chris Toshok  <toshok@ximian.com>
10050
10051         * DataGridTableStyle.cs: just check if the property type is bool.
10052         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
10053         Don't use CanRenderType.
10054
10055         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
10056         if our text == NullText.  Remove CanRenderType.
10057
10058         * DataGridBoolColumn.cs: nuke CanRenderType.
10059
10060         * DataGrid.cs: reenable some code to end the current edit inside
10061         of set_CurrentCell.  This fixes the other 1.1.16 regression.
10062         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
10063         Also, remove the visible_row_count arg from CalcRowHeaders, since
10064         we don't need to worry about the actual height of the area.
10065
10066 2006-07-10  Chris Toshok  <toshok@ximian.com>
10067
10068         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
10069         mode, just return.
10070
10071         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
10072         the real sense of the IsInEditOrNavigateMode property (true =
10073         navigate, false = edit).  Also, update OnKeyPress to reflect this.
10074
10075         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
10076         column style exists, we still need to set its property descriptor
10077         to match up with our list manager.
10078
10079 2006-07-10  Chris Toshok  <toshok@ximian.com>
10080
10081         * ThemeWin32Classic.cs: implement the new row/header painting
10082         approach.  The parent row painting will likely go away and
10083         replaced with label controls, but the rest seems to work ok (and
10084         efficiently).
10085
10086         * Theme.cs: change the way we draw datagrid rows.  we don't draw
10087         the row headers as a block now.  Instead we draw them in the
10088         normal draw-row loop.  Add some calls for drawing parent rows and
10089         relation rows.
10090
10091         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
10092         a default table style.  Set the defaults from ThemeEngine.Current,
10093         not SystemColors.  Fix lots of misc issues with property setters.
10094
10095         * DataGrid.cs: move loads of style information out of this class
10096         as it's being duplicated with DataGridTableStyle.  keep track of a
10097         special DataGridTableStyle for the properties we used to mirror
10098         here.  Switch all the style properties to access this table style
10099         instead of instance fields of this class.  Also add a internal
10100         class to represent parent rows (more needs to be stored here, like
10101         the selection state from the parent table, as well as the
10102         expansion state.)  Also, for datasources with relations, do the
10103         right thing for collapse/expand, and add support for the
10104         navigation/parent row buttons.
10105
10106         Lastly, fix the crash in the 1.1.16 build.
10107
10108         * GridTableStylesCollection.cs: make the explicit interface
10109         implementations call the class's methods as opposed to duplicating
10110         them.
10111
10112         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
10113         0 so the text doesn't jump around when we move the cursor.
10114
10115 2006-07-10  Jackson Harper  <jackson@ximian.com>
10116
10117         * TextBoxBase.cs:
10118         * ListBox.cs: Match MS's ToString (this makes debugging focus
10119         stuff infinitely easier).
10120
10121 2006-07-10  Jackson Harper  <jackson@ximian.com>
10122
10123         * Control.cs (SelectNextControl): When checking the control's
10124         parent use this instead of ctrl.parent so that null can be passed
10125         to SelectNextControl. (I have unit tests for this).
10126         - Remove unused var.
10127
10128 2006-07-10  Chris Toshok  <toshok@ximian.com>
10129
10130         * CurrencyManager.cs: correct one regression, the removal of the
10131         finalType field.  Also, add a MonoTODO on CanAddRows, implement
10132         Refresh() correctly, and fix some event emission in
10133         ListChangedHandler.
10134
10135 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
10136
10137         * FileDialog.cs: Don't use brackets for new folders if they exist
10138           under *nix. Instead use -(number of existing folders +1).
10139
10140 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
10141
10142         * FileDialog.cs:
10143           - Fixed really nasty bug #78771
10144           - Don't block the whole GUI when reading directories with a lot of
10145             entries. Use an other thread instead and call BeginInvoke to
10146             update the ListView in MWFFileView
10147
10148 2006-07-07  Chris Toshok  <toshok@ximian.com>
10149
10150         * Control.cs (Dispose): release any Capture when disposing.
10151
10152 2006-07-07  Chris Toshok  <toshok@ximian.com>
10153
10154         * LinkLabel.cs (Select): if we chain up to the parent, set
10155         focused_index to -1 so we'll search for the first available link
10156         the next time the user tabs into us.  Also, if the direction is
10157         backward and focused_index == -1, start the search from the last
10158         element.
10159
10160 2006-07-07  Chris Toshok  <toshok@ximian.com>
10161
10162         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
10163         is beyond the end of the text, don't do anything.
10164         (CreateLinkPieces): set our ControlStyles.Selectable based on
10165         whether or not we have any links.
10166         (Link.Invalidate): use a loop instead of foreach.
10167         (Link.set_Start): null out owner.sorted_links so it'll be
10168         recreated by CreateLinkPieces.
10169
10170 2006-07-06  Chris Toshok  <toshok@ximian.com>
10171
10172         * LinkLabel.cs: revert the SetStyle change.
10173
10174 2006-07-06  Chris Toshok  <toshok@ximian.com>
10175
10176         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
10177         (OnEnableChanged): s/Refresh/Invalidate
10178         (OnGotFocus): if we have a focused index already, refocus it (so
10179         if we mouse out/in to the window it'll focus the right link).
10180         (OnKeyDown): move the tab handling out of here.
10181         (OnLostFocus): don't set focused_index to -1, so we can refocus it
10182         when we lose focus.
10183         (OnMouseDown): don't Capture here - Control handles it.  Also,
10184         focus the active link.
10185         (OnMouseUp): don't deal with Capture.
10186         (OnPaintBackgroundInternal): remove.
10187         (OnTextAlignChanged): CreateLinkPieces before calling the
10188         superclass's method.
10189         (OnTextChanged): call CreateLinkPieces before calling superclass's
10190         method.
10191         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
10192         move around.
10193         (Select): implement this, moving the selection between different
10194         links, and call parent.SelectNextControl if we don't have another
10195         link to focus in the given direction.
10196         (CreateLinkPieces): call Invalidate instead of Refresh.
10197         
10198 2006-07-06  Chris Toshok  <toshok@ximian.com>
10199
10200         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
10201         new LinkLabel internals.
10202
10203         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
10204         over pieces looking for active/focused/etc links.  also, deal with
10205         runs of text (and links) with embedded \n's in them, and use
10206         MeasureCharacterRanges instead of MeasureString to figure out the
10207         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
10208         two-step.
10209
10210 2006-07-04  Jackson Harper  <jackson@ximian.com>
10211
10212         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
10213         XKB or key auto repeat, do it manually.  Without key auto repeat,
10214         when a key is held down we get key press, key release, key press,
10215         key release, ... with auto repeat we get key press, key press, key
10216         press ..., and then a release when the key is actually released.
10217
10218 2006-07-03  Jackson Harper  <jackson@ximian.com>
10219
10220         * TabControl.cs:
10221         * ThemeWin32Classic.cs: Tabs do not obey normal background color
10222         rules, they are always control color regardless of the background
10223         color.
10224
10225 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
10226
10227         * FileDialog.cs: Added internal class MWFConfig.
10228           Removed Registry support and replaced it with support for the new
10229           MWFConfig class. See MWFConfig comments for more information.
10230
10231 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
10232
10233         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
10234           rectangle. Added some patches from eno from bug #78490 and fixed
10235           the arrow position for small up and down CPDrawScrollButtons.
10236
10237 2006-06-30  Jackson Harper  <jackson@ximian.com>
10238
10239         * InternalWindowManager.cs: Remove some debug code.
10240         * Form.cs: When an MdiParent is set to null, the window is
10241         "detatched" and becomes a normal window.
10242         * MdiClient.cs: Don't bring the new child form to the front until
10243         it is activated (setting it as active does this), this makes the
10244         previously active forms titlebar get redrawn as inactive.
10245
10246 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
10247
10248         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
10249           with later controls
10250
10251 2006-06-29  Mike Kestner  <mkestner@novell.com>
10252
10253         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
10254         arrow in keynav state.  Fixes #78682.
10255
10256 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10257
10258         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
10259           order (fixes #78393)
10260
10261 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
10262
10263         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
10264           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
10265           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
10266           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
10267           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
10268           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
10269           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
10270           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
10271           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
10272           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
10273           enumerations (FlagsAttribute, SerializableAttribute, added/removed
10274           values)
10275
10276 2006-06-28  Mike Kestner  <mkestner@novell.com>
10277
10278         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
10279
10280 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10281
10282         * PropertyGrid.cs,
10283           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
10284           item lines from other area (It also makes BackColor consistent and
10285           compatible with .NET). Fixed bug #78564.
10286
10287 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
10288
10289         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
10290         Patch from Eno for #78555.
10291
10292 2006-06-27  Chris Toshok  <toshok@ximian.com>
10293
10294         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
10295
10296         * DataGridColumnStyle.cs: same.
10297
10298         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
10299         
10300         * DataGridDrawingLogic.cs: nuke.
10301
10302 2006-06-27  Chris Toshok  <toshok@ximian.com>
10303
10304         * DataGridTableStyle.cs: clean up the constructors, and build the
10305         list of child relations for this table.  I have no idea if this is
10306         where we should be doing it (it probably isn't), but since we're
10307         already iterating over the properties..
10308
10309         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
10310         struct and array for keeping track of row information, similar to
10311         what's shown in a hack on
10312         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
10313
10314         * Theme.cs: be consistent about the naming of DataGrid methods,
10315         prefering ColumnWidths and RowHeights over columnsWidths and
10316         RowsHeights.
10317
10318         * ThemeWin32Classic.cs: same, and also add support for variable
10319         sized rows (and the +/- expansion icons for related rows).
10320
10321 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10322
10323         * TextBoxBase.cs: Applied Eno's patch from #78660
10324
10325 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10326
10327         * Form.cs (ScaleCore): We don't want to scale our form if it's
10328           state is minimized or maximized, but we still need to scale our
10329           child windows. Also, added try/finally block to ensure layout
10330           gets reset (Fixes #78697)
10331
10332 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10333
10334         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
10335
10336 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10337
10338         * Form.cs: Fixed c+p error and added check to resize form if minimum
10339           size is bigger than current size (Fixes #78709)
10340
10341 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
10342
10343         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
10344
10345 2006-06-26  Mike Kestner  <mkestner@novell.com>
10346
10347         * ComboBox.cs: only do Keypress handling in the combo when there  
10348         are items in the collection. Fixes #78710.
10349
10350 2006-06-26  Chris Toshok  <toshok@ximian.com>
10351
10352         * Binding.cs: make this work bi-directionally.  also, clear up
10353         other mixups between Push/Pull Data (e.g. we're supposed to pull
10354         data when validating).
10355
10356         * BindingManagerBase.cs: trim some fully qualified collection
10357         types.
10358
10359         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
10360
10361 2006-06-23  Chris Toshok  <toshok@ximian.com>
10362
10363         * PropertyManager.cs: It appears (according to the unit tests)
10364         that PropertyManager doesn't use
10365         PropertyDescriptor.AddValueChanged to track propery value changes
10366         in its datasource, but uses the same scheme as Binding, where it
10367         looks for a <Property>Changed event and binds to it.
10368
10369         Also, according to the docs, IsSuspended always returns false for
10370         a property manager with a non-null datasource.
10371
10372 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
10373
10374         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
10375           need to update the actual DialogResult. (Fixes #78613)
10376
10377 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
10378
10379         * Form.cs (ShowDialog): Release any captures before running the
10380           new message pump (fixes #78680)
10381
10382 2006-06-22  Mike Kestner  <mkestner@novell.com>
10383
10384         * ListView.cs: Layout column widths properly in details mode even 
10385         if HeaderStyle.None is set.  Fixes #78691.
10386
10387 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
10388
10389         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
10390
10391 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
10392
10393         * Control.cs (ContainsFocus): Using new driver method to get focused
10394           window, instead of trying to use internal tracking var, which can
10395           recursion issues (Fixes #78685)
10396         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10397           XplatUIWin32.cs: Added GetFocus method to return focused window
10398
10399 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10400
10401         * ColorDialog.cs: when the mouse button is pressed inside the color
10402         matrix, don't let the cursor move out of it until the button is
10403         released, which is the behavior on windows. Changed 'colours' by
10404         'colors' to use the same word consistently.
10405
10406 2006-06-21  Chris Toshok  <toshok@ximian.com>
10407
10408         * DataGrid.cs: add in some basic navigation stuff (navigating to a
10409         child relation and back, using a stack).  Also, remove
10410         GetDataSource and the code that calls it - it's not needed.  Also,
10411         track CurrencyManager.ListName's removal.
10412
10413 2006-06-21  Chris Toshok  <toshok@ximian.com>
10414
10415         * CurrencyManager.cs: push some of the original type checking from
10416         BindingContext.CreateBindingManager to here, and remove some of
10417         the finalType stuff.  Need more tests to make sure I've got the
10418         ListName part right, and we might need more in SetDataSource.
10419
10420         * PropertyManager.cs: add a ctor that takes just the datasource,
10421         and no property name.  Make SetDataSource work with a null
10422         property_name, and make Current return the data_source if the
10423         property descriptor is null.  this makes 'string foo = "hi";
10424         BindingContext[foo].Current' return "hi" as it should.
10425
10426         * RelatedCurrencyManager.cs: make this code more generic - there's
10427         no reason the parent manager has to be CurrencyManager, and
10428         there's no reason to pass the DataRelation.  It suffices to use a
10429         BindingManagerBase and PropetyDescriptor.
10430
10431         * RelatedPropertyManager.cs: make a similar change here.
10432         
10433         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
10434         flower I knew it could be.
10435
10436 2006-06-20  Chris Toshok  <toshok@ximian.com>
10437
10438         * PropertyManager.cs: the PropertyChangedHandler is invoked when
10439         data in the source has changed and we need to update the control,
10440         so s/PullData/PushData.
10441
10442         * CurrencyManager.cs: Refresh is meant to update the control from
10443         data in the datasource.  So, s/PullData/PushData.
10444
10445         * BindingContext.cs: add more ugliness (we weren't handling the
10446         case where data_source = DataTable and data_member = column_name).
10447
10448         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
10449         from the perspective of the datasource.  PullData pulls from the
10450         control, PushData pushes to the control.
10451
10452 2006-06-20  Chris Toshok  <toshok@ximian.com>
10453
10454         * BindingContext.cs: rewrite the CreateBindingManager code to
10455         handle navigation paths more or less properly.  This could
10456         definitely stand some more work, in particular to push the
10457         recursion up to the toplevel.  But that relies on fixes in other
10458         places (System.Data comes to mind).
10459
10460         Also, move to a flat hashtable (and encode the twolevel nature of
10461         the dictionary into the hash key).  This lets us implement the
10462         IEnumerable.GetEnumerator method.
10463
10464         * RelatedCurrencyManager.cs: new class.  Update our view based on
10465         our relation and our parent CurrencyManager's position.
10466
10467         * CurrencyManager.cs: split out some logic from the ctor into
10468         SetView, so it can be called from the new RelatedCurrencyManager
10469         subclass.
10470
10471         * RelatedPropertyManager.cs: new class.  Update our datasource
10472         based on the position of our parent CurrencyManager.
10473
10474         * PropertyManager.cs: split out some logic from the ctor into
10475         SetDataSource, so it can be called from the new RelatedDataSource
10476         subclass.  Also, make the Current getter return the value
10477         of the PropertyDescriptor, not the data_source.
10478
10479         * Binding.cs: no need to duplicate the string splitting code here.
10480
10481 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10482
10483         * Control.cs:
10484           - set_Enabled: OnEnabledChanged is not called if the inherited state 
10485             of the control is not altered, even though  we might be changing the
10486             internal state of the control (#78458)
10487           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
10488             OnEnabledChanged, to allow easy altering of any child window state
10489           - OnEnabledChanged: Added code to enable/disable driver window state
10490           - OnParentEnabledChanged: Instead of firing the event, call 
10491             OnEnabledChanged, which will fire the event and also a) set driver
10492             window state and pass the enabled state to any grandchildren (#78458)
10493
10494 2006-06-19  Jackson Harper  <jackson@ximian.com>
10495
10496         * InternalWindowManager.cs: We don't set the cursor explicitly
10497         thats done via the response to NCHITTESTs.
10498         - Don't need to adjust for titlebar heights anymore, the
10499         coordinates are coming in the correct coordinates now (see peters
10500         last patch).
10501
10502
10503 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10504
10505         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
10506           being translated relative to whole window, instead of client window.
10507           That caused broken offsets on mouseclick (and caused gas for our
10508           InternalWindowManager)
10509
10510 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10511
10512         * TextControl.cs:
10513           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
10514           - Undo(): Added replay of cursor move on DeleteChars action; added
10515             calling Undo() again if a recorded cursor move is invalid (to
10516             ensure that some action is performed on Undo)
10517         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
10518
10519 2006-06-16  Jackson Harper  <jackson@ximian.com>
10520
10521         * MdiClient.cs: Instead of just sizing maximized windows when
10522         there is a resize we also have to adjust the Y of minimized
10523         windows, so they stay pinned to the bottom of the mdi container.
10524         - Eliminate separate tracking of the active control, we can just
10525         get this from the controls collection.
10526         - Paint the decorations for the newly activated titlebar so we get
10527         a pretty blue bar.
10528         * InternalWindowManager.cs:
10529         * ThemeWin32Classic.cs: Minimized windows get all three buttons
10530         even if they are a tool window.
10531         
10532 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10533
10534         * TextControl.cs (Undo): Handle non-existent cursor locations in the
10535           undo buffer, these can happen when text was deleted and the cursor
10536           was recorded first. Since we will also have a recorded cursor
10537           after the delete this is not an issue. (Fixes #78651)
10538
10539 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
10540
10541         * AccessibleObject.cs: Remove dependence on Control.is_selected;
10542           instead properly track control states internally (allows us to
10543           remove is_selected from Control)
10544
10545 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10546
10547         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
10548         whose width is not a multiple of 8.
10549
10550 2006-06-13  Jackson Harper  <jackson@ximian.com>
10551
10552         * MdiClient.cs:  Only maximize the next child if the current one
10553         is maximized.
10554
10555 2006-06-13  Chris Toshok  <toshok@ximian.com>
10556
10557         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
10558         modified.  Also, guard against grid or grid_drawing being null in
10559         Invalidate.
10560
10561         * DataGrid.cs: Reformat tons of getters/setters.  In the
10562         DataMember setter, just call SetNewDataSource instead of
10563         duplicating some of its functionality.  In SetNewDataSource, don't
10564         check ListManager for null, since the property getter creates the
10565         object if needed.
10566
10567         * DataGridTableStyle.cs: don't set TableStyle or call
10568         SetDataGridInternal on the column here, it's done in
10569         GridColumnStylesCollection.Add.
10570
10571         * GridColumnStylesCollection.cs: fix all the explicit interface
10572         implementations to just call our methods.  Nuke AddInternal() and
10573         move the body of it to Add().  Also, add a call to
10574         column.SetDataGridInternal to Add().
10575
10576         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
10577         base()+duplicate code.  Also, use the Format property instead of
10578         format to generate an Invalidate ala MS.  Lastly, create the
10579         textbox here, unconditionally.
10580         (set_Format): call Invalidate.
10581         (get_TextBox): no need to call EnsureTextBox.
10582         (Commit): remove the message box.
10583         (Edit) remove the call to EnsureTextBox.
10584         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
10585         (EnterNullValue): no need to check textbox for null.
10586         (HideEditBox): no need to check textbox for null.
10587         (SetDataGridInColumn): add the textbox to the grid's controls.
10588         (EnsureTextBox): nuke.
10589         
10590 2006-06-13  Jackson Harper  <jackson@ximian.com>
10591
10592         * MdiWindowManager.cs: Hook up to the maximized menus paint event
10593         and redraw the buttons when needed. Unhook when the window is
10594         unmaximized.
10595         * MainMenu.cs: Add an internal Paint event, the mdi window manager
10596         needs this so that it can redraw its buttons when the menu is
10597         repainted.
10598         * InternalWindowManager.cs:
10599         * Form.cs: The method order has changed for DrawMaximizedButtons,
10600         so that it can be a PaintEventHandler.
10601         
10602 2006-06-13  Jackson Harper  <jackson@ximian.com>
10603
10604         * MdiClient.cs: When we close a maximized mdi window, the next mdi
10605         window is activated and maximized, even if it wasn't before.
10606         - When  a new window is activated repaint the decorations of the
10607         old one, so that it no longer has the Active "look" (the blue
10608         titlebar).
10609         * InternalWindowManager.cs: Open up CreateButtons to base classes
10610         so they can recreate the buttons on state changes.
10611         - If a window is maximized give it all three buttons
10612         * MdiWindowManager.cs: Create the titlebar buttons when the state
10613         is changed, this is needed because a toolwindow will not have all
10614         three buttons until it is maximized.
10615
10616 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
10617
10618         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
10619           Fixed bug #78609.
10620
10621 2006-06-12  Jackson Harper  <jackson@ximian.com>
10622
10623         * KeysConverter.cs: Make sure we handle the Ctrl special case
10624         if its the only key.
10625         
10626 2006-06-12  Jackson Harper  <jackson@ximian.com>
10627
10628         * Theme.cs: Add a method to get the size of a managed window
10629         toolbar button.
10630         * InternalWindowManager.cs: Remove the ButtonSize property, this
10631         should be retrieved from the theme.
10632         * MdiWindowManager.cs: Get the button size from the theme
10633         * ThemeWin32Classic.cs: Make the method to get the managed window
10634         titlebar button size public.
10635         - Handle the different button sizes of maximized toolwindows
10636         (should match any maximized window).
10637         - Get the titlebar height from the theme, not the WM (which gets
10638         it from the theme).
10639
10640 2006-06-12  Jackson Harper  <jackson@ximian.com>
10641
10642         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
10643         event down to the mdi window manager.
10644         - Expose some extra stuff to base classes
10645         - Make sure to end the Capture on an NC Mouse up, so that we can
10646         get double clicks properly, and the sizing doens't stick.
10647         - When doing PointToClient contain it in the workable desktop
10648         area, this prevents windows from changing size when the cursor is
10649         pulled outside of the working area while sizing.
10650         * MdiWindowManager.cs: When we get a double click maximize the
10651         window.
10652         - Reset the cursor after handling mode changes.
10653
10654 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
10655
10656         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
10657           current desktop, instead of just assuming a 0, 0 origin. This
10658           is needed for our internal window manager, to know the top
10659           margin of the desktop
10660
10661 2006-06-12  Chris Toshok  <toshok@ximian.com>
10662
10663         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
10664         we need this to get rid of the selected background in the bool
10665         column.
10666         (CancelEditing): move the ConcedeFocus call to above the Abort
10667         call.  Also, set is_changing to false and invalidate the row
10668         header if we were changing before.
10669         (ProcessKeyPreviewInternal): remove, since noone outside this
10670         class calls it anymore.  Roll the code into ProcessKeyPreview.
10671         (EndEdit): remove the internal version.
10672         (InvalidateCurrentRowHeader): make private.
10673
10674         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
10675         Keys.Escape handling (and with it the last call to
10676         DataGrid.EndEdit from outside the class.)
10677
10678
10679 2006-06-12  Chris Toshok  <toshok@ximian.com>
10680
10681         * DataGridTextBox.cs (.ctor): isedit defaults to false.
10682         (OnKeyPress): set isedit to true.
10683         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
10684         already handled by the grid.
10685
10686         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
10687         right.  ugh.
10688         (set_DataSource): SetDataSource always returns true, so stop
10689         putting it in an if statement.
10690         (EndEdit): get rid of some {}'s
10691         (ProcessGridKey): return true in case Keys.Escape.
10692         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
10693         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
10694         PositionChanged, stopped connecting to CurrentChanged.
10695         (GetDataSource): simplify this a bunch.
10696         (SetDataSource): change return type from bool to void.
10697         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
10698         to this, and make sure we don't set ListManager.Position inside
10699         set_CurrentCell.
10700         (OnListManagerItemChanged): if we're passed an actual index,
10701         redraw that row.
10702
10703         * CurrencyManager.cs (set_Position): don't call PullData here.
10704
10705 2006-06-09  Jackson Harper  <jackson@ximian.com>
10706
10707         * TreeNode.cs:  Recalculate the visible order before doing the
10708         Expand/Collapse Below calls, because those calls generate an
10709         expose.
10710         - Reduce calls to the TreeView property, which is mildly expensive
10711         by using a local var.
10712         * Form.cs: Layout the MDI child windows when creating the parent
10713         form.
10714         - Don't use the internal constructor anymore
10715         * MdiClient.cs: use the parent form width/height (if available)
10716         when laying out the child windows, we do this because the
10717         mdiclient isn't docked yet when the initial layout is done.
10718         - Don't need an internal constructor anymore.
10719
10720 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10721
10722         * FileDialog.cs: handle access errors when trying to create a folder
10723         or changing to a directory. No need to initialize out parameters.
10724
10725 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10726
10727         * FileDialog.cs: Append a number when creating a new folder if the
10728           folder already exists (use parenthesis instead of square brackets)
10729
10730 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10731
10732         * FileDialog.cs:
10733           - Disabled registry support for windows and added better registry
10734             error checking for other systems (need to investigate why it
10735             works perfectly on my system)
10736           - If a folder already exist show an error MessageBox instead of
10737             trying to create an indexed name.
10738           - Fixed a non intentional typo.
10739
10740 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10741
10742         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
10743
10744 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10745
10746         * FileDialog.cs: When creating a new folder don't crash if the
10747           folder already exists.
10748
10749 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10750
10751         * FileDialog.cs: Allmost a complete rewrite.
10752           - added a "virtual" file system that handles the differences
10753             between unix and windows file systems (especially the directory
10754             structure). Moved most of the directory and file handling code
10755             into the vfs.
10756             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
10757             UnixFileSystem and FSEntry.
10758           - Recently used folder/directory, size, location and used file names
10759             (file name ComboBox) are now stored in the registry and get read
10760             before the dialog shows up (fixes part 6 of bug #78446).
10761           - Creation of new folders/directories is now possible (context menu
10762             or ToolBar). Added TextEntryDialog for this that fills in the gap
10763             until ListView.LabelEdit works.
10764           - Fixed cursor handling (bug #78527) and focus handling for
10765             PopupButtonPanel
10766           - Various "Search in" ComboBox enhancements. The content of the
10767             dropdown listbox now almost matches ms.
10768           - Changed the behaviour when the user switches to SpecialFolder
10769             Recent to show the ListView in View.Details.
10770           - Beside using the ToolBar to change the View property of the
10771             file ListView it is now possible to use the context menu too.
10772
10773 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10774
10775         * ComboBox.cs: Don't create a new ObjectCollection when an item
10776           gets inserted. Just insert the item in the existing object_items
10777           ArrayList.
10778
10779 2006-06-08  Jackson Harper  <jackson@ximian.com>
10780
10781         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
10782         that the treeview and root node checks are done also, this fixes a
10783         regression i caused in the unit tests.
10784
10785 2006-06-07  Wade Berrier <wberrier@novell.com> 
10786
10787         * RichTextBox.cs: More ISO8859-1 -> unicode
10788
10789 2006-06-07  Mike Kestner  <mkestner@novell.com>
10790
10791         * ComboBox.cs : use items to hold highlight/selection so that
10792         collection insertions don't require synchronization.
10793
10794 2006-06-07  Jackson Harper  <jackson@ximian.com>
10795
10796         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
10797         routine.  We now always keep the sized edge at the cursor instead
10798         of computing movement and adjusting rects.  There is one buglet
10799         with this method though when the cursor is moved over area that
10800         the window can not expand too (such as the toolbars on the desktop).
10801
10802 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10803
10804         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
10805         here. Fixes crash on startup in AlbumSurfer.
10806
10807 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
10808
10809         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
10810           values
10811
10812 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10813
10814         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
10815         statement to avoid calling XNextEvent which will block if another thread
10816         took the event that we were expecting. Fixes bug #78605.
10817
10818 2006-06-07  Mike Kestner  <mkestner@novell.com>
10819
10820         * ListView.cs : isolated checkbox clicking from the selection logic.
10821         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
10822
10823 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10824
10825         * Form.cs: Check that the value passed to Form.DialogResult
10826         is a valid enum value.
10827
10828 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10829
10830         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
10831         Computer'. Clicking it in the network view goes to 'My Computer'.
10832         Added CIFS filesystem type. Display the mount point of filesystems.
10833         Avoid duplicate mount points (happens for me with CIFS);
10834
10835 2006-06-06  Jackson Harper  <jackson@ximian.com>
10836
10837         * InternalWindowManager.cs: Draw the maximized windows buttons
10838         when resizing.
10839
10840 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10841
10842         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
10843         all other dialogs. Fixes bug #78585.
10844
10845 2006-06-06  Mike Kestner  <mkestner@novell.com>
10846
10847         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
10848         Only invalidate checkbox on checkstate changes to avoid flicker.
10849         * ListBox.cs : avoid unselect/select when clicking selected item.
10850         avoid reselection flicker for already multiselected items.
10851         Fixes #78382.
10852
10853 2006-06-06  Jackson Harper  <jackson@ximian.com>
10854
10855         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
10856         the parent form so that the menu is removed if needed.
10857
10858 2006-06-06  Mike Kestner  <mkestner@novell.com>
10859
10860         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
10861         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
10862
10863 2006-06-06  Mike Kestner  <mkestner@novell.com>
10864
10865         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
10866
10867
10868 2006-06-06  Jackson Harper  <jackson@ximian.com>
10869
10870         * Control.cs: Use the property (instead of the field) to get the
10871         default cursor so it is instantiated correctly.
10872         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
10873         resizes so we need to manually repaint the window decorations here.
10874         - Set the titlebar button locations as soon as they are created,
10875         otherwise they are not set correctly on win32.
10876         
10877 2006-06-06  Chris Toshok  <toshok@ximian.com>
10878
10879         * CurrencyManager.cs (set_Position): call PullData before
10880         OnCurrentChanged.
10881         (AddNew): after calling IBindingList.AddNew, update our
10882         listposition, and call OnCurrentChanged/OnPositionChanged (without
10883         calling PullData).
10884         (OnCurrentChanged): remove the call to PullData from here.
10885         (OnItemChanged): remove the call to PushData from here.
10886         (OnPositionChanged): change the test from == null to != null to
10887         match the other methods.
10888         (ListChangedHandler): the grossest part of the patch.  Implement
10889         this such that it passes the unit tests in CurrencyManagerTest and
10890         the output more or less matches that of MS's implementation.
10891  
10892 2006-06-06  Mike Kestner  <mkestner@novell.com>
10893
10894         * ListView.cs : only update check state on single click.
10895         * ThemeWin32Classic.cs : fix focus drawing for details view without
10896         fullrowselect.  Fixes #78454.
10897         * XplatUIX11.cs : fix for double click emission.
10898
10899 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10900
10901         * PropertyGridView.cs : Applied Atsushi's patch to fix
10902         font dialog bug  (#78197).
10903
10904 2006-06-05  Jackson Harper  <jackson@ximian.com>
10905
10906         * TreeNode.cs: Compute the next node for expanding/collapsing
10907         correctly. We now factor in nodes without a NextNode
10908         correctly. (Fixes somes cases in nunit-gui).
10909         * InternalWindowManager.cs: Set the bounds when updating the
10910         virtual position of a tool window.
10911         
10912 2006-06-05  Chris Toshok  <toshok@ximian.com>
10913
10914         * DataGrid.cs: rename cached_currencymgr to list_manager.
10915         (set_CurrentCell): move SetCurrentCell code here, and clean it up
10916         some.
10917         (CurrentRow, CurrentColumn): single accessors so we can make the
10918         cursor movement code a lot easier to understand.
10919         (CurrentRowIndex): implement this in terms of CurrentRow.
10920         (BeginEdit): clean this up a bit.
10921         (CancelEditing): sort out the is_editing/is_changing/is_adding
10922         stuff a little.
10923         (EndEdit): minor changes.
10924         (OnKeyDown): add a comment about a (most likely) unnecessary
10925         check.
10926         (OnMouseDown): cancel editing when we click on a row header.  And
10927         use the CurrentRow setter, not CurrentCell.
10928         (ProcessDialogKey): directly call ProcessGridKey.
10929         (UpdateSelectionAfterCursorMove): factor out this common block of
10930         code (it's used everywhere that we move the cursor by updating row
10931         or column).
10932         (ProcessGridKey): pretty substantial overhaul.  Use the
10933         CurrentRow/CurrentColumn properties to make the code a lot more
10934         readable.  Only use the CurrentCell property when we have to
10935         modify both row and column at once.  Tab behavior is still broken,
10936         and Delete is untested.
10937         (Select): if we have no selected rows, set selection_start to
10938         @row.
10939         (EditCurrentCell): rename EditCell this.  It was only ever invoked
10940         with CurrentCell as the arg, so drop the arg and rename it.
10941
10942         * DataGridColumnStyle.cs: clean up the constructors a little, and
10943         drop CommonConstructor().
10944
10945         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
10946         actually get notified when the user hits it.
10947         (ProcessKeyMessage): *substantially* simplify this method.
10948         There's no reason (that I can see) for the textbox to be making
10949         calls into the datagrid at all.  Remove all of them but the ones
10950         for Enter handling.  those will take some more work.
10951
10952         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
10953         calling HideEditBox.
10954         (HideEditBox): if we have an active textbox, render it invisible
10955         without causing a re-layout of the datagrid.
10956
10957 2006-06-05  Mike Kestner  <mkestner@novell.com>
10958
10959         * ListView.cs : fix NRE crasher when focuseditem is cleared by
10960         collection changes by resetting it to Items[0].  Fixes #78587.
10961
10962 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10963
10964         * MessageBox.cs: if the height of the text is larger than the icon_size,
10965         use that. Fixes bug #78575.
10966
10967 2006-06-05  Jackson Harper  <jackson@ximian.com>
10968
10969         * TreeView.cs: Fix line drawing when scrolling.  To do this each
10970         node is basically responsible for drawing its entire horizontal
10971         area.  When drawing a node it draws its parent node lines if
10972         needed.
10973         - Adjust the clip area to the viewport rectangle
10974         - Fix Left/Right key handling to match MS. (It expand/collapses
10975         and moves to parents/first child but does not move selection to
10976         sibling nodes).
10977         - Fix SetTop to work with new bound calculation code
10978         - When scrollbars are no longer needed we need to reset scrolling
10979         vars and recalculate the visible order so the redraw is correct
10980         * TreeNode.cs: We can't expand/collapse nodes with no children.
10981
10982 2006-06-03  John Luke  <john.luke@gmail.com> 
10983
10984         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
10985         so the colors work without dev packages
10986         
10987 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
10988
10989         * Control.cs 
10990           - Select: Implemented to just use activate. Seems to match MS 
10991             behaviour closest. Documented to only do actual control walking 
10992             based on it's parameters if in a container control so I moved 
10993             the code there.
10994           - Removed selection check logic from our internal Select() method
10995         * ContainerControl.cs:
10996           - Select: Moved selection logic from Control here, since MS documents
10997             that containers obey the bool arguments. No longer calling base
10998
10999 2006-06-02  Jackson Harper  <jackson@ximian.com>
11000
11001         * TreeView.cs: If the selected node isn't changed when we get
11002         focus update the previously selected node so that we see the
11003         selection box.
11004
11005 2006-06-02  Mike Kestner  <mkestner@novell.com>
11006
11007         * ComboBox.cs: restructure grab and general mouse event handling.
11008         Make the composite control raise mouse events like it was a single
11009         control for leaves/enters/motion/up/down events.  fix dropdown list
11010         coordinate mangling and refactor it into the scrollbar subclass to
11011         reduce code duplication.  Fixes #78282 #78361 and #78457.
11012
11013 2006-06-02  Mike Kestner  <mkestner@novell.com>
11014
11015         * ScrollBar.cs: remove Capture setting/clearing, as it happens
11016         automatically in the Control.WndProc.
11017
11018 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11019
11020         * FileDialog.cs: fix crash when running SharpChess, which sets the
11021         FilterIndex to 2 with only one Filter.
11022
11023 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11024
11025         * ToolBar.cs: add SizeSpecified property.
11026         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
11027         try to figure out our real size, otherwise fallback to what the
11028         container says.
11029
11030 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
11031
11032         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
11033         * Control.cs (WndProc): MS always calls the DefWndProc to pass
11034           up the event
11035
11036 2006-06-01  Mike Kestner  <mkestner@novell.com>
11037
11038         * ListView.cs: revamp the focus management in ListView.  It still
11039         causes churn of LostFocus/GotFocus emissions on clicks, but it's
11040         better than not handling focus at all.  Will revisit when pdb feels
11041         the general focus handling is solid.  Fixes #78526.
11042
11043 2006-06-01  Jackson Harper  <jackson@ximian.com>
11044
11045         * TreeView.cs: Set the default border style in the constructor.
11046         - Move painting to use OnPaintInternal instead of capturing
11047         WM_PAINT, this is the correct way of doing things
11048         - UpdateBelow shouldn't invalidate the scrollbar area
11049         - Cap the top on update below in case the node was above the top
11050         of the viewport rectangle.
11051         - ExpandBelow and Collapse below need to obey Begin/End Update.
11052         * TreeNode.cs: Make is_expanded internal so the treenode
11053         collection can change it without firing the whole event chain.
11054         * TreeNodeCollection.cs: When clearing all the child nodes make
11055         sure to recalc the visible order.
11056         - Improve algo for remove the top node
11057
11058 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
11059
11060         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
11061           SendMessage directly calling window procedures, which in turn might
11062           call SetFocus()
11063
11064 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
11065
11066         * Control.cs: Don't handle WM_SETFOCUS if the same window already
11067           has focus (works around X11 sending a FocusIn after our SetFocus)
11068         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
11069
11070 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
11071
11072         * Mime.cs: Fix for the NET_2_0 build.
11073           NameValueCollection needs StringComparer now.
11074
11075 2006-05-31  Chris Toshok  <toshok@ximian.com>
11076
11077         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
11078         return (via an out parameter) the starting X of the column.
11079         (UpdateVisibleColumn): track change to FromPixelToColumn.
11080         (HitTest): add a ColumnResize case here.
11081         (DrawResizeLine): new function, probably poorly named.
11082
11083         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
11084         only need to keep one reference.
11085         (set_ListManager): same.
11086         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
11087         Also, add support for HitTestType.ColumnResize.
11088         (OnMouseMove): add column resize behavior here, and change the
11089         cursor to the correct one as we move around the datagrid.
11090         (OnMouseUp): terminate the column resize if we're resizing.
11091         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
11092         for the current cell.
11093         (ConnectListManagerEvents): use cached_currencymgr.
11094         (DisconnectListManagerEvents): fill this in, using
11095         cached_currencymgr.
11096         (SetCurrentCell): remove cached_currencymgr_events handling.
11097         (SetDataMember): only call DisconnectListManagerEvents if
11098         cached_currencymgr is != null.
11099         (SetDataSource): same.
11100         (OnListManagerCurrentChanged): cached_currencymgr_events ->
11101         cached_currencymgr.
11102
11103 2006-05-31  Jackson Harper  <jackson@ximian.com>
11104
11105         * BindingManagerBase.cs: Remove somedebug code that creeped into
11106         SVN.
11107         * TreeNode.cs: We get the indent level dynamically right now, so
11108         don't track it as a member.
11109         * TreeNodeCollection.cs: Make sure all nodes added to the list
11110         have parents, treeviews/topnodes setup properly.
11111         - Don't attempt to track indent level.
11112
11113 2006-05-30  Jackson Harper  <jackson@ximian.com>
11114
11115         * BindingContext.cs: Create the currency manager tables here.
11116         This allows us to more easily create null tables (when bad data
11117         members are used), and more easily create related currency
11118         managers.
11119         * CurrencyManager.cs: All the table creation stuff is done by the
11120         binding context now.
11121         - Current should throw an exception if listposition is -1.
11122         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
11123         been bound yet.
11124
11125 2006-05-30  Mike Kestner  <mkestner@novell.com>
11126
11127         * ListView.cs: allow reexpansion of zero-width column headers.
11128         Fixes #78528.
11129
11130 2006-05-28  Chris Toshok  <toshok@ximian.com>
11131
11132         * CurrencyManager.cs (get_Current): after the late binding
11133         listposition = -1 fix, we need to guard against it here and return
11134         null, otherwise we raise an exception (which is swallowed
11135         elsewhere, and breaks datagrid databinding.)
11136
11137 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
11138
11139         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
11140           than WM_SYSKEY, don't throw if get something unexpected (#78507)
11141
11142 2006-05-26  Jackson Harper  <jackson@ximian.com>
11143
11144         * ControlPaint.cs:
11145         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
11146         values, it's faster and it's all we care about (we don't care if
11147         the names aren't equal).
11148         * KeyboardLayouts.cs: Eliminate some dead code.
11149         - Lazy init things
11150         * X11Keyboard.cs: Lazy init keyboard detection.
11151         - Cleanup access modifiers a little.
11152
11153 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
11154
11155         * XplatUIX11.cs: Once again, attempting to get layout just right.
11156
11157 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
11158
11159         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
11160           the sizes of each link section, that will result in sizes that
11161           match DrawString's layout (Fixes #78391)
11162
11163 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
11164
11165         * FileDialog.cs: If AddExtension property is true autocomplete the
11166           extensions in SaveFileDialog correctly. Fixes bug #78453.
11167           Set MyNetwork and MyComputer to "C:\" for windows. This should
11168           fix part 8 of bug #78446 for now.
11169
11170 2006-05-26  Chris Toshok  <toshok@ximian.com>
11171
11172         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
11173         invalidate the current row header if we need to, but presumably
11174         we'll invalidate the row corrsponding to the bounds or
11175         editingControl.
11176         (GridHScrolled): switch back to this method, as it's part of the
11177         public api.  *sigh*.
11178         (GridVScrolled): same.
11179         (OnMouseWheel): hack up something that more or less works.  Call
11180         GridHScrolled/GridVScrolled directly, instead of duplicating much
11181         of their code here.
11182         (EnsureCellVisibility): reinstate a bunch of this code, since we
11183         can't just set the scrollbar Value and expect to do all the work
11184         in the ValueChanged handler.  Also, Call Update() after scrolling
11185         in one direction so the other XplatX11.ScrollWindow call has the
11186         proper stuff in the proper places.
11187         (EditCell): set is_editing to true before calling .Edit.
11188
11189         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
11190         don't bother comparing first.
11191         (OnKeyPress): call grid.ColumnStartedEditing before calling
11192         base.OnKeyPress.  this will set is_changing and invalidate the row
11193         header if necessary.
11194         (ProcessKeyMessage): for WM_CHAR messages, call
11195         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
11196         and WM_KEYDOWN.
11197         
11198         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
11199         it's done in the DataGrid.
11200         (NextState): call grid.ColumnStartedEditing, which takes care of
11201         invalidating the row header (and setting is_changing).
11202
11203         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
11204         here.  it's done in the DataGrid.
11205
11206 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11207
11208         * Control.cs: allow changing the cursor when the mouse position is
11209         out of bounds but Capture is set.
11210         * LinkLabel.cs: handle the case when the mouse button is pressed on the
11211         linklabel but released somewhere else.
11212
11213 2006-05-25  Jackson Harper  <jackson@ximian.com>
11214
11215         * TreeView.cs: When we get focus if there is no selected node make
11216         it the top node
11217         - Remove some uneeded setup code from Draw.
11218         * TreeNodeCollection.cs: If the tree doesn't have a top node when
11219         a new node is inserted make the new node the top.
11220         * XplatUIX11.cs:
11221         * Timer.cs: Use Utc time so that no local time zone stuff needs to
11222         be used (should be faster).
11223         
11224 2006-05-25  Chris Toshok  <toshok@ximian.com>
11225
11226         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
11227         problem with the last commit.
11228
11229 2006-05-25  Chris Toshok  <toshok@ximian.com>
11230
11231         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
11232         need the invalidate call here, while scrolling right-to-left via
11233         the left arrow key (i.e. moving the editing cell while scrolling).
11234
11235         * DataGrid.cs (.ctor): remove the initialization of
11236         ctrl_pressed/shift_pressed.  We no longer track them using key
11237         up/down handlers, but by using Control.ModifierKeys.  Also, switch
11238         to using ValueChanged handlers on the scrollbars instead of
11239         Scrolled event handlers.  This simplifies a bunch of the scrolling
11240         code.
11241         (GridHValueChanged): rename from GridHScrolled, and change it to
11242         work with the new event args.
11243         (GridVValueChanged): same.
11244         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
11245         (OnMouseWheel): actually scroll the datagrid.  Don't change the
11246         selected cell.
11247         (ProcessGridKey): correct all the keyboard navigation stuff I
11248         could find.  Ctrl up/down/left/right/home/end work now.
11249         (EnsureCellVisibility): correct method name spelling.  Also,
11250         simplify this a touch by not explicitly calling the
11251         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
11252         scrollbar value.
11253         (OnKeyUpDG): no need for this method now.
11254         
11255 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11256
11257         * LinkLabel.cs: display the OverrideCursor when hovering the label.
11258         Fixes bug #78392.
11259
11260 2006-05-25  Chris Toshok  <toshok@ximian.com>
11261
11262         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
11263         r61019.
11264
11265 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11266
11267         * Application.cs: Moved setting of is_modal and closing to before
11268           we create the control, to allow the event handlers called as a
11269           result of creation affect closing. Also removed Gonzalo's previous
11270           change to setting DialogResult, the behaviour has been moved to 
11271           Form.ShowDialog()
11272         * Form.cs: 
11273           - ShowDialog(): Removed explicit creation of the form, let RunLoop
11274             handle it instead
11275           - ShowDialog(): If no dialog result is set, we need to return Cancel
11276           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
11277             the close is cancelled
11278
11279 2006-05-25  Jackson Harper  <jackson@ximian.com>
11280
11281         * StatusBar.cs: We only need to update the sizes of the other
11282         panels when we have auto size contents.  Also we are only updating
11283         the contents of the panel, not the borders, so compensate for the
11284         border width (TODO: get this width from the theme somehow).
11285         * TreeView.cs: Scrollable is true by default
11286         - Use invalidate instead of refresh where needed
11287         - Factor the scrollable value into scrollbar updating
11288         - Update the scrollbars if the Scrollable property is altered
11289         - Update the selected node if its ImageIndex is changed
11290         - Handle null nodes in UpdateNode (mainly so we don't have to
11291         check if selected is null when updating it
11292         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
11293         are factored into the visible count
11294         - Use VisibleCount for clarity in the code
11295         - When the font is changed we need to recurse through all the
11296         nodes and invalidate their sizes
11297         
11298 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11299
11300         * Application.cs: set the DialogResult to fixed when the main form is
11301         hidden or destroyed while being modal.
11302
11303 2006-05-25  Miguel de Icaza  <miguel@novell.com>
11304
11305         * Theme.cs: Use Tangoified messagebox icons. 
11306
11307         (GetSizedResourceImage): Also cope with width = 0 and do not
11308         trigger a warning in that case (0 means "give me your icon from
11309         the resouce, no special size needed).
11310
11311 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11312
11313         * Application.cs: Leave runloop if the the main modal form is 
11314           hidden (fixes #78484)
11315
11316 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11317
11318         * BindingContext.cs : reject null datasource in Contains() and
11319           Item[].
11320         * CurrencyManager.cs : check data_member validity when data_source
11321           is dataset. When it is late binding, the initial position is -1.
11322
11323 2006-05-24  Jackson Harper  <jackson@ximian.com>
11324
11325         * TreeNodeCollection.cs: Dont't recalculate the visible order on
11326         inserted nodes that aren't visible.  This changes the
11327         max_visible_order which confuses scrollbar settings.
11328         - Use the enumerator to get the prev node instead of duplicating
11329         code.
11330         * TreeView.cs: Use new method for setting scrollbar values
11331         - Don't set the bounds every time the scrollbar is updated
11332         - When updating below the root node use an invalidate instead of a
11333         refresh to prevent the child controls (scrollbars) from being
11334         refreshed. (UpdateBelow still needs to be reworked anyways).
11335         - Reenable SetBottom now that visible orders are set correctly,
11336         added some debug code incase we ever get bad values there again.
11337         - Set the scrollbar max to 2 less then the max value, this
11338         compensates for the max value being one above the node count, and
11339         for scrollbars adding one extra "notch".
11340         - When drawing image nodes if there is an imagelist we draw the
11341         first image in the list if the supplied image index is out of the
11342         image list's bounds.
11343         
11344 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11345
11346         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
11347           we receive a size change from the WM (Fixes #78503)
11348
11349 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
11350
11351         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
11352           rectangle (Fixes #78501)
11353
11354 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11355
11356         * ButtonBase.cs: 
11357           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
11358             as a bitfield.
11359           - Fixed MouseMove to no longer switch pressed state unless the left
11360             mouse button is pressed. Atsushi provided the original patch (#78485)
11361           
11362 2006-05-24  Jackson Harper  <jackson@ximian.com>
11363
11364         * ScrollBar.cs: New internal methods that allow us to change a
11365         couple values on the scrollbar (the most common case is maximum
11366         and large change) without getting multiple invalidates.
11367
11368 2006-05-24  Chris Toshok  <toshok@ximian.com>
11369
11370         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
11371         (Edit): save off the original state in oldState, and set
11372         grid.is_editing to true.
11373         (OnKeyDown): abort editing if escape is pressed.  also, call
11374         NextState if space is pressed.
11375         (OnMouseDown): call NextState.
11376         (NextState): factor out shared code from OnKeyDown and OnMouseDown
11377         here.  Also, only invalidate the row header once (on the initial
11378         is_changing switch) to save on redraws.
11379
11380 2006-05-24  Chris Toshok  <toshok@ximian.com>
11381
11382         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
11383         if the value in the cell is different than it was before.  This
11384         keeps us from triggering a layout when we move around a datarid
11385         with a highlighted cell.
11386         (Edit): suspend layout when creating/positining the text box, and
11387         resume passing false so we don't ever actually re-layout.
11388         (ReleaseHostedControl): same.
11389         (EnsureTextBox): reformat slightly, and set WordWrap to false.
11390
11391         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
11392         control-key sequences should go to the datagrid - remove that
11393         lock.  Also, modify the conditions under which we move between
11394         cells when moving the cursor within a cell, and remove the "this"
11395         and "base" from field accesses.  We weren't even consistent, given
11396         they all were in the base class.
11397
11398 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
11399
11400         * Binding.cs : (.ctor)
11401           An obvious NRE fix for BindingTest.CtorNullTest().
11402
11403 2006-05-23  Chris Toshok  <toshok@ximian.com>
11404
11405         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
11406         them between lines.  This fixes some quirks editing cells in the
11407         datagrid.
11408
11409 2006-05-23  Jackson Harper  <jackson@ximian.com>
11410
11411         * TreeView.cs: Use begin/end update when doing expand/collapse all
11412         so that we don't get flicker on the scrollbar.
11413
11414 2006-05-23  Jackson Harper  <jackson@ximian.com>
11415
11416         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
11417         treenode calculations to be independant of the painting code. To
11418         do this nodes track a visible order which is calculated by the
11419         treeview.
11420         - Call new methods for expanding/collapsing nodes.  These methods
11421         use scrollwindow so we don't have to update everything below the
11422         node.
11423         * TreeView.cs: Refactored drawing and scrolling code.  We don't
11424         need to update nodes when drawing anymore or calculate scrollbar
11425         stuff.
11426         - Added new methods for expanding/collapsing nodes. These methods
11427         use ScrollWindow so as to not have to redraw all the nodes below.
11428         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
11429         we add/remove nodes or sort.
11430         - Handle removing the selected and the top node properly.
11431
11432 2006-05-23  Chris Toshok  <toshok@ximian.com>
11433
11434         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
11435         maybe this should actually happen in the datagrid code?
11436         (EndEdit): no need to invalidate anything, given that
11437         ReleaseHostedControl causes the datagrid to relayout, which
11438         invalidates everything anyway.
11439
11440         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
11441         in SetCurrentCell).
11442         (set_SelectionBackColor): call InvalidateSelection instead of
11443         Refresh.
11444         (set_SelectionForeColor): same.
11445         (BeginEdit): Flesh this out a bit.
11446         (CancelEditing): only do any of this if we're editing/adding.
11447         (EndEdit): same.
11448         (OnMouseDown): there's no need to cancel editing here, it's done
11449         in SetCurrentCell.
11450         (SetCurrentCell): only invalidate the current row header if it's a
11451         different row than the new one.
11452         (ShiftSelection): fix this to work like MS does.
11453         (ResetSelection): factor out the invalidation of selected_rows to
11454         InvalidateSelection.
11455         (SetDataSource): cancel any editing that's going on.
11456
11457         * DataGridColumnStyle.cs
11458         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
11459         call the non-interface version.
11460
11461         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
11462         header rectangle with the clip rectangle so we don't redraw the
11463         entire header for just a small area.  Gets rid of the last flicker
11464         when horizontally scrolling.
11465         (DataGridPaintRow): same.
11466
11467 2006-05-23  Mike Kestner  <mkestner@novell.com>
11468
11469         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
11470         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
11471         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
11472         Critical bug report.
11473
11474 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11475
11476         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
11477           and this fixes #78493
11478
11479 2006-05-23  Miguel de Icaza  <miguel@novell.com>
11480
11481         * Theme.cs (GetSizedResourceImage): Scale images if the proper
11482         size is not found.  
11483         
11484         * FileDialog.cs: Do not change the background for the side bar as
11485         it wont work nicely with the theme, and also reduces the artifacts
11486         in rendering the icons (which I want to fix too).
11487
11488         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
11489         resources, not resgen resources. 
11490
11491         (PlatformDefaultHandler): Pull images using the new API.
11492
11493 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11494
11495         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
11496           a reference to the hwnd and will not remove it unless there are
11497           no pending exposures (fixes #78341)
11498         * XplatUI.cs: Improved debug
11499
11500 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
11501
11502         * MenuAPI.cs : don't handle OnClick event when it was not the left
11503           button. Fixed bug #78487.
11504
11505 2006-05-23  Mike Kestner  <mkestner@novell.com>
11506
11507         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
11508         prefer submenus to the top menu for item lookup, to avoid popping down
11509         top-row items.
11510
11511 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
11512
11513         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
11514           Graphics.FillRectangle as the visual results are really bad (even
11515           on win). We now draw perfect arrows (and perfect shadows when the
11516           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
11517           Pen.DashPattern to draw the dots of each line.
11518
11519 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
11520
11521         * FileDialog.cs: Update the filename combobox when navigating through
11522           the ListView with the cursor keys. Fixes part 7 of bug #78446.
11523
11524 2006-05-22  Mike Kestner  <mkestner@novell.com>
11525
11526         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
11527         Fixes #78463.
11528
11529 2006-05-22  Mike Kestner  <mkestner@novell.com>
11530
11531         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
11532         requests. Fix a misspelled parameter and a copy paste exception error
11533         in Select.
11534
11535 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
11536
11537         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
11538           to get the same width/height (5/13) on X11 as the default font has on
11539           win32. This means that our DefaultFont emSize is smaller than the 
11540           the MS SWF equivalent (even thought the width/height stays the same)
11541
11542 2006-05-20  Jackson Harper  <jackson@ximian.com>
11543
11544         * MdiClient.cs:
11545         * MdiWindowManager.cs:
11546         * InternalWindowManager.cs: Make sure to use the border width from
11547         the theme.
11548
11549 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
11550
11551         * PrintDialog.cs: Implements printer details
11552
11553 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
11554
11555         * FileDialog.cs: Added focus handling for PopupButtonPanel.
11556           Fixes part 1 and 2 of bug #78446
11557
11558 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
11559
11560         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
11561           instead of sticking to the first ever calculated value
11562
11563 2006-05-19  Mike Kestner  <mkestner@novell.com>
11564
11565         * ComboBox.cs: fix mouse motion selection to use MousePosition and
11566         PointToClient, since Capture is set. Fixes #78344.
11567
11568 2006-05-19  Mike Kestner  <mkestner@novell.com>
11569
11570         * ListView.cs: match MS behavior in Details view where items are not
11571         drawn if Columns.Count == 0. 
11572         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
11573         Use a separate pen to draw the check, since changing the width affects
11574         the box as well.  Fixes #78454.
11575
11576 2006-05-18  Miguel de Icaza  <miguel@novell.com>
11577
11578         * ListView.cs: ArgumentOutOfRangeException, single versions of the
11579         exception should throw the name of the invalid argument.
11580
11581         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
11582         there are no files listed. 
11583
11584 2006-05-18  Jackson Harper  <jackson@ximian.com>
11585
11586         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
11587         up.
11588
11589 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11590
11591         * Control.cs: Brought back our old UpdateZOrder method as a private
11592           function and switched our calls from UpdateZOrder to the new one.
11593           This fixes the Paint.Net canvas disappearing bug.
11594
11595 2006-05-18  Jackson Harper  <jackson@ximian.com>
11596
11597         * Theme.cs:
11598         * ThemeWin32Classic.cs:
11599         * InternalWindowManager.cs: Move the drawing into the theme,
11600         expose everything the theme should need from the window manager.
11601
11602 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11603
11604         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
11605           from the call to NativeWindow to avoid walking up the parent chain
11606           further than needed (speeds up setting cursors and avoids setting
11607           the wrong cursor if a parent has another cursor defined)
11608         * Cursor.cs: When loading an icon as cursor, MS uses the center of
11609           the icon as hotspot, not what's contained as hotspot in the icon
11610           file. This fixes the perceived drawing offset seen with Paint.Net
11611         
11612 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11613
11614         * XplatUIX11.cs: 
11615           - Store the calculated rectangle in Hwnd object and use it when 
11616             setting the client size
11617           - Force Toolwindows to always be type Dock, to ensure they're on top
11618
11619 2006-05-18  Mike Kestner  <mkestner@novell.com>
11620
11621         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
11622         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
11623         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
11624         Substantial refactoring to remove confusing nested classes. Coding
11625         standard and Get+Set->property refactorings.  Shift to index based
11626         highlighting in ComboListBox instead of constantly using IndexOf and
11627         Items[]. Add invalidations on resize for DropDownList to fix ugliness
11628         in FileDialog growth.  Draw borders manually since Simple mode needs
11629         to look like two independent controls.  Make listbox border
11630         conditional to DropDownStyle.  Improved OwnerDraw support.
11631
11632 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
11633
11634         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
11635         Don't set the disposed graphics to null, so we can throw the "right"
11636         exception if the graphics is reused later (added a flag to avoid 
11637         double disposing). Some behaviours are different under 2.0 and are
11638         filled under bug #78448.
11639
11640 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11641
11642         * Control.cs: When double-buffering is enabled, we need to reset
11643           our graphics context between paint calls. Otherwise, any 
11644           transformations and other alterations on the context will 
11645           become cumulative (#77734)
11646
11647 2006-05-18  Mike Kestner  <mkestner@novell.com>
11648
11649         * ListView.cs: do focused item selection like MS on clicks. 
11650         Rework focus handling for ItemControl so LostFocus invalidates as
11651         well.
11652         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
11653         the ListView ItemControl has focus.
11654
11655 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
11656
11657         * XplatUIX11.cs: If client_window ends up being width or height zero
11658           due to border settings, move it off window inside whole_window (#78433)
11659
11660 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11661
11662         * Mime.cs: Shrink the mime file cache correctly.
11663
11664 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11665
11666         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
11667
11668 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11669
11670         * XplatUIX11.cs (AddExpose): More sanity checks
11671
11672 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11673
11674         * XplatUIX11.cs:
11675           - AddExpose: Don't add expose ranges outside the size of our
11676             window
11677           - Cast opacity values to Int32 to avoid crashes with certain
11678             values
11679           - Added disabled code paths that protect against illegal cross-
11680             thread painting (Developers.exe)
11681
11682 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11683
11684         * ProgressBar.cs: Invalidate the control when it's resized
11685           since block size is based on control size. (#78388)
11686
11687 2006-05-16  Miguel de Icaza  <miguel@novell.com>
11688
11689         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
11690         of setting the incoming argument to the "reset" value, we set the
11691         this.datamember to string.empty (before we were invalidating the
11692         incoming data).   
11693
11694         Fixes 78420
11695
11696 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11697
11698         * Form.cs: Only apply transparency settings after the form
11699           is created. (Fixes #77800)
11700
11701 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11702
11703         * ApplicationContext.cs: Grab the HandleDestroyed event so
11704           we know when to fire OnMainFormClosed 
11705
11706 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11707
11708         * Application.cs: Introduced sub-class to allow tracking of
11709           threads and centralized triggering of the event mess for
11710           ThreadExit, AppExit, etc..  (#76156)
11711
11712 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
11713
11714         * MimeIcon.cs:
11715           - Do not return a null icon index value for a mime subclass.
11716             Instead try the main mime type class too.
11717           - Seems that some newer distributions don't have a link to some
11718             gnome default icons anymore. So check the default gnome dir too.
11719           
11720
11721 2006-05-16  Jackson Harper  <jackson@ximian.com>
11722
11723         * MdiClient.cs: Don't paint the parent background image if we have
11724         our own background image.
11725
11726 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11727
11728         * Control.cs:
11729           - PerformLayout: Do not shrink space filled by DockStyle.Fill
11730             controls, all filled controls are supposed to overlap (#78080)
11731           - UpdateZOrder is supposed to update the control's z-order in the
11732             parent's z-order chain. Fixed to behave like that
11733           - BringToFront: Removed obsolete code
11734           - SendToBack: Simplyfied
11735           - SetChildIndex: Trigger layout calculations when Z-order changes
11736             since layout is done by z-order
11737
11738 2006-05-16  Chris Toshok  <toshok@ximian.com>
11739
11740         [ fixes bug #78410 ]
11741         * DataGrid.cs (set_AlternatingBackColor): use
11742         grid_drawing.InvalidateCells instead of Refresh().
11743         (set_BackColor): call grid_drawing.InvalidateCells.
11744         (set_BackgroundColor): use Invalidate instead of Refresh.
11745
11746         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
11747         invalidate the cell area.
11748
11749 2006-05-15  Chris Toshok  <toshok@ximian.com>
11750
11751         [ fixes bug #78011 ]
11752         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
11753         on to DataGridPaintRow.
11754         (DataGridPaintRow): take a clip argument, and only draw the cells
11755         which intersect it.  same with the not_usedarea.
11756
11757         * Theme.cs (DataGridPaintRow) add @clip parameter.
11758
11759         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
11760         XplatUI.ScrollWindow.
11761         (ScrollToRow): same.
11762
11763         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
11764         with last column which was causing a gray swath to appear with the
11765         XplatUI.ScrollWindow code.
11766
11767 2006-05-15  Chris Toshok  <toshok@ximian.com>
11768
11769         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
11770         use XplatUI.ScrollWindow.
11771         (VerticalScrollEvent): use XplatUI.ScrollWindow.
11772
11773 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
11774
11775         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
11776
11777 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
11778
11779         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
11780           file since there are no equivalent X11 cursors
11781
11782 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
11783
11784         * MonthCalendar.cs : DateTimePicker should reflect selected date
11785           on mouse*up*, not mouse*down*. Fixed originally reported part of
11786           bug #76474.
11787
11788 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
11789
11790         * TabControl.cs : When argument index is equal or more than tab
11791           count, just ignore. Fixed bug #78395.
11792
11793 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
11794
11795         * Control.cs: Dispose all child controls when control is diposed (#78394)
11796
11797 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11798
11799         * ColorDialog.cs: Finally it is possible to select the color with
11800           the text boxes
11801
11802 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11803
11804         * PrintDialog.cs: Fix typo
11805
11806 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11807
11808         * PrintDialog.cs: PrintDialog is not resizable
11809         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
11810           color. Made some ToolBar drawing methods protected virtual.
11811
11812 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
11813
11814         * PrintDialog.cs: Implementation of the PrintDialog
11815
11816 2006-05-12  Chris Toshok  <toshok@ximian.com>
11817
11818         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
11819         thumb, instead use MoveThumb.  This has the side effect of making
11820         most of the other thumb moving machinery use MoveThumb as well.
11821         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
11822         need to actually invalidate the rectangle where the new thumb will
11823         go.
11824         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
11825         We force an Update() after, so it's not as fast as it could be,
11826         but at least there's zero flicker and no droppings.
11827         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
11828         (UpdateThumbPos): add another argument (dirty), which says whether
11829         or not to calculate/add dirty regions which we later invalidate.
11830         For cases where we know we're going to use MoveThumb, we pass
11831         false for this.  Otherwise, pass true.
11832
11833 2006-05-12  Jackson Harper  <jackson@ximian.com>
11834
11835         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
11836         the status bar.
11837         
11838 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
11839
11840         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
11841           and GetClipRegion methods and UserClipWontExposeParent property.
11842         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
11843           overriding UserClipWontExposeParent property, setting to false, since
11844           Win32 handles the required expose messages to draw our clipped parent
11845           areas internally
11846         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
11847           PaintEventStart to set the user clip region if set.
11848         * Control.cs: 
11849           - Now internally tracking the Region for the control since we need to
11850             store it if the handle is not yet created and only set it when it
11851             becomes created. Before setting the region forced handle creation
11852           - Added code to draw the parents underneath a user-clipped region
11853         * Hwnd.cs: Added UserClip property
11854
11855 2006-05-12  Chris Toshok  <toshok@ximian.com>
11856
11857         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
11858         (set_Maximum): same.
11859         (set_Minimum): same.
11860         (set_SmallChange): same.
11861         (OnMouseUpSB): remove the call to refresh when releasing the
11862         thumb.  We shouldn't need it.
11863         
11864 2006-05-12  Miguel de Icaza  <miguel@novell.com>
11865
11866         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
11867         AutoSize set to None, we do not need to relayout everything, we
11868         just need to invalidate the current region.
11869
11870         (Draw): Do not draw the entire ClientArea, just redraw the
11871         clip area being passed.
11872
11873         * MdiClient.cs: Make MdiClient constructor with the Form argument
11874         internal. 
11875
11876 2006-05-12  Jackson Harper  <jackson@ximian.com>
11877
11878         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
11879         parents background image,  but strangely not their own.
11880         - (DrawStatusBarPanel): Take into account horizontal alignment
11881         when drawing the strings and icons.
11882
11883 2006-05-12  Mike Kestner  <mkestner@novell.com>
11884
11885         * ListBox.cs: avoid invalidations for focus when the collection is
11886         empty. 
11887
11888 2006-05-12  Chris Toshok  <toshok@ximian.com>
11889
11890         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
11891         invalidate the entire thumb area.  Call InvalidateDirty which
11892         limits the redraw to the thumb itself and surrounding pixels.
11893
11894         * XplatUIX11.cs (ScrollWindow): optimize copying.
11895         
11896 2006-05-12  Chris Toshok  <toshok@ximian.com>
11897
11898         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
11899         Figure out the positioning/layout in a single pass instead of
11900         multiple recursive invocations.  Speeds up the initial display of
11901         the data grid.  Also, make many things private that were
11902         originally public but unused outside this class.
11903
11904 2006-05-11  Jackson Harper  <jackson@ximian.com>
11905
11906         * MdiClient.cs: Improved layout code.
11907
11908 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
11909
11910         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
11911           not SelectedObject.
11912
11913 2006-05-11  Chris Toshok  <toshok@ximian.com>
11914
11915         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
11916         union of that will always be {0,0,width,height}.
11917
11918 2006-05-11  Jackson Harper  <jackson@ximian.com>
11919
11920         * Form.cs: Match MS's DefaultSize for forms (they must have
11921         changed the size in sp2).
11922
11923 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11924
11925         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
11926
11927 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11928
11929         * TextControl.cs : Fixed bug #78109. This incorrect position
11930           comparison caused crash on automatic line split.
11931         * TextBoxBase.cs : reduce duplicate code.
11932
11933 2006-05-10  Jackson Harper  <jackson@ximian.com>
11934
11935         * MdiClient.cs: Active form is only sent to the back when using
11936         the Next form functionality, when a form is clicked the current
11937         active shouldn't be sent to the back.
11938         - Layout the mdi windows when the container is first made visible.
11939         * Form.cs: Give the MdiClient a ref to the containing form when we
11940         create it.
11941         
11942 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11943
11944         * LinkLabel.cs : link_font could be uninitialized, so populate one
11945           before actual use. Fixed bug #78340.
11946
11947 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11948
11949         * XplatUIX11.cs : clipboard format native value is IntPtr.
11950           Fixed bug #78283.
11951
11952 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11953
11954         * Control.cs: 
11955           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
11956             which is passed up the parent chain by DefWndProc
11957           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
11958             to DefWndProc (#77956)
11959         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
11960
11961 2006-05-10  Jackson Harper  <jackson@ximian.com>
11962
11963         * MdiClient.cs: We need to remove the controls from the mdi
11964         collection, when we close the window.
11965         * MdiWindowManager.cs: Special handling of closing mdi windows.
11966         * InternalWindowManager.cs: Make the close method virtual so the
11967         mdi window manager can handle it specially.
11968
11969 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
11970
11971         * DataGrid.cs:
11972           - Recalculate grid when the data source has changed
11973           - Matches styles provided by user from all data sources types
11974         * DataGridTableStyle.cs: For columns that provided by the user set the
11975         with the preferred value is there was unassigned.
11976         * CurrencyManager.cs: throw OnItemChanged event
11977
11978 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
11979
11980         * PictureBox.cs: Don't animate until handle is created. Start animation
11981           when handle is created.
11982
11983 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11984
11985         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
11986           current codebase.
11987         * XEventQueue.cs: We don't need to provide the extra info
11988
11989 2006-05-10  Jackson Harper  <jackson@ximian.com>
11990
11991         * MdiClient.cs: If the mdi clients parent form has a background
11992         image set, we draw that background image for the mdi area's
11993         background.
11994
11995 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11996
11997         * TextBoxBase.cs: Set IBeam cursor (#78347)
11998
11999 2006-05-10  Mike Kestner  <mkestner@novell.com>
12000
12001         * ToolBar.cs: fix some text padding issues with ButtonSize
12002         calculation. Update the default size to match MS documentation.
12003         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
12004         button size. Fixes #78296.
12005
12006 2006-05-10  Mike Kestner  <mkestner@novell.com>
12007
12008         * ListBox.cs: use is_visible for scrollbar positioning in case the
12009         control isn't on screen yet.  Fix off by one with Right vs Width
12010         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
12011         
12012 2006-05-10  Jackson Harper  <jackson@ximian.com>
12013
12014         * X11Dnd.cs: Drop to a control with another control on top of it.
12015         * ToolBar.cs: Work on a copy of the buttons list, so that it can
12016         be modified in click handlers. TODO: Look for similar problems in
12017         other controls.
12018
12019 2006-05-09  Jackson Harper  <jackson@ximian.com>
12020
12021         * Form.cs: Window managers need the old window state when setting
12022         window state now.
12023         * InternalWindowManager.cs: Allow the base mdi window manager to
12024         handle more of the MDI only stuff (like maximize buttons).
12025         * MdiWindowManager.cs: Fix some snafus in changing the window
12026         state.  Add all the menu functionality, for both popup and
12027         maximized menus.
12028         * MdiClient.cs: When a new form is selected the currently
12029         activated form is sent to the back, this matches MS.
12030         - Implement a new method to activate the next mdi child window.
12031
12032 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
12033
12034         * Control.cs: 
12035           - Added new InternalCapture method to allow controls to prevent
12036             the capture behaviour on the click handlers
12037           - Switched to use InternalCapture
12038         * ComboBox.cs:
12039           - Using InternalCapture to prevent mouse captures from being released
12040             on mouse button release (Fixes #78100)
12041         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
12042           returns Form borders if a caption is present. (Fixes #78310)
12043
12044 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
12045
12046         * TreeNode.cs: Changed serialization .ctor to not require every field
12047           to be present. (#78265)
12048         * OwnerDrawPropertyBag.cs: Added serialization .ctor
12049
12050 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
12051
12052         * MimeIcon.cs: for is faster than foreach for strings.
12053
12054 2006-05-05  Mike Kestner  <mkestner@novell.com>
12055
12056         * CheckedListBox.cs: update check handling code to not use selected.
12057         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
12058         behavior for visual feedback, motion response, shift/ctrl handling,
12059         and properly deal with all 4 selection modes. Updates to bounds
12060         handling logic.  Add scroll wheel support. [Fixes #77842]
12061
12062 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
12063
12064         * ListView.cs:
12065           - Moved adding of Implicit controls into .ctor. That way, subsequent
12066             creation of the controls will not cause them to think they are 
12067             toplevel windows (fixes #78200 header problem)
12068           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
12069           - Switched visibility setting of header control to use internal field
12070             to avoid triggering handle creation
12071           - Now checking if handle is created before causing a refresh when items
12072             are added (This makes us now match handle creation time with MS)
12073         * Splitter.cs: Removed loading of private splitter cursor, switched to
12074           Cursors version now that that is loading the right ones
12075         * Cursors.cs: Load proper splitter cursors from resources
12076         * Cursor.cs: Added second method of loading resource cursors for the 
12077           VS.Net users amongst us
12078
12079 2006-05-05  Mike Kestner  <mkestner@novell.com>
12080
12081         * ListView.cs: give header_control a minimum size based on the
12082         ListView size.
12083
12084 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
12085
12086         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
12087           window seems to do that with metacity, so set that type. (#78120)
12088
12089 2006-05-05  Mike Kestner  <mkestner@novell.com>
12090
12091         * ListViewItem.cs: fix Details mode checkbox layout bug.
12092         * ThemeWin32Classic.cs: draw a ListView column header for unused space
12093         at the end of the header, if it exists. [Fixes for #78200]
12094
12095 2006-05-04  Jackson Harper  <jackson@ximian.com>
12096
12097         * MdiClient.cs: Add a helper property to get the container form.
12098         * MdiWindowManager.cs: We have to make sure to use the menu origin
12099         when drawing the icons and buttons, this fixes maximized window
12100         icons/buttons on win32.
12101         * InternalWindowManager.cs: Reset the restore captions when a
12102         window goes from Maximized to Minimized and vice versa. Move the
12103         DrawMaximizedButtons into the MdiWindowManager source, tool
12104         windows can't be maximized. NOTE: This could use a little
12105         refactoring if time ever permits.
12106         
12107 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
12108
12109         * TextBox.cs: Add MWFCategoryAttributes
12110         * TextBoxBase.cs: Add MWFCategoryAttributes
12111         * Form.cs: Add MWFCategoryAttributes
12112
12113 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
12114
12115         * Control.cs: Add MWFCategoryAttributes
12116         * ScrollableControl.cs: Add MWFCategoryAttributes
12117
12118 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
12119
12120         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
12121           Divider is true. Fix a little glitch in PropertyToolBar
12122           drawing code
12123
12124 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
12125
12126         * Control.cs:
12127           - Dispose: Call base.Dispose, this causes the disposed event
12128             to be fired (and probably other, more important stuff)
12129           - SetVisibleCore: Set is_visible to true after creating the
12130             window so that the window still gets created invisible (if
12131             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
12132             to generate a WM_ACTIVE message
12133         * Form.cs: Call Dispose when we want to destroy the window, instead of
12134           just destroying the handle (Dispose will do that for us)
12135         * XplatUIX11.cs:
12136           - RootWindow also needs a queue, so we can properly process the
12137             property change events from RootWindow (like Activate)
12138           - Generatic synthetic WM_ACTIVE message when the active window is
12139             being destroyed
12140
12141 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
12142
12143         * LinkLabel.cs: Trigger a recalc of our label dimensions when
12144           bounds are changed
12145
12146 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
12147
12148         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
12149           for determining width and height (image might not be assigned if
12150           we're drawing an imagelist)
12151
12152 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
12153
12154         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
12155         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
12156           height from system
12157         * Theme.cs: No longer returns hardcoded menu height, instead calls
12158           new driver method
12159         * Form.cs (OnLoad): Scaling happens before triggering Load events 
12160           on MS (# 78257)
12161
12162 2006-05-01  Mike Kestner  <mkestner@novell.com>
12163
12164         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
12165
12166 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
12167
12168         * TextBoxBase.cs: Removed Fixme
12169         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
12170
12171 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
12172
12173         * XplatUIX11.cs:
12174           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
12175             the rectangle relative to the parent, considering borders. We
12176             don't really want that.
12177           - ScrollWindow: Fixed warning to be more understandable
12178         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
12179           scrollbars and scroll only the visible area
12180         * RichTextBox.cs: Removed debug output
12181
12182 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12183
12184         * NumericUpDown.cs (Text): Just use base
12185         * UpDownBase.cs: Ensure txtView is created before using it
12186
12187 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
12188
12189         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
12190           casting to IntPtr to avoid 64bit overflow errors
12191
12192 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12193
12194         * Control.cs:
12195           - AllowDrop: Don't force handle creation.
12196           - CreateHandle: Added call to tell driver if we're allowed to drop
12197
12198 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12199
12200         * FileDialog.cs: Remember the last directory not only for the
12201           current instance but also for new FileDialog instances.
12202
12203 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
12204         
12205         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
12206           broke sending async messages
12207
12208 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
12209
12210         * XplatUIX11.cs:
12211           - ScrollWindow: Fixed method. We finally generate expose events again
12212             for scrolled areas. This was causing 'garbage' when scrolling
12213             textbox and other controls that used ScrollWindow
12214           - Switched from using the regular queue for paint events to the MS 
12215             model of 'generating' paint events when the queue is empty.
12216             We use the new XQueueEvent.Paint subclass to store which windows
12217             need painting.
12218           - AddExpose now takes the x/y/width/height of the exposed area
12219             and inserts the window into the paint queue if not already there
12220           - InvalidateWholeWindow: Switched to use new AddExpose method
12221           - UpdateMessageQueue: Added which queue to monitor for paint events
12222           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
12223             the unlikely case nothing above handles it. We reset the expose
12224             pending states to get them off the queue.
12225           - GetMessage: Now pulls a paint event if no other events are in the
12226             queue
12227           - Invalidate: Switched to new AddExpose method
12228           - PeekMessage: Updated to understand pending paint events
12229           - UpdateWindow: Fixed logic bug. We were only updating if the window
12230             didn't need updating. Also switched to sending WM_PAINT directly,
12231             like MS does.
12232         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
12233           and random access Remove(). The random access is needed to handle
12234           UpdateWindow() where a WM_PAINT is sent directly without accessing
12235           the queue.
12236         * ScrollBar.cs: Added Update() calls to cause immediate updates to
12237           allow for better feedback when scrolling. Scrollbars are small and
12238           the immediate update should make it 'feel' more responsive without
12239           slowing things down. ScrollBar still needs it's invaliate logic
12240           updated to not always invalidate the whole bar on certain changes.
12241
12242 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12243
12244         * Control.cs:
12245         (BackColor): if the control does not support a transparent background,
12246         return the default backcolor when the parent backcolor is transparent.
12247
12248 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
12249
12250         * Application.cs: Updated to new StartLoop/GetMessage API
12251         * RichTextBox.cs: Provide some output on RTF parsing errors
12252         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
12253           new queue_id argument to GetMessage and PeekMessage to allow faster
12254           handling of per-thread queues in drivers.
12255         * Hwnd.cs: Added Queue tracking and property
12256         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
12257         * XEventQueue.cs: Added thread trackingA
12258         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
12259         * XplatUIX11.cs:
12260           - Implemented new per-thread queue
12261           - GetMessage: Fixed return/break behaviour on several cases. We were
12262             returning stale messages in some cases, instead of just processing
12263             the next message
12264
12265 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12266
12267         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
12268
12269 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
12270
12271         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
12272           fixed off-by-one comparisons between Width/Height and Right/Bottom.
12273
12274 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12275
12276         * PropertyGridView.cs: Fix drop down width.
12277
12278 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12279
12280         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
12281           a mess in DrawToolBar, so I removed one of them.
12282
12283 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12284
12285         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
12286           needed (clip). Otherwise we get artifacts.
12287
12288 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12289
12290         * FixedSizeTextBox.cs: Added constructor to allow specifying which
12291           dimension is fixed
12292         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
12293           and switched FixedSizeTextBox to only be fixed vertical (#78116)
12294         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
12295           if it matches the scale base font (avoids unneeded scaling)
12296
12297 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12298
12299         * X11DesktopColors.cs: One gtk_init_check should be enough
12300
12301 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
12302
12303         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
12304           match MS behaviour
12305
12306 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12307
12308         * TextBoxBase.cs: 
12309           - Generate OnTextChanged for Backspace even if we're only deleting
12310             the current selection
12311           - When setting the Text property, only select all text if the
12312             control does not have focus when it is being set. Otherwise
12313             just place the cursor at the beginning of the control
12314
12315 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12316
12317         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
12318           Added a little helper to draw PropertyGrid ToolBar with a different
12319           border and a different BackColor.
12320         * PropertyGrid.cs: Some background parts didn't get painted with the
12321           correct background color. Added a class that helps us to draw the
12322           correct border for PropertyGridView and a class that helps us to
12323           draw ToolBars with a different backcolor
12324         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
12325
12326 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
12327
12328         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
12329         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
12330
12331 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12332
12333         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
12334           into the palette entries. Also, since we're working on a copy
12335           we needed to copy the palette back onto the bitmap.
12336         * Cursor.cs: Same fix as XplatUIWin32.cs.
12337
12338 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
12339
12340         * ImageListStreamer.cs: Need to read the var (or we're off)
12341
12342 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12343
12344         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
12345           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
12346           TextBoxBase.cs: Unused var fixes
12347         * AxHost.cs: Small 2.0 fix
12348         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
12349           as it seems that is what at least Metacity expects. This will make
12350           icons show up on 64bit platforms. We still have some 64bit size
12351           issues, though, since the startup app window size still won't match.
12352
12353 2006-04-25  Mike Kestner  <mkestner@novell.com>
12354
12355         * *.cs: cleanup newly reported exception var unused warnings.
12356
12357 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12358
12359         * ThemeWin32Classic.cs: Button image alignment now matches exactly
12360           ms
12361
12362 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12363
12364         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
12365           image. The image position is always the same, no matter if the
12366           button is pressed or not.
12367
12368 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12369
12370         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
12371           selection and set the correct filename for SaveFileDialog.
12372           Patch by Emery Conrad.
12373
12374 2006-04-24  Mike Kestner  <mkestner@novell.com>
12375
12376         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
12377         check for item.X outside the ClientRect instead of item.Y. Fixes
12378         #78151.
12379
12380 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12381
12382         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
12383         trust that value blindly and do some sanity check. Fixes bug #77814.
12384
12385 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12386
12387         * ImageListStreamer.cs: save the mask as a 1bpp image.
12388
12389 2006-04-21  Mike Kestner  <mkestner@novell.com>
12390
12391         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
12392         pass Checked and Indeterminate to the Theme Engine. Improve
12393         encapsulation with ListBox.
12394         * ListBox.cs: Keep a StringFormat instead of calculating it every item
12395         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
12396         nested types.  Move all CheckState functionality to CheckedListBox.
12397         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
12398         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
12399         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
12400         single base list. Fix scrollbar sizing and placement to mirror MS.
12401         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
12402         used.
12403         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
12404         for CheckedListBox by using new DrawItemState info.  Center the
12405         checkboxes on the items. Use new StringFormat property.
12406
12407 2006-04-18  Jackson Harper  <jackson@ximian.com>
12408
12409         * Form.cs: MdiChildren don't do default locations the same way as
12410         regular forms.  This prevents a crash when trying to position the
12411         mdi windows.
12412
12413 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
12414
12415         * PropertyGridTextBox.cs: Formatting, copyright
12416         * PropertiesTab.cs: Formatting
12417         * PropertyGrid.cs: Formatting
12418         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
12419           click toggling of values
12420           
12421 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
12422
12423         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
12424         * Control.cs (.ctor): verify_thread_handle is static, don't reset
12425           every time a control is created
12426         * Application.cs: Removed obsolete EnableRTLMirroring method
12427
12428 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
12429
12430         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
12431         SelectedIndex to -1. Fixes bug #78121.
12432
12433 2006-04-17  Jackson Harper  <jackson@ximian.com>
12434
12435         * Binding.cs: Handle null values for Current and BindingContext.
12436         This occurs when binding is a little delayed.
12437         * CurrencyManager.cs: return null for Current when there are no
12438         items in the list.
12439         - Hookup to the listchanged event on the DataView and update
12440         bindings when the list is changed.  This fixes late binding of
12441         controls.
12442
12443 2006-04-17  Jackson Harper  <jackson@ximian.com>
12444
12445         * X11Dnd.cs:
12446         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
12447         Ringenbach.
12448
12449 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
12450
12451         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
12452           place
12453         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
12454           with the correct ButtonState
12455
12456 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
12457
12458         * XplatUIX11.cs: Improved distinguishing between window types to
12459           tell the WM a type closer to what the app wants (Fixes #78107)
12460
12461 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12462
12463         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
12464           GrabHandle
12465
12466 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12467
12468         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
12469           drawing code to reflect the size grip changes
12470
12471 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12472
12473         * ImageListStreamer.cs: fix handling of the mask that follows the main
12474         bitmap when deserializing and serialize it properly. The generated mask
12475         should better be a 1bpp image, but I'll do that later.
12476
12477 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12478
12479         * FileDialog.cs: Show something in the DirComboBox on *nix if the
12480           path doesn't fit into some of our Current.Places
12481
12482 2006-04-13  Jackson Harper  <jackson@ximian.com>
12483
12484         * ComboBox.cs: Use borders instead of drawing our own decorations,
12485         try to obey correct rules for heights.
12486         * Theme.cs:
12487         * ThemeNice.cs:
12488         * ThemeClearLooks.cs:
12489         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
12490         this is now handled by borders.
12491         - Remove unused DrawListBoxDecorationSize method.
12492         
12493 2006-04-13  Mike Kestner  <mkestner@novell.com>
12494
12495         * MenuAPI.cs: null guarding for the disbled click check fixes crash
12496         reported by Alex.
12497
12498 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12499
12500         * ThemeWin32Classic.cs: 
12501           - Fixed CPDrawStringDisabled
12502           - Corrected drawing of disabled menu items
12503           - Fixed drawing of disabled radio buttons (bug #78095)
12504           - Draw check in a disabled CheckBox with color ControlDark 
12505
12506 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12507
12508         * Form.cs: Use the provided width when calculating the menu size;
12509           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
12510           and ClientSize.Width won't be updated yet
12511         * Application.cs: Use Visible instead of Show() to make form visible,
12512           this way we create the handle later and menusize is considered
12513
12514 2006-04-12  Mike Kestner  <mkestner@novell.com>
12515
12516         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
12517         reporting.
12518
12519 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12520
12521         * TextBox.cs: Implemented context menu
12522
12523 2006-04-12  Mike Kestner  <mkestner@novell.com>
12524
12525         * ListView.cs: implement box selection. fixes #77838.
12526         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
12527
12528 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12529
12530         * XplatUIX11.cs: Added setting of window type when transient window
12531           is created (metacity would move it otherwise)
12532         * X11Structs.cs: Added WINDOW_TYPE atoms
12533         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
12534           background (the control is Opaque but still wants transparent
12535           backgrounds)
12536
12537 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12538
12539         * Control.cs: Added OnPaintBackgroundInternal to allow controls
12540           that set Opaque but don't mean it (like all ButtonBase-derived
12541           controls) to still draw their background
12542         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
12543           the background
12544
12545 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12546
12547         * Control.cs (PaintControlBackground): Set the graphics object
12548           on our PaintEvent to null to prevent it from being disposed
12549           when the PaintEvent gets disposed
12550
12551 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
12552
12553         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
12554         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
12555
12556 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12557
12558         * Control.cs: 
12559           - Added transparency check to BackColor property. Transparent
12560             backgrounds are only allowed if the control styles permit it
12561           - Added recursive painting of parent control background and
12562             foreground if a control with a transparent backcolor is drawn
12563             (Thanks to Tim Ringenback for providing his 'hack' as a base
12564              for this patch) Fixes #77985 and #78026.
12565           - Added Opaque style check before calling OnPaintBackground, no
12566             need to draw the background if the control is opaque
12567           - Removed ControlAccessibleObject owner variable (inherited from
12568             base, no need to define again)
12569           - Added some documentation links explaining the drawing events
12570             and styles
12571
12572 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12573
12574         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
12575           that the affected control is the located at the left border of our
12576           parent (Fixes #77936)
12577
12578 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12579
12580         * TextBoxBase.cs: When rendering disabled or readonly controls,
12581           draw the background with 'Control' instead of 'Window' color as
12582           long as the user hasn't specifically set a color
12583
12584 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12585
12586         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
12587           since that won't be updated if the user types text (only if it's
12588           programatically set)
12589
12590 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12591
12592         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
12593           layout changes do to app-triggered resizes will have the proper
12594           display rectangle for layout
12595
12596 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
12597
12598         * ThemeWin32Classic.cs:
12599           - Make use of the SystemBrushes and SystemPens wherever possible
12600           - Corrected some highlight colors
12601           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
12602             drawing
12603         * Theme.cs: Added Empty field to CPColor struct
12604
12605 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12606
12607         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
12608           is displayed when calculating the display rectangle. Thanks to Mike
12609           for teaching me the err of my ways.
12610
12611 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
12612
12613         * ScrollableControl.cs:
12614           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
12615             (instead of 0,0) and we now return the real width/height instead of
12616             just the clientrectangle, adjusted for padding. The rectangle is
12617             now cached and created by the new CalculateDisplayRectangle method.
12618           - Created new CalculateDisplayRectange method, which basically does
12619             what get_DisplayRectangle() did originally, but now using the 
12620             right edge instead of DisplayRectangle to determine the size of
12621             our scrollbars
12622           - get_Canvas(): Fixed it to properly calculate canvas for 
12623             right/bottom controls which seem to be placed to the right/bottom
12624             of any controls that have a fixed location
12625           - Removed TODO that's taken care of
12626           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
12627             and SetDisplayRectLocation according to new MSDN2 docs
12628           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
12629             event when that is called, this is added for compatibility
12630           - ScrollControlIntoView(): Implemented.
12631           - Switched scrollbars to be implicit, they shouldn't be selectable
12632         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
12633           call it when the active control is set/changed
12634         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
12635         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
12636           implicit_control variable (used for native Win32 message generation)
12637         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
12638           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
12639         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
12640         * XplatUIStructs.cs: Added ScrollBarCommands enum
12641
12642 2006-04-10  Jackson Harper  <jackson@ximian.com>
12643
12644         * ButtonBase.cs:
12645         * CheckedListBox.cs:
12646         * ComboBox.cs:
12647         * DataGrid.cs:
12648         * DataGridView.cs:
12649         * Form.cs:
12650         * GroupBox.cs:
12651         * ListBox.cs:
12652         * PrintPreviewControl.cs:
12653         * ProgressBar.cs:
12654         * PropertyGrid.cs:
12655         * Splitter.cs:
12656         * StatusBar.cs:
12657         * TrackBar.cs:
12658         * UpDownBase.cs: Fixup base event overrides.
12659         
12660 2006-04-06  Mike Kestner  <mkestner@novell.com>
12661
12662         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
12663         all user-initiated value changes to min <= value <= max-thumbsz+1.
12664         (set_Value): check for vert/horiz when calculating new thumb position.
12665         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
12666         like MS does.
12667         (OnMouseMoveSB): refactor the thumb dragging code and refine
12668         invalidation logic to reduce flicker.
12669         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
12670         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
12671         (UpdateThumbPosition): small code readability cleanup
12672
12673 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
12674
12675         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
12676           different
12677
12678 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
12679
12680         * ThemeNice.cs: Use a better graphics effect when a button is pressed
12681
12682 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
12683
12684         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
12685         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
12686           This dramatically reduces the number of Pen.Dispose calls. 
12687           Where possible call ResPool methods only once instead of calling it
12688           over and over again (for example for the same color).
12689
12690 2006-04-06  Mike Kestner  <mkestner@novell.com>
12691
12692         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
12693         Also remove an unused private field on the collection. Fixes #77972.
12694
12695 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
12696
12697         * ThemeNice.cs: Added ToolBar drawing code
12698
12699 2006-04-06  Mike Kestner  <mkestner@novell.com>
12700
12701         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
12702         I'm assuming that means we need to look up the toplevel for the
12703         provided control. Fixes the crash trace in #77911 but exposes another
12704         crash in some strange reflection usage in NDocGui.
12705
12706 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
12707
12708         * ThemeNice.cs: Gave it a little silver touch and added Images
12709           method
12710         * FontDialog.cs: FontDialog is not resizable
12711         * FileDialg.cs: Added SizeGripStyle.Show
12712
12713 2006-04-05  Jackson Harper  <jackson@ximian.com>
12714
12715         * KeyboardLayouts.cs: Remove warning.
12716
12717 2006-04-05  Jackson Harper  <jackson@ximian.com>
12718
12719         * Control.cs: Enable OnPaintInternal so we can use it for drawing
12720         all of our controls instead of Paint +=.
12721         * ListBox.cs:
12722         * ListView.cs:
12723         * MenuAPI.cs:
12724         * MessageBox.cs:
12725         * NotifyIcon.cs:
12726         * ProgressBar.cs:
12727         * ScrollBar.cs:
12728         * Splitter.cs:
12729         * StatusBar.cs:
12730         * TabControl.cs:
12731         * TextBoxBase.cs:
12732         * ToolBar.cs:
12733         * TrackBar.cs:
12734         * UpDownBase.cs:
12735         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
12736         use OnPaintInternal. Remove Width/Height and Visible checks in
12737         paint handler, this is done at a higher level now.
12738         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
12739         * PaintEventArgs.cs: Add a handled flag so controls that don't
12740         want anymore painting after OnPaintInternal can make sure OnPaint
12741         isn't called.
12742
12743 2006-04-05  Mike Kestner  <mkestner@novell.com>
12744
12745         * Form.cs: fix the menu WndProc hacks to respect the native enabled
12746         state of the form, so that we don't process events when Modal dialogs
12747         are up. Fixes #77922.
12748
12749 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
12750
12751         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
12752           checking is done.
12753
12754 2006-04-05  Mike Kestner  <mkestner@novell.com>
12755
12756         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
12757
12758 2006-04-05  Mike Kestner  <mkestner@novell.com>
12759
12760         * ListView.cs (HeaderMouseMove): null guarding for the over column
12761         when setting up the drag_to_index.  Fixes #78015.
12762
12763 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
12764
12765         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
12766           in the taskbar. Transient windows seem to accomplish that.
12767
12768 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
12769
12770         * Form.cs:
12771           - Re-enabled CreateParams.X/Y code for FormStartPosition
12772           - Added code for manual placement when creating the Control
12773           - Incomplete patch to treat MDI forms differently when
12774             setting the ClientSizeCore. (Still need to figure out handling
12775             x/y coords there)
12776         * XplatUIX11.cs:
12777           - When we're explicitly setting the X/Y position of a non-Child
12778             window, let the WM know. Metacity really wants this.
12779
12780 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12781
12782         * ThemeNice.cs: Added CPDrawButton
12783
12784 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12785
12786         * ThemeNice.cs: Changed the color for focused buttons and activated
12787           the arrows for small scroll buttons.
12788
12789 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12790
12791         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
12792           anymore. Changed some method modifiers to protected (virtual)
12793         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
12794           changes
12795         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
12796           Updated drawing of menus, buttons and progressbars; added
12797           CPDrawBorder3D 
12798
12799 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12800
12801         * ImageListStreamer.cs: implemented serialization/deserialization
12802         of the images.
12803
12804 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
12805
12806         * ThemeWin32Classic.cs:
12807           - Removed all the DrawFrameControl stuff; CPDrawButton,
12808             CPDrawCheckBox and CPDrawRadioButton are now handled directly
12809             inside the methods
12810           - Updated and corrected the drawing code of CPDrawButton,
12811             CPDrawCheckBox and CPDrawRadioButton to better match ms
12812           - Updated theme checkbox and radiobutton code to use the CP*
12813             methods
12814
12815 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
12816
12817         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
12818           bug is fixed
12819
12820 2006-03-31  Jackson Harper  <jackson@ximian.com>
12821
12822         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
12823         sometimes.
12824         * UpDownBase.cs: Don't CreateGraphics manually, use a
12825         Refresh. Ideally we would invalidate the correct areas here.
12826
12827 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
12828
12829         * XplatUIX11.cs: 
12830           - We now track the mapping state of windows. If a window (or 
12831             one of it's parents) is not mapped we no longer permit
12832             WM_PAINT messages to be generated since we'd otherwise get 
12833             lots of BadMatch X errors. Jackson did all the work figuring
12834             out the problem.
12835           - Destroying the caret if the window it's contained in is 
12836             destroyed. Can't use regular DestroyCaret method since it
12837             might fall into a drawing function (trying to remove the
12838             caret) and with that generate new BadMatch errors. Again,
12839             Jackson tracked this down.
12840           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
12841             make sure we send the messages to all windows. (The old code
12842             would send the WM_DESTROY to the window, and then all child
12843             windows would be 'gone' because the WM_DESTROY handle lookup
12844             would no longer find the destroyed window)
12845         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
12846         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
12847
12848 2006-03-31  Jackson Harper  <jackson@ximian.com>
12849
12850         * ScrollableControl.cs: Dont recalc if we are not visible.
12851
12852 2006-03-31  Mike Kestner  <mkestner@novell.com>
12853
12854         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
12855         the visibility branch.
12856
12857 2006-03-31  Jackson Harper  <jackson@ximian.com>
12858
12859         * ScrollBar.cs: Cap values when incrementing/decrementing.
12860
12861 2006-03-31  Mike Kestner  <mkestner@novell.com>
12862
12863         * MenuAPI.cs: setup menu.tracker for popup/context menus.
12864         * ToolTip.cs: guard against timer expirations with no active control.
12865         Not sure why it happened.
12866
12867 2006-03-31  Mike Kestner  <mkestner@novell.com>
12868
12869         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
12870         text.
12871         * ToolTip.cs: Position the tooltip based on where the cursor is at
12872         popup time, not at MouseEnter time.  Add a Down state so that we don't
12873         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
12874         positioning offset. Lookup DisplaySize at positioning time, since it
12875         can theoretically change during invocation.
12876         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
12877         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
12878
12879 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12880
12881         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
12882           Fixes behaviour when the Text property of the box is String.Empty
12883
12884 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
12885
12886         * XplatUIX11.cs: Only send mouseleave for our client windows, not
12887           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
12888           a window)
12889
12890 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12891
12892         * FileDialog.cs: Visual enhancement for the popup buttons in 
12893           PopupButtonPanel
12894
12895 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12896
12897         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
12898           code
12899
12900 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
12901
12902         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
12903           highlighted menu items to match ms
12904
12905 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
12906
12907         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
12908
12909 2006-03-30  Mike Kestner  <mkestner@novell.com>
12910
12911         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
12912         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
12913         go active to account for HotLight to Selected transition.
12914         * MenuItem.cs: add internal Selected prop. Fill out the Status
12915         property by calculating it from item info. Add HotLight,
12916         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
12917
12918 2006-03-30  Mike Kestner  <mkestner@novell.com>
12919
12920         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
12921
12922 2006-03-29  Jackson Harper  <jackson@ximian.com>
12923
12924         * Form.cs: Implement TODO.
12925
12926 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
12927
12928         * PrintPreviewDialog.cs: Implemented missing methods and events; still
12929           missing proper dialog setup in the constructor
12930
12931 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
12932
12933         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
12934         * Control.cs:
12935           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
12936           - Fixed ResetBindings and removed TODO
12937           - Added check for cross-thread calls to get_Handle()
12938           - Added Marshaller attribute for set_Font to satisfy class status
12939         * FontDialog.cs: Removed TODOs that seemed implemented
12940         * UpDownBase.cs: Removed unneeded TODO and Fixme
12941         * MessageBox.cs: Implemented support for Default button and removed TODO
12942         * FileDialog.cs: Removed obsolete TODO
12943         * DomainUpDown.cs: Removed obsolete TODO
12944         * ButtonBase.cs: Removed obsolete TODO
12945         * XplatUIWin32.cs: Removed obsolete TODO
12946         * Form.cs:
12947           - Removed obsolete TODO
12948           - Calling CheckAcceptButton when the acceptbutton is changed to allow
12949             internal status updates
12950           - Making sure the active control is selected when the control is created
12951         * CurrencyManager.cs: Removed obsolete TODO
12952
12953 2006-03-29  Mike Kestner  <mkestner@novell.com>
12954
12955         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
12956         of PrintPreviewDialog and RichTextBox.
12957
12958 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12959
12960         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
12961           DarkDark, Light and LightLight colors for a specific color
12962         * ThemeWin32Classic.cs:
12963           - Use Button drawing code to draw RadioButtons and CheckBoxes with
12964             Appearance = Button 
12965           - Make use of the new ResPool helper CPColor
12966           - Draw ProgressBar and StatusBar with correct 3D borders
12967
12968 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12969
12970         * ColorDialog.cs: Return selected color. Fixes bug #77940.
12971
12972 2006-03-28  Mike Kestner  <mkestner@novell.com>
12973
12974         * ListView.cs: fix Icon layout to plan for scrollbar widths when
12975         calculating col/row counts.
12976
12977 2006-03-28  Mike Kestner  <mkestner@novell.com>
12978
12979         * ColumnHeader.cs:
12980         * ListView.cs:
12981         * ListViewItem.cs:
12982         * Menu.cs: 
12983         switch to explicit interface method implementation for some methods
12984         corcompare identifies as inconsistent with MS.
12985
12986 2006-03-28  Mike Kestner  <mkestner@novell.com>
12987
12988         * MainMenu.cs: 
12989         * Menu.cs:
12990         add a few missing methods from the class status output.
12991
12992 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
12993
12994         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
12995           correct.
12996
12997 2006-03-28  Mike Kestner  <mkestner@novell.com>
12998
12999         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
13000
13001 2006-03-27  Mike Kestner  <mkestner@novell.com>
13002
13003         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
13004         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
13005
13006 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
13007
13008         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
13009
13010 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13011
13012         * ThemeWin32Classic.cs:
13013           - GroupBox: Inserted a little gap between the text and the lines
13014             on the right side
13015           - Made the code in CPDrawBorder3D more readable
13016           - Corrected the drawing location of the up and down arrows in 
13017             CPDrawScrollButton
13018
13019 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13020
13021         * ControlPaint.cs: Corrected line widths in DrawBorder for
13022           ButtonBorderStyle Inset and Outset
13023
13024 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13025
13026         * ThemeWin32Classic.cs:
13027           - Rewrote the totally broken CPDrawBorder3D method. That was
13028             one of the main problems for the terrific ThemeWin32Classic
13029             look
13030           - Updated and corrected Button drawing
13031           - Correct the dimensions of the SizeGrip to match ms ones
13032           - Removed a small drawing glitch in DrawComboBoxEditDecorations
13033         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
13034           Border3DStyle.Sunken to match ms.
13035
13036 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
13037
13038         * ThemeWin32Classic.cs: First small part of the "de-uglify
13039           ThemeWin32Classic" effort, SizeGrip
13040
13041 2006-03-24  Jackson Harper  <jackson@ximian.com>
13042
13043         * XplatUIX11.cs: Give a max idle time of one second, this matches
13044         MS and forces an Idle event every second when there are no other
13045         events in the queue.
13046
13047 2006-03-24  Mike Kestner  <mkestner@novell.com>
13048
13049         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
13050         * ListView.Item.cs: fix layout issues with null image lists and images
13051         smaller than checkbox size.
13052         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
13053         mode like MS does.  It's weird, but consistent.  ;-)
13054         Fixes #77890.
13055
13056 2006-03-24  Mike Kestner  <mkestner@novell.com>
13057
13058         * ListView.cs: Scroll wheel support for the item control.  Fixes
13059         #77839.
13060
13061 2006-03-23  Jackson Harper  <jackson@ximian.com>
13062
13063         * ScrollableControl.cs: Special case negative sized areas, not
13064         zero.
13065         * MonthCalendar.cs: Save the rect of the clicked date so we can
13066         use it for invalidation.
13067         - Try to cut down on the number of invalidates
13068         - Invalidate the rect the mouse is over and was over when moving
13069         the mouse, so we get the focus box following the cursor.
13070
13071 2006-03-23  Mike Kestner  <mkestner@novell.com>
13072
13073         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
13074         focus rectangle drawing. Fixes #77835.
13075
13076 2006-03-23  Mike Kestner  <mkestner@novell.com>
13077
13078         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
13079         the if and else if and reverting back to the original == check on the
13080         None conditional.
13081
13082 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
13083
13084         * FontDialog.cs: Update the example panel if the selected index of
13085           the fontListBox changes.
13086
13087 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
13088
13089         * FileDialog.cs: Make FileDialog remember which directory it was in
13090           last in the same execution.
13091
13092 2006-03-22  Mike Kestner  <mkestner@novell.com>
13093
13094         * FileDialog.cs: make the DropDownMenu on the toolbar display
13095         RadioChecks since they are mutually exclusive and that's what MS does.
13096
13097 2006-03-22  Mike Kestner  <mkestner@novell.com>
13098
13099         * Theme.cs: add Color param to CPDrawMenuGlyph.
13100         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
13101         checks and radio marks and arrows are visible on highlighted items.
13102         * ControlPaint.cs: update to use new Theme signature.
13103
13104 2006-03-22  Mike Kestner  <mkestner@novell.com>
13105
13106         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
13107         is active. Fixes #77870.
13108
13109 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
13110
13111         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
13112           to be focused/selected after startup
13113
13114 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
13115
13116         * ColorDialog.cs: 
13117           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
13118             CustomColors and ShowHelp properties
13119           - Some internal rewrites to get better results when using the
13120             ColorMatrix
13121
13122 2006-03-22  Mike Kestner  <mkestner@novell.com>
13123
13124         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
13125         HoverSelection.  Fixes #77836.
13126
13127 2006-03-22  Mike Kestner  <mkestner@novell.com>
13128
13129         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
13130         ToggleButtons.  (De)Sensitize the Back button around a stack count of
13131         1, not 0.  Update ButtonSize based on a pixel count of the win32
13132         control.  Adjust the toolbar size/location for new button size.
13133
13134 2006-03-22  Jackson Harper  <jackson@ximian.com>
13135
13136         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
13137         true.
13138         * ScrollBar.cs: When doing increments and decrements we need to
13139         set the Value property so that ValueChanged gets raised. A
13140         possible optimization here would be to make an internal SetValue
13141         that doesn't invalidate immediately.
13142         * ToolTip.cs: Tooltips get added to their container (when
13143         supplied) so they get disposed when the container is disposed.
13144         - Don't create tooltips for String.Empty. This prevents all these
13145         little 2-3 pixel windows from showing up when running nunit-gui
13146         and driving me mad.
13147         * Form.cs: Don't set topmost when setting the owner if the handles
13148         haven't been created yet.  The topmost set will happen when the
13149         handles are created.
13150
13151 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
13152
13153         * XplatUIX11.cs:
13154           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
13155           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
13156             visible (to allow them to recalculate their sizes)
13157
13158 2006-03-21  Mike Kestner  <mkestner@novell.com>
13159
13160         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
13161         methods. Removed a ton of redundant code.  Still not really happy with
13162         the border rendering, but I think that's mainly because of the
13163         ControlDarkDark being black instead of a dark grey. Depending on how 
13164         close we want to be, we might want to revisit those color choices.
13165         Among the new features added during the refactor were DropDownArrow
13166         pressed rendering, Disabled image rendering.  Proper flat appearance
13167         boundary rendering.  Removed the Divider and Wrapping dividers since I
13168         can't figure out any combination of themes and conditions to make the
13169         MS control draw a horizontal line on a toolbar despite what the
13170         Divider property docs indicate.
13171         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
13172         conditions and incorrect layout.  Updated to coding standard.
13173         * ToolBarButton.cs: refactored layout and positioning code from
13174         ToolBar to here.  Invalidate wherever possible instead of forcing
13175         redraws of the whole toolbar. 
13176         (Known remaining issues: explicit ButtonSize smaller than provided
13177         images.)
13178
13179 2006-03-21  Mike Kestner  <mkestner@novell.com>
13180
13181         * ContextMenu.cs (Show): use the position parameter instead of just
13182         showing at the MousePosition.
13183
13184 2006-03-21  Jackson Harper  <jackson@ximian.com>
13185
13186         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
13187         control handle this.
13188         * TreeNodeCollection.cs: If we are clearing the root node we need
13189         to reset top_node so calcs can still happen.
13190         * ThemeWin32Classic.cs: This is a Flags so we need to check
13191         properly.
13192         
13193 2006-03-21  Jackson Harper  <jackson@ximian.com>
13194
13195         * DataGrid.cs: Create columns when the binding context has been
13196         changed.
13197         * X11Structs.cs: Keysyms are uints.
13198         - Add size to fix build.
13199
13200 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
13201
13202         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
13203           XplatUIOSX.cs: 
13204           - Added ResetMouseHover method to allow controls to retrigger
13205             hovering if they need it more than once
13206           - Implemented MouseHoverTime and MouseHoverSize properties
13207         * Timer.cs: Start() must reset the interval
13208         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
13209           properties
13210
13211 2006-03-21  Jackson Harper  <jackson@ximian.com>
13212
13213         * X11Keyboard.cs: improved layout detection. Move the nonchar
13214         tables into this file.
13215         * KeyboardLayouts.cs: Move the tables into resource files.
13216
13217 2006-03-21  Mike Kestner  <mkestner@novell.com>
13218
13219         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
13220
13221 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
13222
13223         * Mime.cs: Various speed optimizations. Looking up mime types
13224           is now 2 times faster than before
13225
13226 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
13227
13228         * CreateParams.cs: Added internal menu field
13229         * Control.cs: 
13230           - Switched call order for UpdateBounds; now we always call
13231             the one that also takes ClientSize, and we're calculating the 
13232             client size via driver method in the others. The previous
13233             method of tracking client size by difference wasn't working
13234             for forms where even the starting client size wouldn't match
13235             the overall form size (due to borders) (Part of fix for #77729)
13236           - CreateParams(): Do not use parent.Handle unless the handle is
13237             already created. Causes havoc with Nexxia and throws off our
13238             creation of controls
13239         * XplatUIX11.cs:
13240           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
13241           - Switched handling of ConfigureNotify over to new PerformNCCalc 
13242             method (consolidates code)
13243           - Changed RequestNCRecalc to use new PerformNCCalc method
13244           - Added calls to RequestNCRecalc when menus and borders are changed
13245             to allow app to set NC size. (Part of fix for #77729) This matches
13246             when MS send a WM_NCRECALC on Win32 windows.
13247           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
13248             (Part of fix for #77729). This matches what MS does, they also
13249             send that message when the form is made visible.
13250           - XException.GetMessage: Improved usability of X errors by including
13251             a translation of the window into Hwnd and Control class
13252           - Improved debug info for window creation, reparenting and destruction
13253           - Created helper method WindowIsMapped() [Currently not used]
13254         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
13255         * Form.cs:
13256           - CreateParams: Now setting our menu on the new internal menu field
13257           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
13258             avoid calculating the same property twice
13259         * Hwnd.cs:
13260           - Improved usability of ToString() for debugging purposes
13261           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
13262             determine the height of the menu, instead of just the font. This
13263             required to also create a graphics context and to keep a bmp 
13264             around (for performance reasons)
13265
13266 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
13267
13268         * MenuAPI.cs: Added OnMouseUp method
13269         * Form.cs:
13270           - Now remembering the requested client size, avoids size errors
13271           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
13272             instead of base if the menu is active. This is required due to
13273             control now capturing and releasing on down/up and it would
13274             prematurely release our menu capture
13275
13276 2006-03-17  Jackson Harper  <jackson@ximian.com>
13277
13278         * KeyboardLayouts.cs: Add the czech layouts.
13279
13280 2006-03-16  Jackson Harper  <jackson@ximian.com>
13281
13282         * Control.cs: Use the viewport space when sizing not the controls
13283         client size, so things like ScrollableControl that effect the
13284         viewport size (when scrollbars are added) are computed correctly.
13285         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
13286         of ManagerEntrys.
13287         - Handle creating BindingManagers for null data sources.
13288         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
13289         source, otherwise when rows are added they are added to the 'fake'
13290         datasource and we will crash when trying to set the position in
13291         those rows.
13292         - Use Implicit scrollbars on the datagrid so they arent
13293         selectable.
13294         
13295 2006-03-16  Jackson Harper  <jackson@ximian.com>
13296
13297         * Binding.cs:
13298         * InternalWindowManager.cs:
13299         * MdiWindowManager.cs:
13300         * X11Keyboard.cs: I really want Mike to love me again (fix
13301         compiler warnings).
13302
13303 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
13304
13305         * DataGrid.cs:
13306           - OnMouseDown: Switch to editing mode when clicking on the cell
13307                          even if we're clicking on the cell that's currently 
13308                          selected
13309           - ProcessGridKey: Left/Right now wrap like MS.Net does
13310           - ProcessGridKey: Tab now knows to add a new row when tab is
13311                             pressed in the cell of the last column of the 
13312                             last row
13313           - ProcessGridKey: Enter now adds another row  if pressed in the last
13314                             row and selectes the new row, same column cell
13315           - ProcessGridKey: Home/End navigate columns, not rows, like 
13316                             originally implemented
13317           - Broke ProcessKeyPreview code out into an extra Internal method
13318             so it can be called from the edit code
13319         * DataGridTextBox.cs (ProcessKeyMessage):
13320           - Switched to accept Tab keypresses
13321           - Added F2 handling to allow jumping to the end of the edited cell
13322           - Added logic to allow moving caret left/right inside edited cell
13323             and making the edited cell jump when the caret hits cell borders
13324           - Tab and Enter are now passed to the datagrid after being handled
13325         * TextBoxBase.cs:
13326           - Removed capture code now that Control handles it
13327           - set_SelectionStart now ensures caret is visible
13328
13329 2006-03-16  Jackson Harper  <jackson@ximian.com>
13330
13331         * TrackBar.cs: Debackwards the increment/decrement for handling
13332         mouse clicks on the bar with vertical trackbars.
13333         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
13334         bottom to match MS.
13335
13336 2006-03-16  Mike Kestner  <mkestner@novell.com>
13337
13338         * ListView.cs: make shift/ctrl keyboard and mouse selection 
13339         consistent with the MS control. Fix a bug in
13340         SelectedListViewItemCollection.Clear that was pissing me off for the
13341         better part of a day because the collection was being altered
13342         underneath us as we walked the list.
13343
13344 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
13345
13346         * Control.cs: Not sure how we could miss this so long, but it seems
13347           that MS.Net has Capture set all the way from before calling 
13348           OnMouseDown through sending the mouse events until after
13349           OnMouseUp. This will fix DataGrid's selection being set to end
13350           at the location of the MouseUp.
13351
13352 2006-03-15  Jackson Harper  <jackson@ximian.com>
13353
13354         * BindingContext.cs: Check the binding after its added so that it
13355           can initialize the binding managers and hookup to events.
13356         * Binding.cs: Data members seem to sometimes include rows/cols in
13357           the format Row.Column we now take this into account.
13358           - Hookup to the position changed event so we can update the
13359           control when the position has changed in the data set.
13360         * CurrencyManager.cs: Take into account the row/col naming
13361           convention when creating dataset tables.
13362         * BindingContext.cs: Using a newer better way of storing
13363           datasource/datamember pairs.  Hopefully this better matches MS for
13364           looking up binding managers.
13365
13366
13367 2006-03-15  Jackson Harper  <jackson@ximian.com>
13368
13369         * BindingContext.cs: The currency manager needs the data member
13370         name, if the member is a data set we use the name to find the
13371         correct table.
13372         * CurrencyManager.cs: When creating the list prefer an IList over
13373         an IListSource.
13374         - Attempt to create a DataTable from a DataSet (TODO: might need
13375         some better error checking here, although MS doesn't seem to have much)
13376         - If we have a DataTable create a view and use it as our list.
13377
13378 2006-03-15  Mike Kestner  <mkestner@novell.com>
13379
13380         * ListView.cs: keep a matrix of the icon mode layout to facilitate
13381         keyboard navigation. Support Up/Down/Left/Right selection correctly
13382         for all 4 View modes.
13383         * ListViewItem.cs: add internal row/col fields for icon layouts.
13384
13385 2006-03-15  Jackson Harper  <jackson@ximian.com>
13386
13387         * TabControl.cs: Redraw the tabs when we resize so their newly
13388         calculated sizes are drawn on screen.
13389         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
13390         composite characters.
13391         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
13392         - filter events so that composite characters can be created
13393         patches by peter
13394         * X11Structs.cs: Add XIMProperties enum.
13395
13396 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13397
13398         * Control.cs (BringToFront, SendToBack): Don't use window or handle
13399           unless it's created
13400
13401 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13402
13403         * Control.cs (PerformLayout): We don't need to consider visiblity
13404           for anchoring, only for docking. This fixes 'whacky' alignment
13405           in listbox and other controls that use implicit scrollbars after
13406           the previous PerformLayout patch
13407         * ListBox.cs: Switched to use implicit scrollbars
13408           
13409 2006-03-14  Mike Kestner  <mkestner@novell.com>
13410
13411         * ToolBar.cs: 
13412         * VScrollBar.cs:
13413         - chain up the "new event" overrides to base and use
13414         OnEvent to raise them.  Part of fix for bug #76509.
13415
13416 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
13417
13418         * FileDialog.cs: Do not select an item in the parent directory
13419           on backspace
13420
13421 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13422
13423         * Control.cs (PerformLayout): It would seem that we considered
13424           invisible windows for our layout. Not quite the right thing
13425           to do. Now we don't any longer, thereby fixing bug #76889.
13426
13427 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13428
13429         * Control.cs (CanFocus): I goofed. A control can have focus 
13430           even though it's not selectable. Made it match MS docs.
13431
13432 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13433
13434         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
13435           center by default (fixes #76895)
13436         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
13437           all uses of Border3DSides.All with the explicit ORd together
13438           Left|Right|Top|Bottom because I assume that nobody was aware 
13439           that All also implies a center fill. Most places I checked had
13440           a fill right above.
13441         * ProgressBarStyle.cs: Added
13442
13443 2006-03-13  Mike Kestner  <mkestner@novell.com>
13444
13445         * ListView.cs: fix breakage in drag shadow header positioning 
13446         from Peter's csc compilation fix.
13447
13448 2006-03-13  Mike Kestner  <mkestner@novell.com>
13449
13450         * ListView.cs: fix NRE produced by backspacing twice in a focused
13451         FileDialog.
13452
13453 2006-03-13  Mike Kestner  <mkestner@novell.com>
13454
13455         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
13456
13457 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13458
13459         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
13460           be changed
13461         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
13462           the allowed size before making programmatic size changes
13463
13464 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
13465
13466         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
13467           set, metacity is broken and will still use the emty sizes in 
13468           the struct. (Fix for #77089)
13469
13470 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13471
13472         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
13473           WindowExStyles and marked both enums as Flags
13474         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
13475           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
13476           to match WindowStyles split
13477         * XplatUIX11.cs:
13478           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
13479           - Updated to match WindowStyles split
13480         * XplatUIWin32.cs:
13481           - Fixed FosterParent creation, was using ExStyle on the Style field
13482             (This should help with Popup focus issues)
13483           - Updated to match WindowStyles split
13484
13485 2006-03-13  Jackson Harper  <jackson@ximian.com>
13486
13487         * MdiWindowManager.cs: Use the system menu height. Fixes some
13488         strange sizing issues.
13489
13490 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13491
13492         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
13493         * TextBoxBase.cs:
13494           - Scroll to caret after inserting text (#77672)
13495           - Make scroll range one pixel higher, fixes off-by-one error (and
13496             makes underlines visible on the last line)
13497
13498 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
13499
13500         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
13501           the keyboard state from being stuck with keys in 'pressed' state when
13502           focus is switched away via keyboard
13503         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
13504           reset the keyboard if no X11 KeyUp events are expected to come
13505         * X11Structs.cs: Switched type of Visible to bool to match driver
13506
13507 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13508
13509         * TextControl.cs:
13510           - Switched caret to be just 1 pixel wide, matches MS and looks less
13511             clunky
13512           - Moved caret display 1 pixel down from the top of the control
13513             to improve view
13514           - InsertCharAtCharet: Update the selection start if moving the caret
13515             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
13516           - No longer always creating the caret when the caret methods are
13517             called. Only the actual ShowCaret/HideCaret will do that now
13518           - Only setting caret visible if the owner control has focus
13519           - UpdateView: Added invalidation-shortcut logic for center and right 
13520             aligned text. Previously we'd update all according to the left
13521             logic which caused drawing errors. Also fixed height of invalidated
13522             areas, now properly invalidating the whole area (was off-by-one)
13523           - owner_HandleCreated: Always generate the document when the
13524             handle is created; this ensures that 
13525         * TextBoxBase.cs:
13526           - Fixed situation where caret would disappear under the right
13527             window border, also improved scrolling behaviour on left-
13528             aligned textboxes
13529           - Fixed right-aligned textboxes to have a border to the
13530             right instead of the caret being under the right border
13531         * XplatUIX11.cs:
13532           - Switched from 'nested' to simple visible/not visible tracking 
13533             for caret (part of fix for #77671)
13534           - No longer passing through translated FocusIn/FocusOut messages
13535             since we were notifying too often and the wrong windows. Instead
13536             we just notify our focussed window of receiving or loosing focus
13537         * XplatUIWin32.cs: Switched from 'nested' show/hide 
13538           counting for caret to simple visible yes/no behaviour (part of 
13539           fix for #77671)
13540
13541 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13542
13543         * Mime.cs: Remove debug code...
13544
13545 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13546
13547         * MimeGenerated.cs: Removed
13548         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
13549           and subclasses) from /usr/(local/)share/mime and
13550           $HOME/.local/share/mime.
13551
13552 2006-03-10  Jackson Harper  <jackson@ximian.com>
13553
13554         * MdiWindowManager.cs: Recalc the NC area when a window is
13555         maximized/restored so that the menu area is drawn on forms that
13556         don't have a menu.
13557
13558 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13559
13560         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13561           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
13562           us to force a WM_NCCALCRESIZE message being sent. This is needed
13563           for MDI maximizing.
13564
13565 2006-03-10  Jackson Harper  <jackson@ximian.com>
13566
13567         * Form.cs: We need to use the ActiveMenu when calculating menu
13568         height.
13569         - Fix nullref when the window manager hasn't been created yet.
13570         * Control.cs: Fix nullref when we try to bring a control to the
13571         front that has no parent.
13572         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
13573         height.
13574         - Add a dummy item to the maximized menu so it always has the
13575         correct height. Otherwise when there are no menus we don't get our
13576         icon and buttons.
13577         
13578
13579 2006-03-10  Jackson Harper  <jackson@ximian.com>
13580
13581         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
13582         stuff.
13583         * Form.cs: Make the window_state internal so the window managers
13584         can track it.
13585         - When an MDI child is maximized let its window manager create the
13586         main menu (so it can add its icon).
13587         - Notify the window managers of state changes
13588         - Let the window manager paint its buttons and handle button
13589         clicks on the menu when it is maximized.
13590         * InternalWindowManager.cs: Move the prev_bounds into the mdi
13591         window manager, since tool windows don't use it, only mdi windows.
13592         - Tell the main form that we don't want it to handle NCPAINT
13593         itself to avoid extra painting.
13594         - Handle clicks on a maximized windows menu.
13595         - Handle window state changes
13596         - Handle minimize/maximize clicks correctly by setting the window state.
13597         * MdiWindowManager.cs: Add an icon menu that (the menu you get
13598         when clicking on the forms icon).
13599         - New method to create a forms maximized menu. This is its normal
13600         menu + an icon.
13601         - Handle window state changes.
13602         - Handle sizing of maximized windows.  Maximized windows are just
13603         drawn bigger then the parent visible area. All controls are still
13604         there, they are just outside the visible area (this matches windows).
13605         * MdiClient.cs: No scrollbars when a child window is maximized.
13606         - Let the children windows figure out how big they should be when
13607         sizing maximized windows.
13608         - Implement a version of ArrangeIconicWindows somewhat similar to
13609         Windows version.  There are some little differences, but I don't
13610         think any app will rely on the layout of minimized mdi windows.
13611
13612 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13613
13614         * Padding.cs: Several fixes to allow compiling with csc 2.0
13615
13616 2006-03-09  Jackson Harper  <jackson@ximian.com>
13617
13618         * Menu.cs:
13619         * MenuItem.cs: Cheap hack so we can add items to the list without
13620         the events being raised.  This allows adding mdi items during
13621         drawing. TODO: Should probably find a better time to add the items.
13622
13623 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13624
13625         * ThemeWin32Classic.cs:
13626           - CheckBox_DrawText: Added logic to not wrap if not enough space
13627             is available (Fix for bug #77727)
13628           - RadioButton_DrawText: Added logic not to wrap if not enough
13629             space is available (Fix for bug #77727). Also removed some
13630             duplicate code, DrawString always drawing the regular text
13631             before hitting the if statement.
13632
13633 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
13634
13635         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
13636
13637 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13638
13639         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
13640         * ContainerControl.cs: Partial implementation of some 2.0 scaling
13641           methods. Moved the new 2.0 properties into alphabetical order with
13642           other properties and added MonoTODO tags
13643
13644 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13645
13646         * AutoScaleMode.cs: Added. Fix build.
13647
13648 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13649
13650         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
13651           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
13652           and was requiring premature handle creation for calls from above
13653         * Form.cs, Control.cs: Removed handle arguments from calls to
13654           CalculateClientRect()
13655
13656 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13657
13658         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
13659           drag_column.column_rect is MarshalByRef and can't be used that way
13660
13661 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13662
13663         * AxHost.cs: Added deserialization constructor for 
13664           AxHost+State (fixes 77743)
13665
13666 2006-03-09  Mike Kestner  <mkestner@novell.com>
13667
13668         * ListView.cs: 
13669         - Added column drag reordering for details view.
13670         - fixed behavior when mouse is dragged off column and
13671         AllowColumnReorder is false.
13672         * ColumnHeader.cs: clone the format too in Clone.
13673         * Theme.cs: add DrawListViewHeaderDragDetails method.
13674         * ThemeWin32Classic.cs:
13675         - impl new method for drawing drag column shadows and targets.
13676         - support column offset for details mode in DrawListViewItem.
13677
13678 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13679
13680         * TextControl.cs: Reset the char_count when the document is cleared
13681           (Fixes bug reported on mono-winforms mailing list)
13682
13683 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13684
13685         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
13686           of calling base we simply process the key ourselves, since both
13687           DefWindowProc and the handled method would set m.Result. 
13688           (Fixes #77732)
13689
13690 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13691
13692         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
13693           method also moves the window; instead implemented a copy of
13694           Control.ScaleCore (Part of fix for #77456)
13695         * TextBoxBase.cs: 
13696           - Created new CreateGraphicsInternal method to allow providing
13697             a graphics context when no handle is created without triggering
13698             handle creation. (Part of fix for #77456)
13699           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13700         * TextControl.cs: 
13701           - Switched Constructor to require TextBoxBase instead of Control (to
13702             allow uncast access to CreateGraphicsInternal)
13703           - Safeguarded use of owner.Handle property. No longer accessing it
13704             unless the handle is already created.
13705           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13706           - Now triggering a recalc when owning control becomes visible
13707         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
13708           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
13709           premature handle creation (Part of fix for #77456)
13710         * Control.cs:
13711           - We now only destroy our double-buffering buffers when the
13712             control is resized or disposed, but not when visibility
13713             changes. (The code even re-created them twice every time)
13714           - Now requiring a redraw of the buffer on visibility changes
13715             (fixes bug 77654 part 2)
13716           - Not passing OnParentVisibleChanged up unless the control
13717             is visible
13718           - CanFocus: Fixed to match MS documentation
13719           - Focus: Fixed to return actual focus state and to check if
13720             setting focus is legal before setting it
13721
13722 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
13723
13724         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
13725           when to draw focus rectangle by looking at parent focus and
13726           selected state instead. This fixes TabPages on Linux sometimes
13727           having none or multiple focus rectangles.
13728         * XplatUIX11.cs (SetFocus): 
13729           - Don't set the focus if the same window already has focus
13730           - Use SendMessage instead of PostMessage (like it's Win32
13731             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
13732             to match MS behaviour
13733         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
13734           are not selectable.
13735
13736 2006-03-07  Jackson Harper  <jackson@ximian.com>
13737
13738         * PictureBox.cs: Revert line I accidently committed last week.
13739
13740 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
13741
13742         * Control.cs: 
13743           - Added new IsRecreating and ParentIsRecreating properties to
13744             allow testing if RecreateHandle has been called on ourselves
13745             or one of our parents
13746           - WndProc(WM_DESTROY): If our control handle is being recreated
13747             we immediately need to create the handle when receiving the
13748             destroy, that way our child windows find a valid parent handle
13749             when they themselves are being recreated upon WM_DESTROY receipt
13750             (fix for bug #77654 part 1)
13751         * XplatUIX11.cs:
13752           - DestroyWindow: WM_DESTROY must be sent to our own window before
13753             notifying any child windows. MS documents that child windows
13754             are still valid when WM_DESTROY is received. (Control now relies on
13755             this behaviour)
13756           - Added some fine-grain debug options
13757
13758 2006-03-06  Jackson Harper  <jackson@ximian.com>
13759
13760         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
13761         box and base calculations off this.
13762         * MdiChildContext.cs:
13763         * MdiWindowManager.cs: Don't need to ensure scrollbars here
13764         anymore.
13765         
13766 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
13767
13768         * Splitter.cs: In situations where the affected control is added
13769           to the parent's control list after the splitter, we would not
13770           populate affected. Now we try populating it on mousedown, if
13771           it's not already set, and force it to be re-set whenever our
13772           parent changes.
13773
13774 2006-03-03  Matt Hargett  <matt@use.net>
13775
13776         * Control.cs: implement Control.Padding
13777         * Padding.cs: -Padding.All returns -1 when constructing with the
13778         implicit default ctor
13779         -Padding.ToString() matches MS.NET
13780         * ContainerControl.cs: implement
13781         ContainerControl.AutoScaleDimensions
13782         * ListControl.cs: implement ListControl.FormattingEnabled
13783         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
13784         * ButtonBase.cs:
13785         * TabPage.cs: Implement UseVisualStyleBackColor.
13786         * PictureBox.cs: Implement PictureBox.InitialImage.
13787
13788 2006-03-03  Mike Kestner  <mkestner@novell.com>
13789
13790         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
13791         event declarations to proxy to base event.
13792         * ListViewItem.cs: update to use ItemControl.
13793         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
13794         * ThemeWin32Classic.cs: update to new ListView theme API and fix
13795         column header label rendering for 0 width columns.
13796
13797 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
13798
13799         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
13800           that causes the control to be created. Fixes #77476.
13801
13802 2006-03-02  Jackson Harper  <jackson@ximian.com>
13803
13804         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
13805         expose_pending.
13806
13807 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
13808
13809         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
13810           passed in for the EventArgs (fixes #77690)
13811
13812 2006-03-01  Jackson Harper  <jackson@ximian.com>
13813
13814         * ScrollBar.cs: Refresh afterbeing resized.
13815
13816 2006-02-28  Mike Kestner  <mkestner@novell.com>
13817
13818         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
13819         Clean up a tracker compile warning.
13820         * MenuItem.cs: add internal PerformPopup method.
13821         [Fixes #77457]
13822
13823 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
13824
13825         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
13826           implicit expose) when the text is set to null
13827
13828 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
13829
13830         * RichTextBox.cs (FlushText): When newline is true, we always
13831           need to split the line, even if no text is on it and we may
13832           never eat newlines. (Fixes #77669)
13833
13834 2006-02-28  Mike Kestner  <mkestner@novell.com>
13835
13836         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
13837         and set Selected instead.
13838         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
13839         collections.
13840
13841 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
13842
13843         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
13844
13845 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
13846
13847         * FontDialog.cs:
13848           - Got rid of the panel. All controls are now directly added to
13849             the dialog form
13850           - It is now possible to set a font with the Font property
13851           - MinSize and MaxSize property do now what they should
13852           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
13853           - Searching and selecting a font with the font textbox works now,
13854             the same applies to the style and size textbox
13855           - Draw the correct 3D border in the example panel
13856           - Fixed a little mem leak (unused fonts didn't get disposed)
13857           - Many other internal updates/rewrites...
13858           - Fix typo
13859
13860 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
13861
13862         * TextControl.cs: 
13863           - InsertRTFFromStream: Added 'number of characters inserted' argument
13864           - set_SelectedRTF: Now using the number of characters to calculate
13865             the new location for the selection and cursor (x/y cannot be used
13866             due to potentially already wrapped text)
13867
13868 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
13869
13870         * TextControl.cs: Added property and implemented means to allow 
13871           disabling recalculation of a document (can be used to speed up
13872           multiple inserts and is needed to make RTF inserts predictable, see
13873           bug #77659)
13874         * RichTextBox.cs: Using the new NoRecalc property of Document to
13875           keep x/y insert locations predictable. Also makes it faster inserting
13876           large chunks of RTF
13877
13878 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
13879
13880         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
13881           it's easier for a child control to handle the other messages without
13882           having to duplicate the special functionality
13883         * TextBoxBase.cs
13884           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
13885             code to handle processing the key ourselves, in order to get 
13886             access to the result of KeyEventArgs.Handled. We now only call 
13887             ProcessKey if they key hasn't been handled already. Fixes #77526.
13888           - set_Text: If null or empty string is given, just clear the 
13889             document. Fixes part of #77526
13890
13891 2006-02-27  Jackson Harper  <jackson@ximian.com>
13892
13893         * SizeGrip.cs: Paint the background color before painting the grip
13894         so things look right.
13895         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
13896
13897 2006-02-27  Mike Kestner  <mkestner@novell.com>
13898
13899         * ListView.cs:
13900           - Restructure layout and invalidation model to remove a ton of
13901           flicker from the control and speed up performance in general.
13902           - Add manual column resize, flickers like crazy, but I already have
13903           some ideas on how I'll fix that. (#76822)
13904           - Merge the three Icon-based views into a single layout method.
13905           - Move item selection interaction logic from the item since 
13906           interaction with the collections is more appropriate to the view.
13907           - Deselection on non-item clicks.
13908         * ListViewItem.cs:
13909           - Encapsulate most of the layout. Add some internal props to trigger
13910           layout.  Move to a model where Items invalidate themselves instead
13911           of just invalidating the whole control every time something changes.
13912           - Invalidate on Text/Caption changes.
13913           - switch to an offset based layout model to avoid having to absolute
13914           position every element on item moves.
13915           - correct checkbox layout to conform to MS layout.
13916         * ThemeWin32Classic.cs:
13917           - refactor some column header drawing code.
13918           - fix string justification for column headers (#76821)
13919           - make SmallIcon labels top justified for compat with MS impl.
13920         * ThemeClearlooks.cs:
13921           - adjust to new ListViewItem internal checkbox bounds api.
13922
13923 2006-02-27  Jackson Harper  <jackson@ximian.com>
13924
13925         * Control.cs:  Change where implicit controls fall in the zorder.
13926         They are now on top of all children.
13927         - Synced AddImplicit code with Add
13928         - Removed unused enumerator.
13929         * SizeGrip.cs: Remove the TODO as its been TODONE.
13930
13931 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
13932
13933         * TextControl.cs(Insert): Combine the last lines unless the insertion
13934           string ends with \n\n, otherwise we leave one line too many (Fixes
13935           something I noticed with the testapp for #77526; the bug itself was
13936           already fixed in the previous checkin)
13937
13938 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
13939
13940         * RichTextBox.cs:
13941           - SelectionColor and SelectionFont methods no longer set absolute
13942             styles. Instead, the keep font or color respectively (This 
13943             resolves a long-standing FIXME in the code)
13944           - When flushing RTF text, the insert code now considers text trailing
13945             behind the insertion point (Fixes the bug where when replacing
13946             the selected text via SelectedRTF the remainder of the line behind 
13947             the selection would stay on the first insertion line)
13948         * TextBoxBase.cs:
13949           - AppendText now updates the selection points after inserting text
13950           - AppendText now ensures that the last tag (sometimes 0-length) of
13951             the document is used for the style information (Fixes part of 
13952             bug #77220)
13953         * TextControl.cs:
13954           - Created new FontDefiniton class to allow describing partial style
13955             changes
13956           - StreamLine() now takes a lines argument, to allow it to decide
13957             whether an encountered zero-length tag is the last in the document
13958             (which must be kept to not loose the font/color contained in it,
13959             for later appends)
13960           - Created Combine() and Split() methods for Marker structs, to 
13961             support marker updates due to reformatted documents (soft line
13962             wraps)
13963           - Implemented Document.CaretTag setter
13964           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
13965             of the last line (Not the cause, but also exposed by bug #77220)
13966           - Added LineTag argument to InsertString method, to allow callers
13967             to force a certain tag to be used (required to force use of the
13968             trailing zero-length tag of a document)
13969           - Now updating markers in Combine(), to avoid stale tag markers
13970           - Added some method descriptions to aid maintenance
13971           - Implemented new FormatText concept, allowing additive/subtractive
13972             formatting by only specifying the components that are to be 
13973             changed. This was needed for resolving the RTB.SelectedColor/
13974             RTB.SelectedFont fixmes
13975           - Added Break() support method to allow breaking up linetags (used
13976             for partial formatting)
13977           - Added GenerateTextFormat() method. It is used for partial 
13978             formatting and allows to generate a full font/color from given
13979             attributes and an existing tag.
13980
13981 2006-02-26  Jackson Harper  <jackson@ximian.com>
13982
13983         * XplatUIX11.cs:  Use the correct caption height.
13984         - Translate hittest coordinates to screen coords to match MS.
13985         * XplatUIWin32.cs: When we create MDI windows we need to reset
13986         some of the style flags, so we get a nice blank window, and can
13987         draw all the decorations ourselves.
13988         - Set a clipping rectangle on the non client paint event, the
13989         window manager drawing code needs one.
13990         * Form.cs: The window manager needs to know when the window state
13991         has been updated.
13992         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
13993         don't need to factor in border and title sizes in these
13994         methods. TODO: Remove the args and fix the call points.
13995         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
13996         properly.
13997         - Let the driver set the cursors.
13998         - Improve active window handling
13999         - Correct sizes for title bars and buttons.
14000         - Match MS drawing better
14001         * MdiWindowManager.cs: We don't need to handle border style
14002         updates specially anymore.
14003         - Check for scrollbars when windows are done moving
14004         - Handle Active properly.
14005         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
14006         correctly. I am spewing the exception though, so we don't hide the
14007         bugs.
14008         
14009 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
14010
14011         * DataGridViewRowPostPaintEventArgs.cs,
14012           DataGridViewCellPaintingEventArgs.cs,
14013           DataGridViewRowCollection.cs,
14014           DataGridViewRowPrePaintEventArgs.cs,
14015           DataGridViewCell.cs: Clear a few warnings and implement a few
14016           exceptions that should be thrown.
14017
14018 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
14019
14020         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
14021           'inheriting' our parent's (non-default) cursor. (Part of
14022            the fix for #77479)
14023
14024 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
14025
14026         * XplatUIX11.cs: Fixed cast to make csc happy
14027
14028 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
14029
14030         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
14031           it's for the client area (part of fix for #77479 and needed
14032           for MDI window cursor handling)
14033         * XplatUIX11.cs
14034           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
14035             the appropriate default cursors and also passing the message
14036             up the parent chain 
14037           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
14038             for non-client areas
14039
14040 2006-02-15  Jackson Harper  <jackson@ximian.com>
14041
14042         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
14043         is a real MDI window
14044
14045 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
14046
14047         * X11DesktopColors.cs: Instead of checking the desktop session
14048           string for "KDE" check if it starts with "KDE"
14049
14050 2006-02-10  Jackson Harper  <jackson@ximian.com>
14051
14052         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
14053         systems).
14054
14055 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
14056
14057         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
14058           errors
14059         * ColorDialog.cs:
14060           - Got rid of the panel. All controls are now directly added to
14061             the dialog form
14062           - Changed to mono coding style
14063
14064 2006-02-10  Jackson Harper  <jackson@ximian.com>
14065
14066         * InternalWindowManager.cs: We don't need the set visibility to
14067         false hack anymore now that peter has written beautiful shutdown
14068         code.
14069
14070 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
14071
14072         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
14073           where already explicitly destroyed
14074
14075 2006-02-10  Jackson Harper  <jackson@ximian.com>
14076
14077         * MdiClient.cs: Handle the case where windows are too high or to
14078         the left and we need scrollbars.
14079
14080 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
14081
14082         * MimeIcon.cs: Added some icons
14083         * FileDialog.cs:
14084           - Fixed bug #77477
14085           - Got rid of the panel. All controls are now directly added to
14086             the dialog form
14087           - Changed to mono coding style
14088           - On Linux "My Computer" and "My Network" will now show some
14089             more usefull information. A new class, MasterMount, gathers
14090             this information from /proc/mount. Updated MWFFileView to make
14091             use of this information
14092           - Fixed a bug that caused FileDialog to crash when
14093             ".recently_used" file had a zero size
14094           - FilterIndex does now what it should
14095           - Some Refactoring
14096         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
14097             FileDialog changes
14098
14099 2006-02-09  Jackson Harper  <jackson@ximian.com>
14100
14101         * ComboBox.cs: Don't touch if null.
14102
14103 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
14104
14105         * Cursor.cs: 64bit safeness fix
14106         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
14107
14108 2006-02-09  Jackson Harper  <jackson@ximian.com>
14109
14110         * Form.cs: If a form is made into an MDI form update the styles so
14111         all the props can get set correctly.
14112         - Kill the mdi_container when we dont need it anymore.
14113         * InternalWindowManager.cs: Add missing NOT
14114
14115 2006-02-08  Jackson Harper  <jackson@ximian.com>
14116
14117         * InternalWindowManager.cs: Respek clipping when drawing MDi
14118         decorations.
14119
14120 2006-02-08  Jackson Harper  <jackson@ximian.com>
14121
14122         * Hwnd.cs: Add bits to track non client expose events.
14123         * XplatUIX11.cs: Track non client expose events on the hwnd. This
14124         gives us a proper invalid rect and will allow for some nice
14125         optimizations with NC client drawing
14126         - MDI windows are children windows, so move their style handling
14127         into the child window block.
14128         * InternalWindowManager.cs: Remove a state reset that was
14129         getting invoked at the wrong time. Fixes managed windows getting
14130         into a 'stuck' captured state.
14131
14132 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
14133
14134         * TextControl.cs (Document.ctor): Now initializing 
14135           selection_anchor. Fixes #77493
14136
14137 2006-02-07  Jackson Harper  <jackson@ximian.com>
14138
14139         * TrackBar.cs: The increment/decrements were backwards.
14140
14141 2006-02-07  Mike Kestner  <mkestner@novell.com>
14142
14143         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
14144         to the instance itself.
14145
14146 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
14147
14148         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
14149           on ulongs and pointers, the size differs between 32bit and 64bit
14150           systems. 
14151
14152 2006-02-07  Mike Kestner  <mkestner@novell.com>
14153
14154         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
14155         for 64 bit platforms to work around a metacity bug. 
14156
14157 2006-02-07  Jackson Harper  <jackson@ximian.com>
14158
14159         * TrackBar.cs: Process the input keys we need, and hookup to
14160         KeyDown instead of using WndProc, so we get key messages.
14161
14162 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
14163
14164         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
14165           machine we're on. 
14166         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
14167           we need to translate the XdndVersion atoms array before sending it
14168
14169 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
14170
14171         * XplatUIX11.cs: 
14172           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
14173             number of bits for the property, not the number of bytes. The
14174             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
14175             but would not crash since it specified 8 bits instead of 4 bits)
14176           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
14177             defined as XID -> long in the C headers)
14178           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
14179             references since those are now IntPtr to begin with
14180           - Switched all Atom.XXX 'int' casts to IntPtr casts
14181           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
14182           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
14183           - Added XChangeActivePointerGrab DllImport (for X11DnD)
14184         * X11Structs.cs:
14185           - Changed 'int' type for Atoms in XEvent structures to IntPtr
14186           - Changed atom in HoverStruct to be IntPtr
14187         * X11DnD.cs:
14188           - Removed local DllImports, switched code to use those from XplatUIX11
14189           - Removed/fixed casts related to the switch of Atom to be a IntPtr
14190
14191 2006-02-06  Mike Kestner  <mkestner@novell.com>
14192
14193         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
14194         method signatures in the import region.  There may still be some
14195         lingering struct marshaling issues, as I didn't drill down into those.
14196         Yet.
14197
14198 2006-02-06  Jackson Harper  <jackson@ximian.com>
14199
14200         * ComboBox.cs: Dont manually set the top_item, this is computed
14201         when the scrollbar position is set.
14202
14203 2006-02-06  Mike Kestner  <mkestner@novell.com>
14204
14205         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
14206         startup crashes on amd64.  There's other fixes needed.  All pinvoke
14207         usage of Atom needs to be mapped to IntPtr for example.  And there are
14208         likely other int/long issues to be addressed.
14209
14210 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
14211
14212         * FileDialog.cs: One more...
14213
14214 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14215
14216         * FileDialog.cs: Next try
14217
14218 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14219
14220         * FileDialog.cs: First part of fix for #77464
14221
14222 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14223
14224         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
14225           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
14226           AcceptButton border drawing.
14227
14228 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
14229
14230         * Form.cs: Moved positioning of form after auto scaling is applied,
14231           otherwise it would possibly use wrong form size.
14232
14233 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
14234
14235         * Control.cs (RecreateHandle): No need to re-create any child
14236           controls, the child windows will get destroyed automatically by
14237           the windowing system or driver, and re-created when the handle
14238           is being accessed the first time. Fixes #77456
14239         * Form.cs: No longer setting the form to closing if the handle is 
14240           being recreated. This seems like the right thing to do, don't
14241           have a bug or testcase for this, though.
14242
14243 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14244
14245         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
14246           controls to avoid unwanted side effects
14247
14248 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
14249
14250         * Control.cs: 
14251           - ScaleCore needs to scale the bounds, not the ClientSize of the 
14252             control. Fixes #77416.
14253           - DefaultSize is 0,0 for control
14254         * TextBoxBase.cs: 
14255           - DefaultSize is 100, 20
14256           - SetBoundsCore: Now enforcing the height, no matter if the provided
14257             height is more or less than the preferred one, as long as AutoSize
14258             is on
14259         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
14260
14261 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14262
14263         * Control.cs:
14264           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
14265             call unless both performLayout is true *and* we have a pending
14266             layout change
14267           - ResumeLayout: MS does not completely nest Suspend and Resume,
14268             they bottom out at 0, fixed our code to match that.
14269           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
14270             SetBoundsCore, we were updating even when we shouldn't. This fixes
14271             swf-anchors mis-anchoring when resizing the app fast and lots.
14272           - UpdateDistances: Now only setting the left and top distance if 
14273             we have a parent and are not suspended, this is based on
14274             a suggestion by Don Edvaldson in bug #77355.
14275           - OnVisibleChanged: Fixed logic when to create the control. We may
14276             not create the control if we have no parent or if it's not visible;
14277             switched to using Visible property instead of is_visible field 
14278             since the property also considers parent states. This fixes a bug
14279             when starting Paint.Net
14280
14281 2006-02-02  Jackson Harper  <jackson@ximian.com>
14282
14283         * Form.cs: If the forms handle hasn't been created yet don't call
14284         into xplatui to make it top most, just set the topmost flag on the
14285         form in CreateParams
14286         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
14287
14288 2006-02-01  Jackson Harper  <jackson@ximian.com>
14289
14290         * ScrollableControl.cs: Refactored the Recalculate method a
14291         little, this wasn't handling all the variants of bottom and right
14292         bars needed to be added and added/removed based on their
14293         counterparts being added/removed (which changes the drawable
14294         size). Also we special case client widths and heights of 0 and
14295         don't add the scrollbar for those.
14296
14297 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
14298
14299         * XplatUIX11.cs: 
14300           - Added method to get AbsoluteGeometry(); currently unused, but might
14301             be used in the future, if we try again to figure out toplevel
14302             coordinates with some more crappy window managers
14303           - Added FrameExtents() method to retrieve the WM set decoration size
14304           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
14305             to deal with at least KDE, FVWM and metacity (Fixes #77092)
14306         * Hwnd.cs: 
14307           - Added whacky_wm tracking var for metacity
14308           - Added logic to have default menu height if the actual menu height
14309             has not yet been calculated (part of fix for #77426)
14310         * Form.cs: Keep track whether client size has been set and re-set 
14311           it if a menu is added/removed afterwards (Fixes #77426)
14312
14313 2006-01-31  Jackson Harper  <jackson@ximian.com>
14314
14315         * Control.cs: When a new Site is set on the component attempt to
14316         pull the AmbientProperties from it.
14317
14318 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
14319
14320         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
14321           in the background of the owning form. Fixes #77332
14322
14323 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14324
14325         * MimeIcon.cs: Fix for #77409
14326
14327 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14328
14329         * XplatUIX11GTK.cs: Initial import
14330
14331 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
14332
14333         * FixedSizeTextBox: fixes class signature
14334
14335 2006-01-30  Jackson Harper  <jackson@ximian.com>
14336
14337         * FixedSizeTextBox.cs: New internal class that represents a
14338         textBox that will not be scaled.
14339         * TreeView.cs:
14340         * ComboBox.cs:
14341         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
14342         standard TextBox.
14343                 
14344 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
14345
14346         * XplatUIX11.cs: Retrieve default screen number instead of
14347           assuming 0. Attempted fix for #77318
14348
14349 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
14350
14351         * XplatUIWin32.cs: 
14352           - GetWindowPos: When a window is parented by FosterParent, use 
14353             the desktop instead of FosterParent as the base to get coordinates
14354           - CreateWindow: Don't make FosterParent the parent window for Popups
14355             if we don't want a taskbar entry, Popups automatically don't get one
14356         * Hwnd.cs: Need to call remove to actually remove the key from the
14357           hash table
14358
14359 2006-01-30  Mike Kestner  <mkestner@novell.com>
14360
14361         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
14362
14363 2006-01-30  Jackson Harper  <jackson@ximian.com>
14364
14365         * TreeView.cs:
14366         * TreeNode.cs: Raise events no matter how the treenode is
14367         checked. Patch by Don Edvalson.
14368
14369 2006-01-30  Jackson Harper  <jackson@ximian.com>
14370
14371         * TreeNode.cs: Signature fix.
14372
14373 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
14374
14375         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
14376
14377 2006-01-20  Mike Kestner  <mkestner@novell.com>
14378
14379         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
14380         event forwarding when menus are active.
14381         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
14382         Most of the patch is pdb's with a little rework.
14383
14384 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14385
14386         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
14387           Removed GetMenuDC and ReleaseMenuDC methods; replaced
14388           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
14389         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
14390         * InternalWindowManager.cs: Added use of PaintEventStart/End to
14391           handling of WM_NCPAINT message, now passing the PaintEventArgs to
14392           the PaintWindowDecorations method
14393         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
14394         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
14395         * MenuAPI.cs: Made tracker window invisible
14396         * XplatUIWin32.cs:
14397           - Removed GetMenuDC and ReleaseMenuDC methods
14398           - Implemented the client=false path for PaintEventStart and
14399             PaintEventEnd
14400
14401 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14402
14403         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
14404         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
14405           styles
14406         * Form.cs: 
14407           - MaximizeBox, MinimizeBox: Recreate the handle when setting
14408             the style
14409           - CreateParams: Reworked the styles to match MS look'n'feel,
14410             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
14411             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
14412
14413 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14414
14415         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
14416           window is not mapped, since otherwise every form that's being 
14417           created is considered minimized, which is wrong.
14418         * Form.cs: Catching the exception and returning our internal value
14419           instead
14420
14421 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14422
14423         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
14424           SetWindowMinMax() to have means to tell the driver about the minimum,
14425           maximum and maximized state window sizes. (Part of the fix for #76485)
14426         * Form.cs:
14427           - Implemented tracking of minimum and maximum window size, now calling
14428             new SetWindowMinMax() driver method to tell the driver (Part of the
14429             fix for #76485)
14430           - Finished handling of WM_GETMINMAXINFO method, now setting all values
14431             (Completes fix for #76485)
14432           - Calling new SetWindowMinMax driver method when the handle for a 
14433             form is created, to make sure the driver knows about it even if
14434             the values have been set before the window was created
14435           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
14436             to avoid messing up our anchoring calculations (partial fix
14437             for #77355)
14438         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
14439         * XplatUIX11.cs:
14440           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
14441           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
14442             (and presumably other freedesktop.org compliant WMs). Left the
14443             assumption unmapped=minimized, needed for SetVisible to work.
14444           - Now setting the window state when creating windows
14445           - Fixed SetVisible to consider/set the window state when mapping
14446             a Form. We cannot set the state before it's mapped, and we cannot
14447             use Form.WindowState once it's mapped (since it would ask the
14448             driver and get 'normal'. Therefore, we grab the state before
14449             mapping, map, and then set state.
14450           - Implmemented SetWindowMinMax method; Metacity does not seem to
14451             honor the ZoomHints, though.
14452         * XplatUIWin32.cs:
14453           - Removed MINMAXINFO (moved to XplatUIStructs)
14454           - Added SetWindowMinMax stub (on Win32 the only way to set that
14455             information is in response to the WM_GETMINMAXINFO message, which
14456             is handled in Form.cs)
14457           - Added logic to SetVisible to set the proper window state when a 
14458             form is made visible (fixes #75720)
14459
14460 2006-01-26  Jackson Harper  <jackson@ximian.com>
14461
14462         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
14463         same way we handle them with Invoke.
14464
14465 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
14466
14467         * Form.cs:
14468           - Added tracking of window state so CreateParams can return
14469             the appropriate style
14470           - Moved setting of WS_CAPTION style in CreateParams to allow
14471             styles without caption
14472         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
14473           control if the TextBox property is accessed. Fixes #77345
14474         * Control.cs:
14475           - get_Created: now uses is_disposed and is_created to determine
14476             return value (suggested by Jackson)
14477           - CreateHandle: No longer exits if the handle is being recreated
14478           - RecreateHandle: If the handle is not yet created call the 
14479             appropriate method to create either control or handle. If the
14480             control is already created CreateHandle will simply exit instead
14481             of just creating the handle
14482         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
14483           now SendMessage WM_DESTROY directly to the control when DestroyWindow
14484           is called.
14485         * XplatUIX11.cs: 
14486           - When DestroyWindow is called, instead of waiting for the 
14487             DestroyNotification from X11, we directly post it to the WndProc
14488             and immediately dispose the hwnd object.
14489             Same applies to DestroyChildWindows, and this obsoletes the
14490             expose_pending tracking. Contrary to Win32 behaviour we destroy our
14491             child windows before our own, to avoid X11 errors.
14492           - Removed the direct sending of WM_PAINT on UpdateWindow
14493         * XplatUIWin32.cs:
14494           - Reworked DoEvents and GetMessage to allow access to internal queue
14495             even when trying non-blocking access to the queue.  Fixes #77335. 
14496             Based on a patch suggestion by Don Edvalson. The new private
14497             GetMessage can now also be used as a backend for a PeekMessage
14498             frontend version.
14499         * XplatUI.cs: Improved debug output for CreateWindow
14500
14501 2006-01-25  Jackson Harper  <jackson@ximian.com>
14502
14503         * Help.cs: Allow param to be null. Patch by Don Edvalson.
14504
14505 2006-01-24  Jackson Harper  <jackson@ximian.com>
14506
14507         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
14508         when we have a MaxDropItems lower then the selected index.
14509
14510 2006-01-24  Jackson Harper  <jackson@ximian.com>
14511
14512         * Control.cs: Don't allow selection of non visible controls, allow
14513         selection of controls without parents.
14514
14515 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14516
14517         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
14518         * DataGridDrawingLogic.cs: Add editing row only when is necessary
14519
14520 2006-01-23  Jackson Harper  <jackson@ximian.com>
14521
14522         * UpDownBase.cs: Make the textbox handle all the selection and
14523         tabbing. This fixes tabing to updown controls.
14524
14525 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14526
14527         * TextBoxBase.cs: fixes exception thown the object was null
14528
14529 2006-01-23  Jackson Harper  <jackson@ximian.com>
14530
14531         * ButtonBase.cs: Just use the base CreateParams. They set
14532         visibility and enabled correctly.
14533         * ComboBox.cs:
14534         * TrackBar.cs:
14535         * MonthCalendar.cs: Lets let the base set as much of the
14536         createparams as possible so we don't have duplicate code all over
14537         the place.
14538
14539 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
14540
14541         * ThemeGtk.cs: Added TrackBar and some experimental code to
14542           get double buffering back
14543
14544 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14545
14546         * DataGrid.cs: Allows row number set internally higher than the last
14547         when creating a new row. Restores the editing functionality.
14548
14549 2006-01-20  Mike Kestner  <mkestner@novell.com>
14550
14551         * MimeIcon.cs: delay Image creation until the icons are accessed
14552         instead of creating 190 scaled images on GnomeHandler startup.
14553
14554 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
14555
14556         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
14557           first call base before processing the event. Fixes #77279
14558
14559 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
14560
14561         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
14562           that the stride for the GDI bitmap would match the stride of
14563           a DIB or a Cursor.
14564
14565 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
14566
14567         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
14568
14569 2006-01-19  Jackson Harper  <jackson@ximian.com>
14570
14571         * ComboBox.cs: Hookup the text controls keydown event so we get
14572         those when the text control has the focus.
14573
14574 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14575
14576         * Label.cs: Now using the base events instead of defining new ones;
14577           this allows us to just call the base properties without having to
14578           duplicate all base property logic 
14579
14580 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14581
14582         * Label.cs: A label by default is not a tabstop (Fixes one of our
14583           failing nunit tests)
14584
14585 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14586
14587         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
14588         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
14589
14590 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14591
14592         * Cursor.cs: Reimplemented creating cursor bitmaps without using
14593           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
14594           This fixes #77218
14595         * XplatUIWin32.cs: 
14596           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
14597             constructor creates images that can't be saved. Part of the fix
14598             for #76103
14599           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
14600           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
14601             bug fix for handling window state in forms properly)
14602
14603 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14604
14605         * ThemeGtk.cs: Simplify ScrollBar drawing
14606
14607 2006-01-18  Jackson Harper  <jackson@ximian.com>
14608
14609         * Splitter.cs: Set the default dock style for the splitter control
14610         in the constructor.
14611
14612 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14613
14614         * ThemeGtk.cs: Corrected StateType and ShadowType for
14615           gtk_paint_box
14616
14617 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14618
14619         * Control.cs: Make use of Theme.DoubleBufferingSupported
14620         * ThemeGtk.cs:
14621           - Added drawing for flat style buttons
14622           - Added ScrollBar drawing
14623
14624 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14625
14626         * ThemeClearlooks.cs: Removed some unneeded code.
14627         * ThemeGtk.cs: First part of ThemeGtk enhancements.
14628
14629 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14630
14631         * LinkLabel.cs: We need to update the hover drawing when
14632           leaving the control as well.
14633
14634 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
14635
14636         * DataGrid.cs: Clicking on non empty areas in the columns
14637            area was giving an exception
14638
14639 2006-01-17  Jackson Harper  <jackson@ximian.com>
14640
14641         * ThemeWin32Classic.cs:
14642         * ListView.cs: Do not draw/clip the headers when the header style
14643         is None.
14644
14645 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14646
14647         * DataGrid.cs: Fixes 77260
14648         
14649 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14650
14651         * DataGrid.cs: Clicking on a column on a empty grid was giving
14652           an exception
14653
14654 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14655
14656         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
14657           or any keypress will crash the grid.
14658
14659 2006-01-17  Mike Kestner  <mkestner@novell.com>
14660
14661         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
14662         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
14663         invisible/previously-visible items.
14664         [Fixes #76909]
14665
14666 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
14667
14668         * ThemeClearlooks.cs:
14669         - Added CL_Draw_Button method; now other theme controls that are 
14670           not derived from button or do not have a button can draw buttons
14671           too
14672         - Updated ComboBox drawing
14673         - Beautified RadioButton drawing
14674         - Corrected drawing of bottom and left tabs
14675         - Beautified DateTimePicker and MonthCalendar
14676         - Added CPDrawButton and CPDrawRadioButton
14677
14678 2006-01-16  Jackson Harper  <jackson@ximian.com>
14679
14680         * ComboBox.cs: Set the initial value of the scrollbar to the
14681         current index. Reduce the numbers of refreshs and IndexOfs called.
14682
14683 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
14684
14685         * FileDialog.cs: When the file listview is focused hitting the
14686           backspace key moves the fileview to the parent directory
14687
14688 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
14689
14690         * Form.cs: 
14691           - Added RecreateHandle call when changing taskbar visibility to 
14692             trigger reparenting in Win32 driver (Fixes #75719)
14693           - If a window has minimize or maximize buttons, it cannot have
14694             a help button
14695         * XplatUIWin32.cs:
14696           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
14697             the toplevel form with FosterParent (A toolwindow not on the
14698             taskbar) (Fixes #75719)
14699           - Made FosterParent a toolwindow
14700
14701 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14702
14703         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
14704
14705 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14706
14707         * ToolTip.cs: If SetToolTip is called from a control and the mouse
14708           is currently over that control, make sure that tooltip_window.Text
14709           gets updated
14710
14711 2006-01-13  Mike Kestner  <mkestner@novell.com>
14712
14713         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
14714
14715 2006-01-13  Jackson Harper  <jackson@ximian.com>
14716
14717         * TreeView.cs: On MS GetNodeAt never actually factors in the X
14718         value passed.  Also redraw the selected node when we recieve
14719         focus, so tabbing between trees works correctly.
14720
14721 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14722
14723         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
14724           ~/.gconf/%gconf-tree.xml, so use
14725           .gconf/desktop/gnome/interface/%gconf.xml
14726
14727 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
14728
14729         * TextControl.cs: Draw text in gray if control is disabled
14730
14731 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
14732
14733         * TreeView.cs: Draw the focus rectangle outside the highlight, to
14734           make sure it's always visible. Fixes #76680.
14735
14736 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
14737
14738         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
14739
14740 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
14741
14742         * PageSetupDialog.cs: Added.
14743         * PrintDialog.cs: Attributes.
14744         * PrintPreviewControl.cs: Updates.
14745         * PrintPreviewDialog.cs: Updates.
14746         
14747 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14748
14749         * Control.cs: Undid my selection check fix, since it's not needed
14750         * TextBoxBase.cs:
14751           - Now considering the presence of hscroll/vscroll when sizing
14752             vscroll/hscroll respectively. Fixed bug #77077
14753           - Added Left/Up/Down/Right to IsInputKey list to prevent
14754             ContainerControl from stealing them. This fixes what I broke
14755             with my last checkin.
14756
14757 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
14758
14759         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
14760           I finally understand how the property can be set without a setter :-)
14761
14762 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14763
14764         * Application.cs:
14765           - Switched RunLoop to use static Message.Create to create a 
14766             Message object
14767           - Added PreProcessMessage call in runloop for keyboard events; this
14768             is part of the fix for #77219, I overlooked this originally in the
14769             MSDN doc for PreProcessMessage
14770         * Control.cs:
14771           - Removed call to PreProcessMessage from handling of keyboard 
14772             messages; it's supposed to be done in the message pump
14773           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
14774             per MSDN documentation.
14775           - IsInputChar: All chars are input chars by default; removed the 
14776             parent calling chain, MS does not document that
14777           - PreProcessMessage: If IsInputChar is true, we want to return false
14778             to allow dispatching of the message
14779           - When selecting the next control, now also check that we're not
14780             selecting ourselves again and therefore return a false positive.
14781         * TextBoxBase.cs:
14782           - Tried to match return values for IsInputKey and ProcessDialogKey
14783             to what MS returns; moved processing of our special keys outside
14784             ProcessDialogKey since MS does not seem to return true on those.
14785           - Moved code that previously was in ProcessDialogKey into new private
14786             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
14787           - Reworked handling of WM_CHAR to not have to duplicate code from
14788             Control.cs anymore, instead we simply call down to base.
14789            
14790 2006-01-12  Jackson Harper  <jackson@ximian.com>
14791
14792         * ComboBox.cs: We always need to refresh the text area when
14793         EndUpdate is called. Fixes the combobox in the file dialog.
14794         * Control.cs: Don't create the creator_thread until the controls
14795         handle is created.  Also in InvokeRequired we check if the
14796         creator_thread is null. This gives the effect of InvokeRequired
14797         returning true if the controls handle is not created yet, and
14798         matches MS.
14799
14800 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14801
14802         * XplatUI.cs:
14803           - Added StartLoop() driver method. This is used to allow drivers to
14804             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
14805             loop for a particular thread
14806           - Added EndLoop() driver method. This is called once the message
14807             pump for the thread is shut down
14808           - Added SupportsTransparency method to allow the driver to indicate
14809             opacity support for windows
14810         * Form.cs:
14811           - Removed TODO attribute, completed AllowTransparency property
14812           - Added documented logic to Opacity
14813         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
14814           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
14815           versions of CompatibleTextRendering
14816         * X11Structs.cs: Added opacity atom to our atom enumeration
14817         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
14818           of a form might be set before it's reparented by the WM, and we need
14819           the opacity value without calling up to Form)
14820         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
14821           SupportsTransparency() driver methods
14822         * Application.cs: Now calling StartLoop and EndLoop driver methods
14823         * XplatUIX11.cs:
14824           - Added opacity atom registration
14825           - Added StartLoop()/EndLoop() methods. They're empty right now but
14826             will need to get implemented when we switch to a per-thread queue
14827           - Implemented SupportsTransparency() method
14828           - Implemented SetWindowTransparency() method
14829           - Added support for setting the opacity value when a window is
14830             reparented (since the opacity needs to be set on the WM frame)
14831         * XplatUIOSX.cs, XplatUIWin32.cs:
14832           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
14833
14834 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
14835
14836         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
14837
14838 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
14839
14840         * FileDialog.cs: Added ToolTip for MWFFileView
14841         * MimeIcon.cs: Rewrote GnomeHandler.
14842           - Get currently used gnome icon theme from
14843             ($HOME)/.gconf/%gconf-tree.xml
14844           - Make use of inherited icon themes
14845           - Support SVG icon themes like Tango via librsvg
14846
14847 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14848
14849         Revert's Jackson's revert which broke 2.0 builds.   Fix both
14850         builds. 
14851         
14852         * Application.cs: Move the use_compatible_text_rendering outside
14853         the NET_2_0 define.  If we ever need to use the
14854         use_compatible_text_rendering on the individual controls they will
14855         access the variable from the common shared code paths.
14856
14857 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14858
14859         * XplatUI.cs:
14860           - Added more granular debug options
14861           - Added method to print both window text and id
14862           - Switched debug output to use new Window() debug method
14863           - Added IsEnabled() driver method
14864           - Added EnableWindow() driver method
14865         * Form.cs:
14866           - Removed end_modal; no longer needed, new loop handles termination
14867             via 'closing' variable
14868           - If form is modal, setting DialogResult will now initiate loop
14869             termination via 'closing' variable
14870           - Added support for is_enabled/WS_DISABLED to CreateParams
14871           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
14872             does all the work
14873           - Removed code that's now in RunLoop from ShowDialog()
14874           - Added various documented sanity checks to ShowDialog()
14875           - Added handling of WM_DESTROY message; we set 'closing' on getting
14876             the message to indicate the message pump to terminate
14877           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
14878             send by the Application.ExitThread method. (We send the message
14879             to destroy the window after all other events have been
14880             processed through the queue, instead of destroying the handle 
14881             directly)
14882           - Moved code from Close() method to WM_CLOSE handler; added logic
14883             to only send close-related events if the form is not displayed
14884             modal
14885         * Splitter.cs (..ctor): Fixed typo in resource name
14886         * Control.cs:
14887           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
14888             brush now
14889           - set_Cursor: Now only setting calling into XplatUI if the handle for
14890             the control is already created; this avoids implict handle creation
14891             or crashes if it's not created
14892           - set_Enabled: Now setting the enabled state via the new driver method
14893             instead of just tracking it
14894           - CreateParams: Added logic to set WS_DISABLED based on enabled state
14895           - CreateControl: Reordered event firing and method calls to more
14896             closely fire events in the order MS does. Now setting the
14897             enabled state in the driver when creating the control.
14898           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
14899             match MS order
14900         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
14901           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
14902         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
14903         * Hwnd.cs:
14904           - Added tracking of window enabled state (get_Enabled/set_Enabled)
14905           - Added EnabledHwnd property to easily allow a driver to find the
14906             handle of the first enabled window in the parent chain (this is
14907             used by drivers to pass up input events of disabled windows)
14908         * XplatUIDriver.cs: Added IsEnabled() method
14909         * Application.cs:
14910           - Removed crude and obsolete exiting tracking variable
14911           - Removed internal ModalRun(); replaced by RunLoop()
14912           - Implemented private CloseForms() method to allow closing all 
14913             windows owned by a particular (or all) threads
14914           - Exit() now properly closes all windows without forcing the message
14915             pump to quit
14916           - Removed obsolete InternalExit() method
14917           - Changed Run() methods to use new RunLoop() message pump
14918           - Implemented new RunLoop() method for both modal and non-modal forms
14919         * CommonDialog.cs:
14920           - get_CreateParams: Added setting of WS_DISABLED
14921           - Simplified ShowDialog(); now all the work is done in RunLoop(),
14922             invoked via Form.ShowDialog()
14923         * NativeWindow.cs: We don't remove the window from the collection when
14924           the handle is destroyed; there might still be messages for it in the
14925           queue (mainly the resulting WM_DESTROY); instead it will be removed
14926           when Control calls InvalidateHandle in the WM_DESTROY handler
14927         * XplatUIX11.cs:
14928           - CreateWindow: Added logic to handle the WS_DISABLED window style
14929           - EnableWindow: Implemented based on Hwnd.Enabled
14930           - GetMessage: Reset PostQuitState so the method can be called again
14931           - Implemented support for disabled windows (passing messages to the
14932             first enabled parent) in handling all input messages
14933           - Added optimizations for handling Expose events
14934           - Implemeted new driver method IsEnabled()
14935           - Now always resetting paint pending tracking vars when we start paint
14936           - Re-implemented UpdateWindow via just sending a WM_PAINT message
14937         * XplatUIOSX.cs: Added IsEnabled method stub
14938         * XplatUIWin32.cs: Implemented new IsEnabled() method
14939
14940 2006-01-11  Jackson Harper  <jackson@ximian.com>
14941
14942         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14943         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
14944         variables a little.
14945         * ColorDialog.cs: Clear out the old form before adding the new
14946         panel.  
14947
14948 2006-01-11  Jackson Harper  <jackson@ximian.com>
14949
14950         * X11Dnd.cs: Make sure to add all the text formats when adding
14951         strings to the data object.
14952         * TreeNodeCollection.cs: When adding to a sorted tree we need to
14953         do some redrawing too.  Also change the UpdateNode to an
14954         UpdateBelow so the newly added node gets painted.
14955         
14956 2006-01-11  Miguel de Icaza  <miguel@novell.com>
14957
14958         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14959         LinkLabel.cs, PropertyGrid.cs: Implement the
14960         UseCompatibleTextRendering property for 2.x
14961
14962         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
14963
14964 2006-01-11  Jackson Harper  <jackson@ximian.com>
14965
14966         * TreeView.cs: Use the property for setting the selected node so
14967         the correct events get raised.
14968         * TreeNode.cs: Update the tree when the fore/back colours of a
14969         node are set.
14970
14971 2006-01-10  Jackson Harper  <jackson@ximian.com>
14972
14973         * TreeView.cs: Allow setting SelectedNode to null.
14974
14975 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14976
14977         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
14978
14979 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14980
14981         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
14982
14983 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14984
14985         * PrintDialog.cs: Added attributes and set default property values.
14986
14987 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14988
14989         * PrintControllerWithStatusDialog.cs: 
14990         Added PrintControllerWithStatusDialog.
14991
14992 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14993
14994         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14995         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
14996
14997 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14998
14999         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
15000
15001 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15002
15003         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
15004         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
15005
15006 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
15007
15008         * MimeIcon.cs: Added internal class SVGUtil.
15009
15010 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
15011
15012         * FileDialog.cs: Don't crash if there are two files with the
15013           same name but different locations.
15014
15015 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
15016
15017         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
15018         dates across multiple month grids. Used to not highlight entire 
15019         month, but does now.
15020         
15021 2006-01-06  Jackson Harper  <jackson@ximian.com>
15022
15023         * MonthCalendar.cs: Removed DoEvents call to prevent a running
15024         message loop. Change timer intervals to numbers that seem more
15025         natural.
15026
15027 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
15028
15029         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
15030           object for location info since screen object is now implemented.
15031
15032 2006-01-05  Jackson Harper  <jackson@ximian.com>
15033
15034         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
15035         * AsyncMethodResult.cs: We no longer use a WeakReference for the
15036         AsyncMethodResult, this is because we ALWAYS want the
15037         ManualResetEvent to get set.
15038         * Control.cs: When disposing use an async invoke to call shutdown
15039         code, so that thigns don't block on the finalizer thread.  Also
15040         check if we even have a message loop before trying to send
15041         messages, if we don't then don't bother sending messages.
15042         - No more weak references for async methods
15043         * XplatUIDriver.cs: No more weak references for async methods.
15044
15045 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15046
15047         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
15048           returns two FontFamily with the same name
15049
15050 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
15051
15052         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
15053           drawing disabled text. Instead using the ColorGrayText color
15054
15055 2006-01-04  Jackson Harper  <jackson@ximian.com>
15056
15057         * TreeNode.cs: redraw the node when its image index is changed.
15058
15059 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
15060
15061         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
15062           time I checked there are no others like it.
15063
15064 2006-01-04  Jackson Harper  <jackson@ximian.com>
15065
15066         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
15067         this gives the behavoir I was looking for.
15068         * Control.cs: Special case Invoking EventHandlers, this matches MS
15069         and fixes part of bug #76326.
15070
15071 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15072
15073         * ThemeClearlooks.cs, FileDialog.cs:
15074           - Reflect the latest Theme class changes
15075           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
15076             with DateTime
15077             
15078 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
15079
15080         * Theme.cs: Cache UI resource images and resize them if needed
15081
15082 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
15083
15084         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
15085           is called. This fixes the crash in Nexxia when setting the font
15086           attributes in the chat. [However, RTF needs a look-over to make sure
15087           that all SelectionXXX methods handle the special case that selection
15088           is empty and therefore the change must be applied to all text starting
15089           at the cursor/selection start]
15090
15091 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
15092
15093         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15094           XplatUIOSX.cs: Added SendMessage and PostMessage methods
15095         * X11Keyboard.cs: Switched to new way of calling PostMessage
15096
15097 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
15098
15099         * Theme.cs: Added theme interface for images to allow the theme to
15100           control what images are used for things like FileDialog, MessageBox
15101           icons, etc.
15102         * MessageBox.cs: Now uses the new Theme icon/image interfaces
15103
15104 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
15105
15106         * FileDialog.cs:
15107           - Removed some dead code
15108           - Opening a recently used file does work now
15109           - Small UI enhancements
15110           - Refactoring
15111
15112 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
15113
15114         * FileDialog.cs: Forgot too add __MonoCS__
15115
15116 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
15117
15118         * FileDialog.cs: We are able to read recently used files now let's
15119           go on and write them.
15120
15121 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
15122
15123         * FileDialog.cs: Breathe some life into "last open"/"recently used"
15124           button
15125         * MimeIcon.cs: Do a check for the top level media type also
15126
15127 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
15128
15129         * ThemeClearlooks.cs:
15130           - Added CPDrawStringDisabled
15131           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
15132             some chars if the text doesn't fit into text_rect
15133           - DrawListViewItem: If View = View.LargeIcon center the image;
15134             rewrote the drawing of ListViewItem.Text if View = 
15135             View.LargeIcon
15136
15137 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
15138
15139         * MimeIcon.cs: Use default KDE icon theme if there is no
15140           "48x48" directory for the current icon theme, fixes #77114
15141         * Mime.cs: Disable not working and actually not used code. 
15142         * ThemeWin32Classic.cs:
15143           - Replace "new SolidBrush" in GetControlBackBrush and
15144             GetControlForeBrush with ResPool.GetSolidBrush
15145           - Changed DrawListViewItem from private to protected virtual
15146         * FileDialog.cs:
15147           - Added form.MaximizeBox = true
15148           - Don't throw an exception if there is a broken symbolic link
15149
15150 2005-12-23  Jackson Harper  <jackson@ximian.com>
15151
15152         * TabControl.cs: Give the panels focus, keyboard navigation is
15153         fixed so this works correctly now.
15154         - We need these key events also.
15155         * ToolBar.cs: Remove some of the poor mans double buffering.
15156         
15157 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
15158
15159         * ComboBox.cs: The internal TextBox now returns the focus.
15160
15161 2005-12-23  Jackson Harper  <jackson@ximian.com>
15162
15163         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
15164
15165 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
15166
15167         * Control.cs: Removed debug code
15168         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
15169           implicit children
15170
15171 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
15172
15173         * Control.cs: When creating the control, update the Z-order after
15174           all it's children are created, too. (Fixes nexxia not showing
15175           picturebox bug)
15176
15177 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
15178
15179         * Control.cs: Do not update the anchoring distances if layout is
15180           suspended, instead do it once layout is resumed
15181
15182 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
15183
15184         * Control.cs: 
15185           - After many hours of debugging, for both Jackson and
15186             myself, it turns out that it helps to set the parent of a control
15187             if you want to actually see it onscreen. In the spirit of that
15188             discovery, we're now setting the parent of the control and
15189             it's children when the control's handle is created. This fix
15190             will make Lutz Roeder's Reflector run happily. 
15191           - now just creating the handle instead of the whole control when
15192             getting a graphics context for the control.
15193
15194 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
15195
15196         * ScrollableControl.cs: When calculating the canvas, don't consider
15197           the scrollbar widths. Instead, predict if horizontal scrollbar
15198           will affect canvas when deciding on vertical display and vice versa.
15199
15200 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
15201
15202         * RichTextBox.cs: Set default RTF font for documents that don't
15203           have a font table (Fixes #77076)
15204
15205 2005-12-22  Jackson Harper  <jackson@ximian.com>
15206
15207         * TextBoxBase.cs: It's difficult to do, but you can have an empty
15208         clipboard. This prevents a NullRef in that case.
15209         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
15210         clipboard. PRIMARY is for the currently selected text only. (We
15211         should implement PRIMARY at some point.
15212
15213 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15214
15215         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
15216           a Unicode function with a structure that was defined in Ansi way.
15217           This fixes #76942.
15218
15219 2005-12-21  Jackson Harper  <jackson@ximian.com>
15220
15221         * StatusBar.cs: Statusbar handles its fore/back colours on it's
15222         on. Because thats how it rolls. (and this avoids it using ambient
15223         colours).
15224         * ThemeWin32Classic.cs: Use the proper back color for filling.
15225         * Menu.cs: Use the system menu bar color for drawing menu
15226         bars. Using the window back color will bring ambient colours into
15227         the picture.
15228
15229 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
15230
15231         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
15232           Bitmaps were created and not disposed.
15233
15234 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15235
15236         * Control.cs (CreateControl): Don't do anything if the control is
15237           already created, otherwise we'd fire the OnCreated event more than
15238           once
15239
15240 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15241
15242         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
15243           will always match. Instead return -1. Fixes #76464.
15244
15245 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15246
15247         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
15248           neither the beginning nor the end of the line (Fixes bug #76479)
15249
15250 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15251
15252         * Control.cs:
15253           - ControlNativeWindow.ControlFromHandle(): Now handling situation
15254             where handle is invalid
15255           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
15256             instead of slower linear search
15257         * NativeWindow.cs: Don't remove the window from the hashtable until
15258           after the driver has destroyed it (since the driver might use
15259           Control.FromHandle to lookup the control object
15260         * Hwnd.cs: Added DestroyPending property to track if a window is 
15261           already destroyed as far as the driver is concerned and only hasn't
15262           yet notified the control
15263         * XplatUIX11.cs:
15264           - Activate(): Check if the window is still valid before using the 
15265             handle
15266           - Implemented DestroyChildWindow() method to mark child windows as
15267             destroyed when a window is destroyed. This prevents situations 
15268             where we might call an X method based on queued events for a
15269             window that already has been destroyed but we haven't yet pulled
15270             the destroy method from the queue.
15271           - Added a call to the new DestroyChildWindow() method to the drivers
15272             DestroyWindow code. Also now marking the destroyed window itself
15273             as pending
15274
15275 2005-12-20  Jackson Harper  <jackson@ximian.com>
15276
15277         * StatusBar.cs:
15278         * StatusBarPanel.cs: Don't calculate panel sizes on draw
15279         anymore. Just do them when needed, also track the rects of panels
15280         so that we can optimize refreshing more in the future.
15281
15282 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
15283
15284         * ColorDialog.cs: Fixed focus drawing in small color controls
15285
15286 2005-12-19  Jackson Harper  <jackson@ximian.com>
15287
15288         * InternalWindowManager.cs:
15289         * MdiWindowManager.cs: Cleanup some coordinate system changes so
15290         moving windows works properly.
15291
15292 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
15293
15294         * Control.cs: 
15295           - Removed call to InitLayout() from SetBoundsCore(); doc says
15296             it's only called when a control is added to a container
15297           - Split InitLayout logic, moved to separate UpdateDistances() method
15298             since we need to perform those calculations more often than just
15299             when adding the control to a container. (Needed to fix #77022)
15300           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
15301           - Reduced the OnBindingContextChanged events count, don't send them
15302             unless the control is created, we still aren't totally matching
15303             MS, but I can't quite figure out some of their rules
15304
15305 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15306
15307         * ThemeClearlooks.cs: Corrected distance between ProgressBar
15308           stripes
15309
15310 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15311
15312         * ThemeClearlooks.cs:
15313           - Updated ProgressBar drawing
15314           - Corrected drawing of ScrollBars and scroll buttons
15315           - Some temporary fixes for minor pixel artefacts
15316
15317 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
15318
15319         * Control.cs:
15320           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
15321             cause events to be sent in the same order as MS does.
15322           - Added ChangeParent() method to trigger various OnXXXChanged events
15323             that need to be fired when a parent changes (This is a reworking
15324             of the patch from r54254, with the X11 errors fixed)
15325           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
15326             since on MS we get OnLayoutChanged events when calling Clear()
15327           - Changed Enabled property to consider parent state as well, if a
15328             parent is not enabled, the control will not be either
15329           - Changed Parent property to simply call Controls.Add() since that
15330             now does all the work required, this way we avoid code duplication
15331           - Threw in a few OnBindingsContextChanged calls to try and match
15332             when MS sends them. We seem to send a few too many, though.
15333           - Added call to CreateControl when adding the control to a parent.
15334             We were never calling CreateControl. Still needs some work, in
15335             some places we treat HandleCreated and ControlCreated as equal, 
15336             which is wrong
15337           - Removed obsolete commented out code from UpdateZOrder()
15338
15339 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15340
15341         * ThemeClearlooks.cs: Updated TrackBar drawing.
15342
15343 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15344
15345         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
15346
15347 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15348
15349         * FileDialog.cs: Add the Help button and the open readonly
15350           checkbox only if needed
15351
15352 2005-12-16  Jackson Harper  <jackson@ximian.com>
15353
15354         * Control.cs: Make sure we have an active menu before trying to
15355         process commands on it. Prevents menu-less forms from crashing
15356         when Alt is pressed.
15357         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
15358         Dieter Bremes.
15359         * RichTextBox.cs: Expand statement to help out gmcs and fix the
15360         2.0 build.
15361
15362 2005-12-16  Jackson Harper  <jackson@ximian.com>
15363
15364         * InternalWindowManager.cs: Don't translate tool windows screen
15365         coordinates. This fixes windows 'bouncing' around when being moved.
15366
15367 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15368
15369         * TextBoxBase.cs:
15370           - MaxLength now treats 2^31-1 equal to unlimited length (this is
15371             not quite MS compatible, MS uses that number only for single line
15372             and 2^32-1 for multi-line, but I figure it won't hurt keeping
15373             the limit at 2GB)
15374           - Now enforcing the MaxLength limit when entering characters
15375           - Added argument to internal Paste() method to track if it's called
15376             from programatically or via keyboard, since keyboard driven pastes
15377             need to enforce max-length
15378           - Added logic to Paste to only paste as many chars as MaxLength 
15379             allows
15380         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
15381         * TextControl.cs:
15382           - Added Length property to return number of characters in document
15383           - Added private CharCount property which only tracks actual chars
15384             in the document (no linefeeds) and fires event when CharCount
15385             changes
15386           - Added tracking of character count to all methods that alter it
15387           - Added LengthChanged event to allow applications to subscribe
15388             to any changes to the document
15389
15390 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15391
15392         * TextBox.cs: 
15393           - Removed local password_char field (moved to TextBoxBase)
15394           - Now setting the document's password var when password is
15395             set
15396         * TextBoxBase.cs:
15397           - Added password_char field (needed here so MultiLine can
15398             access it)
15399           - Added logic to MultiLine property setter to set the document's
15400             variable when password display is allowed
15401           - Removed debug code and made some debug code conditional
15402         * TextControl.cs:
15403           - Added RecalculatePasswordLine() method to handle special password
15404             char only lines
15405           - Added PasswordChar property, also added related tracking vars
15406           - Draw() method now uses local text var for grabbing text to draw,
15407             this var is set to line.text unless we're doing password display,
15408             then it is set to the pre-generated all-password-chars line
15409           - Added calling RecalculatePasswordLine() method for password lines
15410
15411 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15412
15413         * Hwnd.cs: 
15414           - Added Reparented property to allow tracking of Window Manager
15415             reparenting actions (which affect X/Y calculations of toplevel 
15416             windows)
15417           - Made ToString() print window handles in hex
15418         * XplatUIX11.cs:
15419           - AddConfigureNotify(): Now uses reparented state off Hwnd to
15420             determine if X/Y needs offsetting
15421           - AddConfigureNotify(): Fixed offset calculations
15422           - Now adds ReparentNotify messages into the queue
15423           - Now processes ReparentNotify messages and causes a 
15424             WM_WINDOWPOSCHANGED message to be sent upstream if a window
15425             is reparented (as most likely it's X/Y coordinates are changed
15426             due to that)
15427
15428 2005-12-14  Jackson Harper  <jackson@ximian.com>
15429
15430         * XplatUIX11.cs: Tool windows still need to respek focus.
15431
15432 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15433
15434         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
15435           have a working release
15436
15437 2005-12-13  Jackson Harper  <jackson@ximian.com>
15438
15439         * Form.cs: Update styles after setting the border style regardless
15440         of whether or not the window is using a window manager.
15441
15442 2005-12-13  Jackson Harper  <jackson@ximian.com>
15443
15444         * Form.cs: We now hook into an internal window manager instead of just an
15445         MDI subsystem, this is so we can have properly behaving tool windows.
15446         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
15447         * InternalWindowManager.cs: New internal class that acts as a
15448         window manager for tool windows and as a base for mdi windows.
15449         * MdiWindowManager.cs: New class that acts as a window manager for
15450         mdi windows.
15451
15452 2005-12-12  Jackson Harper  <jackson@ximian.com>
15453
15454         * Control.cs: Updates so we match behavoir for for implicit
15455         controls. Fixes explosions in MDI.
15456
15457 2005-12-12  Jackson Harper  <jackson@ximian.com>
15458
15459         * Control.cs: Implement Invalidate (Region).
15460
15461 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
15462
15463         * Control.cs: 
15464           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
15465             the same events as MS does. MS fires events for each property 
15466             except, for unknown reasons, Cursor, when the control is reparented. 
15467             I can't seem to totally match add/remove since MS also fires some 
15468             VisibleChanged events, which makes no sense. Consolidated the
15469             parenting code into a separate method so it can be called from
15470             both Add and Remove. set_Parent no longer needs any special logic
15471             as it calls the parent's add method which implicitly fires
15472             all events
15473           - Removed some obsolete code and debug output
15474           - Enabled state is inherited from parents, if this is enabled
15475
15476 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
15477
15478         * Form.cs: Removed commented out code
15479
15480 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
15481
15482         * Control.cs:
15483           - Added internal version of Invoke, with additional argument 
15484             indicating if we're calling it from a Dispose() handler. That
15485             way we can avoid BeginInvoke throwing an exception if we're
15486             calling for an already destroyed window.
15487           - Added a dispose argument to BeginInvokeInternal, and made the
15488             check if a valid window handle chain exists conditional on
15489             it not being a dispose call
15490           - Removed code in DestroyHandle to destroy our children. Since we
15491             now handle the WM_DESTROY message we will catch all our children
15492             being destroyed.
15493           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
15494         * Form.cs:
15495           - Added a field to track the application context of the form.
15496           - No need to set closing variable as response to WM_CLOSE, instead
15497             we destroy the window. We also call PostQuitMessage if the form
15498             has an application context (which makes it the main app form,
15499             which, when closed terminates the app)
15500         * XplatUI.cs:
15501           - Dropped Exit() method, it's naming was confusing
15502           - Added PostQuitMessage() which causes GetMessage to return false
15503             once the message queue is empty
15504         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
15505           PostQuitMessage()
15506         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
15507           no longer a valid XplatUI method, but left it in since it's used
15508           internally. Added empty PostQuitMessage() method.
15509         * MenuAPI.cs: Replaced call to Exit() with call to
15510           PostQuitMessage, even though this is probably no longer needed.
15511         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
15512         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
15513         * Application.cs:
15514           - Replaced call to XplatUI.Exit() with PostQuitMessage()
15515           - Removed old debug code that would call XplatUI for exception
15516             display, enabled standard exception handling (Still not enabled
15517             though, until NativeWindow's ExternalExceptionHandler define
15518             is removed
15519         * NativeWindow.cs:
15520           - Added internal method to allow control to update NativeWindow
15521             after a window has been destroyed
15522           - Added handling of already destroyed windows when calling i
15523             DestroyWindow
15524           - Added removal of handle from list on ReleaseHandle
15525         * XplatUIX11.cs:
15526           - Dropped GetMessageResult var and related code
15527           - Added PostQuitState to field to track if PostQuitMessage has been
15528             called
15529           - Dropped Exit() method
15530           - Added PostQuitMessage() method
15531           - GetMessage now will return false if PostQuitState is set and no
15532             more messages are in the queue.
15533           - Expose handler will no longer generate WM_PAINT messages if we are
15534             in PostQuitState since it's very likely any windows have already
15535             been destroyed, and since Hwnd won't get updated until we have
15536             processed the DestroyNotify we'd be causing X errors.
15537         
15538 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15539
15540         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
15541           Thanks to Mike for pointing out the err of my ways.
15542
15543 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15544
15545         * Control.cs(PreProcessMessage): Moved menu handling back, but
15546           after all other key handling, to match MS (who handles Menu in
15547           DefWndProc)
15548         * Menu.cs (WndProc): Removed my brainfart
15549
15550 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15551
15552         * Control.cs(PreProcessMessage): Removed special menu handling 
15553         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
15554
15555 2005-12-07  Mike Kestner  <mkestner@novell.com>
15556
15557         * Control.cs : special case SYSKEYUP so that we can adjust keynav
15558         state according in tracker.
15559         * Menu.cs : promote tracker field to base class and provide a tracker
15560         lookup capability.  Add/Remove shortcuts dynamically if the top menu
15561         has a tracker. Unparent items that are removed from the collection.
15562         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
15563         * Theme*.cs: add always_show_hotkeys field to support configurability
15564         of mnemonic display.  win32 doesn't show mnemonics until Alt is
15565         pressed.
15566
15567 2005-12-07  Jackson Harper  <jackson@ximian.com>
15568
15569         * MdiChildContext.cs: Use Control.ResetCursor.
15570         * Control.cs: ResetCursor needs to set the property so that the
15571         correct XplatUI call gets made.
15572
15573 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15574
15575         * Control.cs: More fixes to make our key events match MS. We
15576           were not setting the modifier state on KeyData, and we were
15577           not generating any events when Alt was pressed with a key
15578           since handling of WM_SYSxxx was missing for the OnKey methods.
15579
15580 2005-12-07  Jackson Harper  <jackson@ximian.com>
15581
15582         * MdiChildContext.cs: reenable the sizing code.
15583         - When the mouse leaves a window reset its cursor.
15584
15585 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15586
15587         * ThemeClearlooks.cs: Reflect latest Hwnd changes
15588
15589 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15590
15591         * Hwnd.cs: Now using the theme 3d bordersize to calculate
15592           widths of Fixed3D borders
15593
15594 2005-12-07  Jackson Harper  <jackson@ximian.com>
15595
15596         * MdiClient.cs: Fix warnings. Earn Mike's love.
15597
15598 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15599
15600         * ThemeClearlooks.cs:
15601           - Adjusted mouse over button color
15602           - Added first parts of CheckBox drawing
15603           - Added correct color for selected text background
15604           - Fixed ComboBox drawing
15605           - Added CPDrawBorder3D and CPDrawBorder
15606
15607 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15608
15609         * XplatUIX11.cs: Added call to XBell for AudibleAlert
15610
15611 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
15612
15613         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15614           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
15615           alert users via sound. We could add an enum arg with different
15616           types of alerts in the future
15617
15618 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15619
15620         * Control.cs: Fix behaviour problems pointed out by Mike
15621
15622 2005-12-05  Mike Kestner  <mkestner@novell.com>
15623
15624         * StatusBarPanel.cs: add Invalidate method and hook it into all the
15625         prop setters.  Calls parent.Refresh for now, but could be maybe be
15626         optimized with an internal method on StatusBar at some point.
15627         [Fixes #76513]
15628
15629 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
15630
15631         * RichTextBox.cs: Implemented get_SelectionColor
15632
15633 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
15634
15635         * ThemeClearlooks.cs:
15636           - Removed dead code
15637           - Draw black button border only if button is Form.AcceptButton
15638           - Draw correct button color for pressed RadioButton if the mouse 
15639             has entered the button
15640           - Updated ProgressBar drawing!
15641           - Updated CPDrawSizeGrip drawing
15642           - Updated StatusBarPanel drawing
15643
15644 2005-12-05  Mike Kestner  <mkestner@novell.com>
15645
15646         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
15647         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
15648
15649 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
15650
15651         * ThemeClearlooks.cs: Initial check-in, activate with
15652           export MONO_THEME=clearlooks
15653         * ThemeEngine.cs: Added ThemeClearlooks
15654
15655 2005-12-03  Mike Kestner  <mkestner@novell.com>
15656
15657         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
15658         [Fixes #76897]
15659
15660 2005-12-02  Jackson Harper  <jackson@ximian.com>
15661
15662         * Form.cs: If the child form has no menu the default main menu is
15663         used as the active menu.
15664
15665 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
15666
15667         * ListBox.cs: Check if any items exist before trying to resolve 
15668           coordinates into items
15669
15670 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
15671
15672         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
15673           as the second color for the background hatch
15674
15675 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
15676
15677         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
15678         * RichTextBox.cs: FormatText position arguments are 1-based, now making
15679           sure that what we pass to FormatText is always 1-based. Fixes #76885
15680
15681 2005-11-29  Miguel de Icaza  <miguel@novell.com>
15682
15683         * NumericUpDown.cs (EndInit): When we are done initializing,
15684         reflect any updates on the UI.
15685
15686 2005-12-02  Jackson Harper  <jackson@ximian.com>
15687
15688         * ImplicitHScrollBar.cs:
15689         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
15690         their container controls.
15691         * TreeView.cs: Use the new implicit scrollbars.
15692
15693 2005-12-02  Jackson Harper  <jackson@ximian.com>
15694
15695         * TreeView.cs: Make top_node internal so the TreeNodeCollections
15696         can play with it.
15697         * TreeNodeCollection.cs: If we remove the topnode we need to
15698         update topnode to the next node in line.
15699         - When clearing nodes go through the same process as removing
15700         them, so they get depareneted and checked if they are top node.
15701
15702 2005-12-01  Jackson Harper  <jackson@ximian.com>
15703
15704         * TreeView.cs: When imagelists are used the image area is
15705         selectable as well as the text.
15706         - If there are no selected nodes select the first one.
15707         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
15708         so don't do it more then we need to.
15709
15710 2005-12-01  Jackson Harper  <jackson@ximian.com>
15711
15712         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
15713         that arrows can be scaled.
15714
15715 2005-12-01  Jackson Harper  <jackson@ximian.com>
15716
15717         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
15718         fail. Patch by Dieter Bremes
15719
15720 2005-11-30  Jackson Harper  <jackson@ximian.com>
15721
15722         * Form.cs: Property is 2.0 only
15723         * PrintDialog.cs: Signature fix.
15724
15725 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
15726
15727         * TextControl.cs: 
15728           - No longer artificially moves text 2 pixels down (now that we have
15729             borders this is no longer needed)
15730           - Added calcs for left, hanging and right indent
15731
15732 2005-11-23  Mike Kestner  <mkestner@novell.com>
15733
15734         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
15735
15736 2005-11-30  Jackson Harper  <jackson@ximian.com>
15737
15738         * MdiChildContext.cs: Set the cloned menus forms, as these don't
15739         get cloned as part of CloneMenu ().
15740         * Menu.cs: Make sure the parent of the items get set correctly
15741         when they are added.  And the owners are notified of the changes.
15742         * Form.cs: Create an ActiveMenu property, so that when MDI is used
15743         we can change the menu being displayed/handled by the form without
15744         changing the menu assosciated with the form.
15745         - Don't let Mdi children draw/handle menus.
15746         
15747 2005-11-30  Jackson Harper  <jackson@ximian.com>
15748
15749         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
15750         a MenuChanged event. Just to make the API a little more
15751         consistent.
15752         * MainMenu.cs:
15753         * MenuItem.cs: Use the new OnMenuChanged
15754         * MdiChildContext.cs: Handle menu merging.
15755         * Form.cs: Implement MergedMenu.
15756         
15757 2005-11-30  Jackson Harper  <jackson@ximian.com>
15758
15759         * Menu.cs: We were misusing Add. Add goes behind the specified
15760         index according to the docs, and does not replace the specified
15761         index. So I added an Insert method.
15762
15763 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
15764
15765         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
15766           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
15767           is for Jackson
15768         * RichTextBox.cs: Added calls to base for DnD events
15769
15770 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
15771
15772         * TextControl.cs:
15773           - Fixed drag-selection related crash; style fixes
15774           - Implemented undo class
15775             o Implemented method to capture document state for specified
15776               range in document tree
15777             o Implemented method to restore captured document state
15778             o Implemented cursor tracking
15779             o Implemented basic undo stack
15780           - Added undo cursor tracking to methods altering cursor location
15781           - Added undo tracking to selection deletion (still missing
15782             other text-altering hookups)
15783         * RichTextBox.cs:
15784           - Added SelectionLength property
15785           - Implemented CanPaste()
15786           - Implemented Paste()
15787           - Added missing protected methods
15788           - Fixed RTF->Document conversion; now uses font index 0 and color 
15789             index 0 as the default font for the parsed text
15790           - Fixed RTF<->Document font size translation
15791           - Fixed RTF generation, now properly handles cross-tag boundaries
15792             for single line selection
15793           - No longer always appends blank line to generated RTF
15794           - Removed TODOs
15795           - Added missing attributes
15796           - Hooked up undo-related methods
15797         * TextBoxBase.cs:
15798           - Implemented Copy()
15799           - Implemented Paste()
15800           - Implemented Cut()
15801           - Fixed caret mis-behaviour on backspace across line-boundaries
15802
15803 2005-11-29  Jackson Harper  <jackson@ximian.com>
15804
15805         * MdiClient.cs: Add a method for activating mdi children. Very
15806         basic right now. I imagine someday it might need more girth.
15807         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
15808         children windows names are added to the menu item.
15809         * ThemeWin32Classic.cs: Draw the arrow if the item is an
15810         mdilist. This happens regardless of whether or not there are any
15811         mdi windows to see in the list, and according to my tests happens
15812         before the items are even added. Also happens if there isn't even
15813         an mdi client to get windows from.
15814
15815 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
15816
15817         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
15818         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
15819
15820 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
15821
15822         * DataGridTableStyle.cs:
15823           - Create always the styles for the missing columns even if they are
15824             provided by the user (not default table style)
15825         * DataGrid.cs:
15826           - Fixes bug 76770
15827           - Fixes SetDataBinding (always re-attach source)
15828           - Fixes SetNewDataSource (only clear styles if they are not for 
15829             this source)
15830          -  Expands OnTableStylesCollectionChanged to handle style refresh 
15831             and remove properly
15832
15833 2005-11-29  Jackson Harper  <jackson@ximian.com>
15834
15835         * FileDialog.cs: Implement missing bits, remove some dead
15836         code.
15837         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
15838         creation of the panel so that the options set on the dialog are
15839         seen when the panel is created.
15840         * TreeView.cs: raise a click when items are clicked.
15841         
15842 2005-11-29  Jackson Harper  <jackson@ximian.com>
15843
15844         * MdiClient.cs: Pass some signature methods through to base.
15845
15846 2005-11-28  Jackson Harper  <jackson@ximian.com>
15847
15848         * ListView.cs: Raise the click event when items are clicked.
15849
15850 2005-11-28  Jackson Harper  <jackson@ximian.com>
15851
15852         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
15853         a nullref.
15854
15855 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
15856
15857         * ThemeNice.cs: - Removed 1 pixel bitmaps
15858           - Use SmoothingMode.AntiAlias where it makes sense
15859             (ScrollButton arrow for example)
15860           - Enhanced Button focus drawing
15861           - Fixed ComboBox drawing (no artefacts anymore, focus
15862             rectangle is back again, reduced size of ComboButton, etc.)
15863           - Fixed RadioButton focus drawing for Appearence.Button
15864           - Slight ScrollButton redesign
15865           - Some LinearGradientBrush size fixes
15866           - GroupBoxes have now rounded edges
15867           - Fixed StatusBar drawing
15868
15869 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
15870
15871         * ThemeNice.cs: - Remove dead code
15872           - use correct background colors for menus, etc.
15873           - Fake pixel drawing with 1 pixel bitmaps
15874
15875 2005-11-24  Jackson Harper  <jackson@ximian.com>
15876
15877         * MdiClient.cs: Size the scrollbars when resizing the window.
15878         - Resize the maximized windows when the client is resized
15879         * Form.cs: Make the child context available
15880         
15881 2005-11-23  Jackson Harper  <jackson@ximian.com>
15882
15883         * MdiChildContext.cs: Don't size windows if they are maximized.
15884
15885 2005-11-23  Mike Kestner  <mkestner@novell.com>
15886
15887         * ContextMenu.cs: use MenuTracker.
15888         * Control.cs: remove menu handle usage.
15889         * Form.cs: remove menu handle usage.
15890         * Hwnd.cs: remove menu handle usage.
15891         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
15892         motion and clicks to the new Tracker handlers.
15893         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
15894         and handle usage.
15895         * MenuAPI.cs: refactored to combine popup and menubar event handling.
15896         Killed the MENU and MENUITEM data types and associated collections
15897         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
15898         MenuTracker class that exposes the leftovers from the old MenuAPI
15899         static methods. Restructured Capture handling so that only one grab is
15900         done for the entire menu hierarchy instead of handing off grabs to
15901         submenus. Tracker now has an invisible control to Capture when active.
15902         * MenuItem.cs: add sizing accessors, kill Create
15903         and handle usage.
15904         * Theme.cs: remove menu handle and MENU(ITEM) usage.
15905         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
15906         MENU(ITEM). remove menu handle usage, use Menu directly.
15907         * XplatUIDriver.cs: remove menu handle usage.
15908         * XplatUIOSX.cs: remove menu handle usage.
15909         * XplatUIWin32.cs: remove menu handle usage.
15910         * XplatUIX11.cs: remove menu handle usage.
15911
15912 2005-11-22  Jackson Harper  <jackson@ximian.com>
15913
15914         * Hwnd.cs: Don't compute the menu size for
15915         DefaultClientRectangle.
15916         - Reenable menu sizes being computed for GetClienRectangle.
15917         * Form.cs: Remove comment of trechery
15918         
15919 2005-11-22  Jackson Harper  <jackson@ximian.com>
15920
15921         * Hwnd.cs: The adjustments for the menu bar are made when it is
15922         attached to the form.
15923
15924 2005-11-19  Jackson Harper  <jackson@ximian.com>
15925
15926         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
15927         (just like on windows).
15928
15929 2005-11-19  Jackson Harper  <jackson@ximian.com>
15930
15931         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
15932         use real buttons anymore because they are in non client area. The
15933         one TODO here is that I need to somehow invalidate a section of
15934         the non client area.
15935
15936 2005-11-18  Jackson Harper  <jackson@ximian.com>
15937
15938         * Control.cs: Put the enum check back in now that MDI doesnt have
15939         to use this to set border styles.
15940         * Form.cs: Only set mdi child windows borders if the handle has
15941         been created.
15942         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
15943         this directly on to the driver.
15944         - Get the move start position before adjusting for the titlebar
15945         height, this fixes the windows "skipping" when they are first
15946         moved.
15947
15948 2005-11-18  Jackson Harper  <jackson@ximian.com>
15949
15950         * XplatUIX11.cs: Just compute the mdi borders separately as they
15951         don't totally match up with normal form borders.
15952
15953 2005-11-18  Jackson Harper  <jackson@ximian.com>
15954
15955         * Control.cs: Set WS_ styles for borders, so that the driver does
15956         not have to retrieve the control instance to figure out what kind
15957         of borders it should have.
15958         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
15959         driver can know its an mdi child easily.
15960         * XplatUIX11.cs: Get the border styles and whether the window is
15961         MDI from the Styles and ExStyles params instead of having to get a
15962         control. This prevents a chicken and egg problem.       
15963
15964 2005-11-18  Jackson Harper  <jackson@ximian.com>
15965
15966         * MdiClient.cs: Fix typo so scrollbars show up correctly.
15967
15968 2005-11-18  Jackson Harper  <jackson@ximian.com>
15969
15970         * MdiClient.cs: Calculate when to add and remove scrollbars
15971         correctly.
15972         * MdiChildContext.cs: Adjust the y position to take the titlebar
15973         into account.
15974         - No height for FormBorderStyle.None
15975
15976 2005-11-18  Jackson Harper  <jackson@ximian.com>
15977
15978         * Control.cs: Allow non enum values to be used for
15979         InternalBorderStyle.  MDI does this to set a special border style.
15980         - New utility methods for converting points to/from client coords
15981         - Add the newly created control to the Controls collection before
15982         updating its style. This way UpdateStyle can walk the control
15983         heirarchy to find the control if needed.
15984         so I don't need to create a new Point object all the time.
15985         * Form.cs: Let MDI windows handle their border styles.
15986         - Set styles on MDI windows so the correct title style is derived.
15987         * MdiChildContext.cs: Move all the painting and window handling
15988         into the non client area.
15989         - Use correct sizing and put correct buttons on frames based on
15990         the FormBorderStyle.
15991         - Notify the mdi client about scrolling
15992         - Need to handle the buttons ourselves now, because they are all
15993         in non client areas and we can't add controls there.
15994         * MdiClient.cs: Halfway to scrolling, this implementation is
15995         somewhat broken though, we need to check to make sure other
15996         windows aren't causing scrolling before removing the bars. Also
15997         the bars need to be drawn on top, maybe I can switch implicit
15998         controls to be on top.
15999         * Hwnd.cs: caption_height and tool_caption_height are now
16000         properties of an hwnd, this way they can be set by the driver
16001         based on the type of window they are.  In X11 the window manager
16002         handles the decorations so caption_height is zero unless its an
16003         MDI window.
16004         - Add 3 pixel borders for MDI windows (0xFFFF).
16005         - Get rid of some code duplication, have DefaultClientRectanle
16006         just call GetClientRectangle.
16007         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
16008         Hwnd now.
16009         - Set border styles differently for mdi windows.
16010         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
16011         Hwnd now.
16012         
16013 2005-11-15  Mike Kestner  <mkestner@novell.com>
16014
16015         * Menu.cs: when adding an item to the collection, if item is already 
16016         parented, remove it from the parent.
16017
16018 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
16019
16020         * X11DesktopColors.cs: Added KDE support
16021
16022 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
16023
16024         * XplatUIWin32.cs: 
16025           - Clipboard methods now can translate Rtf format
16026           - No longer removes clipboard contents whenever a new format is added
16027             to allow placing multiple formats on the clipboard
16028         * Clipboard.cs: Clipboard now supports getting a IDataObject and
16029           will place all formats contained in it onto the clipboard. Also
16030           now cleans the clipboard before placing a new object onto it
16031         * RichTextBox.cs:
16032           - Implemented set_Rtf
16033           - Implemented set_SelectedRtf
16034           - Created InsertRTFFromStream() method to allow single code base
16035             for all properties and methods that insert RTF into document
16036           - Removed debug output
16037         * TextControl.cs:
16038           - Fixed Delete(int) to fix up line numbers
16039           - Fixed ReplaceSelection to combine start and end line
16040           - Fixed serious DeleteChars bug that would leave the document tree
16041             broken
16042           - Improved DumpTree with several logic checks to detect broken
16043             document trees
16044           - Removed debug lines
16045           - Fixed Caret.WordForward/WordBack moving code, now always also 
16046             updates caret.tag (fixes crash when word-selecting across tag
16047             boundaries via keyboard)
16048           - Added Insert() method for inserting multiline text into documents
16049           - Fixed DeleteChars() calculation errors that would cause a broken
16050             tag chain with multiple tag lines
16051           - DeleteChars() no longer crashes on multi-tag lines if not all tags
16052           - Split() no longer moves caret if split is at caret location
16053           - ReplaceSelection() now updates the cursor and re-displays it
16054           - ReplaceSelection() now uses new Insert() method to avoid code
16055             duplication
16056           - FormatText() can now handle formatting partial lines
16057         * TextBoxBase.cs:
16058           - Append now uses new TextControl.Insert() method (this avoids 
16059             duplicate code)
16060           - Implemented Ctrl-X (Cut) (
16061           - Implemented Ctrl-C (Copy)
16062           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
16063             regeneration when pasting text; roundtripping Copy&Paste within
16064             edit control still fails due to some calculation bugs in GenerateRTF)
16065           - The Delete key will now remove the current selection if it is visible
16066         * TextBox.cs: Removed debug lines
16067         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
16068           driver to be initialized and can't therefore be done via a static ctor)
16069
16070 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
16071
16072         * TextControl.cs: Added backend code for finding char arrays and strings
16073         * TextBoxBase.cs:
16074           - Added mouse wheel scroll support
16075           - Added support for VScroll and HScroll events
16076         * RichTextBox.cs:
16077           - Implemented all seven Find() variants
16078           - Implemented GetCharFromPosition()
16079           - Implemented GetCharIndexFromPosition()
16080           - Implemented GetLineFromIndex()
16081           - Implemented GetPositionFromCharIndex();
16082           - Implemented SaveFile for PlainText and UnicodeText
16083           - Fixed set_Font, now setting a new font applies that font to
16084             the whole document
16085           - Implemented generic Document to RTF converter
16086           - Implemented SaveFile for RichText format (still missing unicode
16087             conversion for non-ansi chars)
16088           - Implemented get_Rtf
16089           - Implemented get_SelectedRtf
16090
16091 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
16092
16093         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
16094           to allow any captures to be released before triggering OnClick. This
16095           way a click handler may capture the mouse without interference.
16096         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
16097           This way we send them even though X may not allow a grab (if the window
16098           isn't visible, for example)
16099
16100 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
16101
16102         * DataGridViewRowEventArgs.cs: DataGridView implementation
16103         * DataGridViewElement.cs: DataGridView implementation
16104         * DataGridViewComboBoxCell.cs: DataGridView implementation
16105         * DataGridViewDataErrorContexts.cs: DataGridView implementation
16106         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
16107         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
16108         * ImageLayout.cs: DataGridView implementation
16109         * DataGridViewComboBoxColumn.cs: DataGridView implementation
16110         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
16111         * DataGridViewSelectionMode.cs: DataGridView implementation
16112         * IDataGridViewEditingControl.cs: DataGridView implementation
16113         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
16114         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
16115         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
16116         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
16117         * DataGridViewColumnSortMode.cs: DataGridView implementation
16118         * DataGridView.cs: DataGridView implementation
16119         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
16120         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
16121         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
16122         * Padding.cs: DataGridView implementation
16123         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
16124         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
16125         * DataGridViewRowEventHandler.cs: DataGridView implementation
16126         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
16127         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
16128         * DataGridViewButtonCell.cs: DataGridView implementation
16129         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
16130         * DataGridViewEditMode.cs: DataGridView implementation
16131         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
16132         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
16133         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
16134         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
16135         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
16136         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
16137         * DataGridViewCellEventHandler.cs: DataGridView implementation
16138         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
16139         * DataGridViewCellStyleConverter.cs: DataGridView implementation
16140         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
16141         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
16142         * DataGridViewColumnEventArgs.cs: DataGridView implementation
16143         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
16144         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
16145         * QuestionEventArgs.cs: DataGridView implementation
16146         * IDataGridViewEditingCell.cs: DataGridView implementation
16147         * DataGridViewTriState.cs: DataGridView implementation
16148         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
16149         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
16150         * DataGridViewColumnCollection.cs: DataGridView implementation
16151         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
16152         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
16153         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
16154         * DataGridViewColumn.cs: DataGridView implementation
16155         * DataGridViewCellBorderStyle.cs: DataGridView implementation
16156         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
16157         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
16158         * DataGridViewRow.cs: DataGridView implementation
16159         * DataGridViewImageCellLayout.cs: DataGridView implementation
16160         * DataGridViewImageCell.cs: DataGridView implementation
16161         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
16162         * DataGridViewCheckBoxCell.cs: DataGridView implementation
16163         * DataGridViewHeaderCell.cs: DataGridView implementation
16164         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
16165         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
16166         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
16167         * DataGridViewTextBoxColumn.cs: DataGridView implementation
16168         * QuestionEventHandler.cs: DataGridView implementation
16169         * DataGridViewCellStyleScopes.cs: DataGridView implementation
16170         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
16171         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
16172         * DataGridViewCell.cs: DataGridView implementation
16173         * DataGridViewCellEventArgs.cs: DataGridView implementation
16174         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
16175         * DataGridViewCellStyle.cs: DataGridView implementation
16176         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
16177         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
16178         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
16179         * TextFormatFlags.cs: DataGridView implementation
16180         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
16181         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
16182         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
16183         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
16184         * DataGridViewButtonColumn.cs: DataGridView implementation
16185         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
16186         * HandledMouseEventArgs.cs: DataGridView implementation
16187         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
16188         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
16189         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
16190         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
16191         * DataGridViewRowCollection.cs: DataGridView implementation
16192         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
16193         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
16194         * DataGridViewHitTestType.cs: DataGridView implementation
16195         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
16196         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
16197         * DataGridViewColumnEventHandler.cs: DataGridView implementation
16198         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
16199         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
16200         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
16201         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
16202         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
16203         * DataGridViewContentAlignment.cs: DataGridView implementation
16204         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
16205         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
16206         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
16207         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
16208         * DataGridViewPaintParts.cs: DataGridView implementation
16209         * DataGridViewCellCollection.cs: DataGridView implementation
16210         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
16211         * DataGridViewImageColumn.cs: DataGridView implementation
16212         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
16213         * DataGridViewElementStates.cs: DataGridView implementation
16214         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
16215         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
16216         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
16217         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
16218         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
16219         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
16220         * DataGridViewRowHeaderCell.cs: DataGridView implementation
16221         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
16222         * DataGridViewTextBoxCell.cs: DataGridView implementation
16223         * DataGridViewBand.cs: DataGridView implementation
16224         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
16225         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
16226         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
16227         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
16228         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
16229         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
16230         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
16231         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
16232         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
16233         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
16234         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
16235
16236 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
16237
16238         * ThemeWin32Classic.cs: 
16239           - Draw the outside focus rectangle around buttons
16240           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
16241             doesn't use end caps for every dash of a line anymore. This
16242             workaround ignores the forecolor.
16243
16244 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
16245
16246         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
16247           endian safe.
16248
16249 2005-11-07  Jackson Harper  <jackson@ximian.com>
16250
16251         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
16252
16253 2005-11-07  Jackson Harper  <jackson@ximian.com>
16254
16255         * ScrollableControl.cs: Calculate the maximum and change vars
16256         (more) correctly so that scrollbars appear as a sensible size.
16257
16258 2005-11-04  Jackson Harper  <jackson@ximian.com>
16259
16260         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
16261         collection.
16262         * TreeView.cs: When the tree is sorted null out the top_node so
16263         that it is recalculated.
16264         - Use dotted lines instead of dashed lines to match MS better.
16265
16266 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
16267
16268         * ListView.cs: 
16269           - Implements key search for items. Useful when browsing files with FileDialog
16270           - When changing view mode or when clear the items reset scrollbar positions
16271
16272 2005-11-04  Jackson Harper  <jackson@ximian.com>
16273
16274         * CurrencyManager.cs: Implement the MetaDataChanged event, the
16275         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
16276         as to what the method may do as there is no real way of creating a
16277         derived CurrencyManager and calling the method. 
16278
16279 2005-11-03  Jackson Harper  <jackson@ximian.com>
16280
16281         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
16282         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
16283         method which seems to just be used internally to refresh the tabs.
16284
16285 2005-11-03  Jackson Harper  <jackson@ximian.com>
16286
16287         * TabControl.cs: Implement the remove method. Fix some broken
16288         comments.
16289
16290 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16291
16292         * DateTimePicker.cs:
16293           - Added missing DateTimePickerAccessibleObject class
16294           - Added missing events
16295           - Added OnFontChanged method
16296         * Form.cs: Added missing attributes
16297         * TreeView.cs: Added missing attributes
16298
16299 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
16300
16301         * GridItemCollection.cs: Fix signatures
16302
16303 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16304
16305         * XplatUI.cs: Updated build rev/date
16306         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
16307           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
16308         * Application.cs: Trigger context-specific ExitThread events
16309
16310 2005-11-03  Jackson Harper  <jackson@ximian.com>
16311
16312         * Menu.cs:
16313         * MainMenu.cs:
16314         * GridTableStylesCollection.cs:
16315         * Timer.cs:
16316         * TabPage.cs:
16317         * HelpProvider.cs:
16318         * StatusBar.cs:
16319         * MonthCalendar.cs: Signature fixes
16320
16321 2005-11-03  Jackson Harper  <jackson@ximian.com>
16322
16323         * TreeNodeCollection.cs: Remove should not be virtual.
16324         * TreeView.cs: Implement the last of the missing methods.
16325
16326 2005-11-03  Jackson Harper  <jackson@ximian.com>
16327
16328         * TreeNodeConverter.cs: Implement to get off my class-status back.
16329
16330 2005-11-03  Jackson Harper  <jackson@ximian.com>
16331
16332         * TreeView.cs: Hookup the bits for drag and drop.
16333         * TreeNode.cs: Don't cache the tree_view or index anymore, now
16334         that nodes can be moved from tree to tree easily this just causes
16335         all sorts of problems.
16336         * TreeNodeCollection: Don't need to give treenodes an index and
16337         treeview anymore when they are added, these are computed on the
16338         fly. Also make sure to remove a node before its added.
16339
16340 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16341
16342         * TextControl.cs:
16343           - Added CaretSelection enum
16344           - Added comparison methods to Marker struct, makes selection code
16345             more readable
16346           - Added SelectionStart and SelectionEnd as 'moveable' location for
16347             the CaretDirection enum and handler
16348           - Added selection_prev variable to track optimized invalidation for
16349             word and line selection
16350           - Added SelectionVisible property (returns true if there is a valid 
16351             selection)
16352           - Switched CaretHasFocus to only display the caret if there is no
16353             visible selection
16354           - Avoiding StringBuilder.ToString to retrieve a single char, instead
16355             using the direct character index; should be much faster
16356           - Added various conditional debug statements
16357           - Fixed invalidation calculation for selection ranges
16358           - Added ExpandSelection() method to support word and line selection
16359           - Switched SetSelectionToCaret to use new Marker compare overloads
16360           - Added central IsWordSeparator() method to determine word 
16361             separators/whitespace and FindWordSeparator() to streamline common
16362             usage of IsWordSeparator()
16363         * TextBoxBase.cs:
16364           - Removed unneeded grabbed variable, it was just mirroring
16365             Control.Capture
16366           - No longer firing OnTextChanged event when Text setter is called,
16367             since the base will fire the event for us
16368           - Added handling of Ctrl-Up/Down selection
16369           - Added handling of Shift-Cursorkey selection
16370           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
16371             words
16372           - Added handling of Shift and Ctrl-Shift-Home/End selection
16373           - Removed some debug output
16374           - Added handling for single/double/tripple-click to place caret/
16375             select word/select line respectively (Fixes bug #76031)
16376           - Added support for drag expansion of word/line selection
16377         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
16378           current selection
16379
16380 2005-11-02  Jackson Harper  <jackson@ximian.com>
16381
16382         * X11Dnd.cs: If the drag is going to and from a MWF window just
16383         copy the data instead of sending it out through the X Selection
16384         mechanism.
16385
16386 2005-11-02  Jackson Harper  <jackson@ximian.com>
16387
16388         * X11Dnd.cs:
16389         * XplatUIX11.cs: When in a drag we don't want motion notify
16390         messages to get passed on to the other controls. This prevents
16391         mouse move messages from showing up in the drag source.
16392
16393 2005-11-02  Jackson Harper  <jackson@ximian.com>
16394
16395         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
16396         the correct button is release to end a drag.
16397         * XplatUIX11.cs: Make the button state internal so the drag system
16398         can access it.  Dragging needs to know about all button releases,
16399         not just left button.
16400
16401 2005-11-02  Miguel de Icaza  <miguel@novell.com>
16402
16403         * Form.cs (Icon): If the icon is null, reset the icon to the
16404         default value. 
16405
16406         * Cursor.cs: When writing the AND-mask bitmap do not include the
16407         number of colors, but hardcode those to two (black and white),
16408         fixes the loading of color cursors (Paint Dot Net).
16409
16410         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
16411         turn off autoscaling.
16412
16413         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
16414
16415 2005-11-02  Jackson Harper  <jackson@ximian.com>
16416
16417         * X11Dnd.cs: Make sure to send a status message if the pointer
16418         enters a control that can not accept a drop, otherwise the cursor
16419         isn't updated correctly. Also tried to compress the lines of code
16420         a bit.
16421
16422 2005-11-02  Jackson Harper  <jackson@ximian.com>
16423
16424         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
16425         set actions correctly.  This isn't perfect as XDND and win32 have
16426         some differences on how you allow actions. I'll clear this up by
16427         adding a path for drag from MWF to MWF windows.
16428         * XplatUIX11.cs: Hook into the dnd system.
16429
16430 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
16431
16432         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
16433         previously shown but they are no longer need it. Very obvious when 
16434         browsing files with FileDialog.
16435
16436 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
16437
16438         * Control.cs: We always need to call OnPaintBackground. We pretty much
16439           ignore AllPaintingInWmPaint and always do the painting there, whether 
16440           it's set or not, since we always ignore the WM_ERASEBKGND message 
16441           (which we don't generate on X11). This fixes #76616.
16442         * Panel.cs: Removed unneeded background painting. This happens properly
16443           in Control.cs already
16444
16445 2005-10-31  Mike Kestner  <mkestner@novell.com>
16446
16447         * Menu.cs: Add items to collection before setting their index.
16448         * MenuItem.cs : add range checking with ArgumentException like MS.
16449         [Fixes #76510]
16450
16451 2005-10-31  Jackson Harper  <jackson@ximian.com>
16452
16453         * ListBox.cs: Invalidate if the area is visible at all not just
16454         contained in the visible rect. Fixes unselection of semi visible
16455         items.
16456
16457 2005-10-31  Jackson Harper  <jackson@ximian.com>
16458
16459         * Control.cs: Consistently name the dnd methods. Make them
16460         internal so we can override them to match some MS behavoir
16461         internally.
16462         * Win32DnD.cs: Use the new consistent names.
16463
16464 2005-10-31  Jackson Harper  <jackson@ximian.com>
16465
16466         * TreeView.cs: Don't draw the selected node when we lose focus.
16467
16468 2005-10-31  Jackson Harper  <jackson@ximian.com>
16469
16470         * X11Dnd.cs: We still need to reset the state even though a full
16471         reset isn't being done, otherwise status's still get sent all over
16472         the place.
16473
16474 2005-10-31  Jackson Harper  <jackson@ximian.com>
16475
16476         * Control.cs: Make the dnd_aware flag internal so the dnd
16477         subsystem can check it. Catch exceptions thrown in dnd handlers to
16478         match MS behavoir.
16479         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
16480         * X11Dnd.cs: Handle null data in the converters. Set the XDND
16481         version when sending a XdndEnter. Use the control/hwnd dnd_aware
16482         flags to reduce the number of dnd enters/status's sent.
16483
16484 2005-10-31  Jackson Harper  <jackson@ximian.com>
16485
16486         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
16487
16488 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
16489
16490         * PictureBox.cs: Fixes 76512
16491
16492 2005-10-28  Jackson Harper  <jackson@ximian.com>
16493
16494         * X11Dnd.cs: Early implementation to support winforms being a drag
16495         source for data on X11. Also restructured the converters so they
16496         can go both ways now.
16497         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
16498         
16499 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
16500
16501         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
16502           clipboard requests
16503
16504 2005-10-27  Jackson Harper  <jackson@ximian.com>
16505
16506         * TreeNode.cs: Implement serialization so my DnD examples will work.
16507
16508 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
16509
16510         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
16511           TreeView.cs: Don't dispose objects that are not owned.
16512           
16513 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
16514
16515         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
16516           should retrieve the current cursor and report that, but XplatUI
16517           doesn't (yet) have an interface for that (and I'm not sure I even
16518           can, on X11)
16519         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
16520           until any message loop processing is done (and the WM_SETCURSOR
16521           replaces the cursor to the proper one)
16522         * XplatUIX11.cs: 
16523           - Fixed override behaviour, we can't set the cursor globally on X11, 
16524             just for our windows.
16525           - Invalidating the System.Drawing X11 display handle when we are
16526             shutting down
16527         * Control.cs: Fix to make csc happy
16528
16529 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
16530
16531         * TextBoxBase.cs: 
16532           - get_Text: Add last line (without trailing newline) to returned
16533             value (Fixes 76212)
16534           - get_TextLength: Count last line in returned length
16535           - ToString: Call Text property instead of duplicating code
16536
16537 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
16538
16539         * ImageList.cs: Dispose ImageAttributes objects.
16540
16541 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16542
16543         * ImageList.cs: Use attribute constructors with less arguments where
16544           possible.
16545
16546 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16547
16548         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
16549           Use typeof instead of strings when assembly is referenced. Added
16550           some more comments.
16551
16552 2005-10-21  Jackson Harper  <jackson@ximian.com>
16553
16554         * ListView.cs: Raise a double click event. Also tried to somewhat
16555         fix when the selectedindexchanged event is raised. Its still
16556         broken though.
16557
16558 2005-10-21  Jackson Harper  <jackson@ximian.com>
16559
16560         * TreeView.cs: New method to invalidate the plus minus area of a
16561         node without invalidating the whole node (maybe this can be used
16562         in some more places).
16563         * TreeNodeCollection.cs: When adding to an empty node we need to
16564         invalidate its plus minus area so the little block shows up.
16565         
16566 2005-10-21  Jackson Harper  <jackson@ximian.com>
16567
16568         * TreeView.cs: Make sure that when we invalidate a node the bounds
16569         are big enough to cover the selected box and the focus
16570         rectangle. Use a different colour for the lines connecting nodes
16571         so they show up with all themes.
16572
16573 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16574
16575         * NativeWindow.cs: Don't call anything that could call into the driver,
16576           we might be on a different thread.
16577
16578 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
16579
16580         * Control.cs(Dispose): Since Dispose might run on a different thread,
16581           make sure that we call methods that could call into the driver via
16582           invoke, to avoid thread issues
16583
16584 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16585
16586         * XplatUI.cs: Removed finalizer
16587         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
16588           not allowing to be called on the finalizer thread.
16589
16590 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
16591
16592         * ImageList.cs:
16593           - Reverted r51889 and r51891.
16594           - Added ImageListItem class that stores unmodified image items and image
16595             properties required to create list images until handle is created.
16596           - Added AddItem and moved image creation logic to AddItemInternal.
16597           - Added CreateHandle method that creates images based on unmodified items.
16598           - Added DestroyHandle that changes state to store unmodified items.
16599           - Add and AddStrip methods no more create handle.
16600           - ReduceColorDepth has no return value.
16601           - Dispose destroys handle.
16602           - Modified other methods to reflect the above changes.
16603           - Implemented key support.
16604           - Added profile 2.0 members and attributes.
16605           - Added private Reset and ShouldSerialize methods that provide the same
16606             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
16607             them as they are private.
16608           - Added some more comments about implementation details.
16609
16610 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16611
16612         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
16613
16614 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16615
16616         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
16617
16618 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16619
16620         * DataGridDrawingLogic.cs: Fixes column hit calcultation
16621         * DataGridColumnStyle.cs: Remove debug message
16622
16623 2005-10-20  Jackson Harper  <jackson@ximian.com>
16624
16625         * TreeView.cs: We can always get input keys regardless of whether
16626         or not editing is enabled. They are used for navigation.
16627
16628 2005-10-20  Jackson Harper  <jackson@ximian.com>
16629
16630         * TreeNode.cs: Use the viewport rect for determining if a node
16631         needs to be moved for visibility. Don't use Begin/End edit. This
16632         calls a full refresh when its done.
16633         * TreeView.cs: New SetBottom works correctly.  Make the viewport
16634         rect property internal so the treenodes can see it. When clicking
16635         on a node we need to ensure that its visible because it might just
16636         be partly visible when clicked.
16637
16638 2005-10-20  Jackson Harper  <jackson@ximian.com>
16639
16640         * TreeNodeCollection.cs: Remove debug code.
16641
16642 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16643
16644         * Datagrid.cs: Implements column sorting in Datagrid
16645         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
16646
16647 2005-10-20  Jackson Harper  <jackson@ximian.com>
16648
16649         * TreeNodeCollection.cs: Remove items properly. Update the correct
16650         area after removing them.
16651
16652 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16653
16654         * Datagrid.cs: Should not call base.OnPaintBackground
16655
16656 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16657
16658         * XplatUIX11.cs (GetMessage):
16659           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
16660             window instead of client window
16661           - Now properly calculates NC_xBUTTONUP message coordinates
16662           - ScreenToMenu now properly calculates it's coordinates of whole 
16663             window, since menus are in the whole window, not in the client
16664             window
16665           - Added WholeToScreen coordinate translation method
16666
16667 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
16668
16669         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
16670           want to return a message, loop back to the beginning of the function
16671           and grab the next real message to process instead.
16672
16673 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16674
16675         * Splitter.cs: Properly set limits if no filler control is used
16676
16677 2005-10-19  Jackson Harper  <jackson@ximian.com>
16678
16679         * ColorDialog.cs: Don't show the help button if it is not enabled
16680         instead of disabling it (this is what MS does). Don't create the
16681         panel until the dialog is run, otherwise the vars (such as
16682         ShowHelp) are not set yet.
16683
16684 2005-10-19  Jackson Harper  <jackson@ximian.com>
16685
16686         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
16687         are reduced when adding nodes.
16688         * TreeNode.cs:
16689         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
16690         tree.
16691         
16692 2005-10-19  Jackson Harper  <jackson@ximian.com>
16693
16694         * FolderBrowserDialog.cs: End editing our treeview so the window
16695         actually gets refreshed.
16696
16697 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
16698
16699         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
16700           Obsoleted handling of WM_ERASEBKGND, now always draws our background
16701           inside of WM_PAINT
16702
16703 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16704
16705         * MenuAPI.cs: Returns after Hidding window
16706         * XplatUIX11.cs: Added TODO found while debugging menu issues
16707
16708 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
16709
16710         * XplatUIX11.cs: Do not re-map the whole window when it's size
16711           becomes non-zero unless it's supposed to be actually visible
16712
16713 2005-10-18  Jackson Harper  <jackson@ximian.com>
16714
16715         * TreeView.cs: We don't need to keep a count anymore.
16716         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
16717         use the Grow method.
16718
16719 2005-10-18  Jackson Harper  <jackson@ximian.com>
16720
16721         * TreeNodeCollection.cs: Insert is not supported on arrays, so
16722         implement it manually here.
16723
16724 2005-10-18  Jackson Harper  <jackson@ximian.com>
16725
16726         * ImageList.cs: Dont kill the list when the colour depth is
16727         changed, just change the colour depth of all the images.
16728         - Same goes for setting the image size. Just resize them all
16729         instead of killing the list softly.
16730
16731 2005-10-18  Jackson Harper  <jackson@ximian.com>
16732
16733         * Control.cs: Don't invalidate empty rectangles.
16734
16735 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16736
16737         * ListViewItem.cs:
16738           - Adds checked item to the Checked/Item lists (where empty before)
16739           - Do not add items to the Selected lists if they are already present
16740         * ListView.cs:
16741           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
16742           - When deleting items make sure that we delete them for the Selected
16743           and Checked list also.
16744
16745 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16746
16747         * Label.cs: Dispose objects no longer used
16748         * ThemeWin32Classic.cs: Dispose objects no longer used
16749
16750 2005-10-18  Jackson Harper  <jackson@ximian.com>
16751
16752         * TabControl.cs: Don't refresh the whole control when the tabs are
16753         scrolled, we just need to refresh the tab area.
16754
16755 2005-10-17  Jackson Harper  <jackson@ximian.com>
16756
16757         * XplatUIX11.cs: Compress code a little bit. Only calculate the
16758         after handle when we need it.
16759
16760 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
16761
16762         * Control.cs: When the parent size changes, recalculate anchor 
16763           positions. Partial fix for #76462
16764
16765 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
16766
16767         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
16768           drawn. Fixes #76462
16769
16770 2005-10-17  Jackson Harper  <jackson@ximian.com>
16771
16772         * MonthCalendar.cs: Don't create the numeric up down until our
16773         handle is created. Otherwise our handle is created in the
16774         constructor and we don't know if we are a WS_CHILD or WS_POPUP
16775         yet.
16776
16777 2005-10-17  Jackson Harper  <jackson@ximian.com>
16778
16779         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
16780         correctly.
16781
16782 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16783         * TreeNode.cs : small logical fix (was using local var instead of field)
16784         
16785 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
16786
16787         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
16788
16789 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
16790
16791         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
16792
16793 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
16794
16795         * Control.cs: 
16796           - Re-implemented anchoring code. My first version was really broken.
16797             This fixes bug #76033. Unlike the previous implementation we will
16798             no longer have round errors since all numbers are calculated from
16799             scratch every time. Removed various anchor-related obsolete vars.
16800           - InitLayout no longer causes layout event firing and layout to be 
16801             performed
16802
16803 2005-10-16  Jackson Harper  <jackson@ximian.com>
16804
16805         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
16806         which was broken).
16807
16808 2005-10-16  Jackson Harper  <jackson@ximian.com>
16809
16810         * TabControl.cs: Remove debug code.
16811
16812 2005-10-16  Jackson Harper  <jackson@ximian.com>
16813
16814         * XEventQueue.cs: Increase the default queue size (very simple
16815         apps needed to grow the queue).
16816         * Hwnd.cs: No finalizer so we don't need to suppress
16817         finalization. Compute the invalid area manually so a new rectangle
16818         does not newto be created.
16819         * ScrollableControl.cs: Don't set any params (otherwise visibility
16820         isn't set correctly).
16821         * MdiChildContext.cs: New constructor takes the mdi parent so it
16822         doesn't have to be computed and avoids a crash on windows. Draw
16823         the window icon properly, and allow the text to be seen.
16824         * Form.cs: Use new MdiChildContext constructor. Make sure the
16825         child context isn't null in wndproc.
16826         * TabControl.cs: Don't set focus, this is muddling keyboard
16827         behavoir. Expand the tab rows when a window size increase will
16828         allow extra tabs to be seen. Don't allow tabs smaller than the
16829         width of a window to be scrolled out of view.
16830         * TreeNode.cs:
16831         * TreeView.cs: Use measure string to calculate a nodes width, the
16832         width is cached and only updated when the text or the font is
16833         changed. Don't check for expand/collapse clicks on the first level
16834         nodes if root lines are disabled.
16835         
16836 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
16837
16838         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
16839
16840 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
16841
16842         * DataGridBoolColumn.cs: fixes warning
16843
16844 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
16845
16846         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
16847         to match more to match more precisely the MS Net behavior
16848
16849 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
16850
16851         * Hwnd.cs: Added field to track if window is mapped
16852         * XplatUIX11.cs: 
16853           - Unmap windows if they become 0-size, re-map when 
16854             they are >0 again; fixes #76035
16855           - Re-set our error handler after initializing X11Desktop
16856             to override any error handlers Gtk or whatever was called
16857             may have set.
16858
16859 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
16860
16861         * CheckedListBox.cs: Removed unused vars
16862         * ListView.cs: Fixed signatures
16863         * RichTextBox.cs: Removed unused vars
16864         * TextBoxBase.cs: Removed unused vars
16865         * XplatUIWin32.cs: Removed unused vars
16866         * XplatUIX11.cs: Removed unused vars
16867         * XplatUI.cs: Updated version and date to latest published
16868
16869 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
16870
16871         * Cursor.cs: Added private .ctor to work around a bug in
16872           resourceset (Thanks to Geoff Norton for the help on this)
16873         * SplitterEventArgs.cs: Made fields accessible so we don't
16874           waste boatloads of objects and can reuse the same one
16875           in Splitter
16876         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
16877           any captions and borders when generating screen coordinates
16878         * Splitter.cs: Reimplemented control, now fully complete, uses
16879           rubberband drawing, supports and obeys all properties, has
16880           proper cursors
16881
16882 2005-10-13  Miguel de Icaza  <miguel@novell.com>
16883
16884         * Form.cs (Form): Setup default values for autoscale and
16885         autoscale_base_size;  Make these instance variables, not static
16886         variables. 
16887
16888         (OnLoad): on the first load, adjust the size of the form.
16889
16890 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
16891
16892         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
16893           width argument to DrawReversibleRectangle()
16894         * XplatUIWin32.cs, XplatUIX11.cs: 
16895           - Implemented width for DrawReversibleRectangle()
16896           - Added logic to DrawReversibleRectangle that recognizes a zero
16897             width or height and only draws a line in that situation
16898         
16899 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
16900
16901         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
16902         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
16903         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
16904           method (it uses our FosterParent window to get a graphics context)
16905
16906 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
16907
16908         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
16909           and SetWindowBackground methods
16910         * Control.cs:
16911           - Setting proper ControlStyles
16912           - We no longer call XplatUI.SetWindowBackground and XplatUI.
16913             EraseWindowBackground, instead we draw the window background
16914             ourselves in PaintControlBackground. This behaviour is
16915             required to match MS, where, when OnPaintBackground is not
16916             called, the background is not drawn.
16917           - Removed unneeded Refresh() in set_Text
16918         * Hwnd.cs: Dropped the ErasePending support. No longer needed
16919         * XplatUIX11.cs:
16920           - Created DeriveStyles method to translate from CreateParams to
16921             FormBorderStyle and TitleStyle, also handles BorderStyle (which
16922             matches FormBorderStyle enum values)
16923           - Consolidated SetHwndStyles and CalculateWindowRect border/title
16924             style calculations into single DeriveStyles method
16925           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
16926             from redrawing the whole window on any resize or expose.
16927           - Fixed CreateWindow usage of SetWindowValuemask. Before not
16928             all styles were applied to our whole/client window appropriately
16929           - Removed EraseWindowBackground() and SetWindowBackground() methods
16930           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
16931             no longer clear/redraw the background through X
16932           - Removed handling of erase_pending bit, we have no use for it (or
16933             so it seems)
16934         * XplatUIOSX.cs:
16935           - Removed generation and handling of WM_ERASEBKGND message
16936           - Removed EraseWindowBackground() and SetWindowBackground() methods
16937           - Removed handling of hwnd.ErasePending flag
16938         * XplatUIWin32.cs:
16939           - Removed EraseWindowBackground() and SetWindowBackground() methods
16940           - We no longer call EraseWindowBackground on PaintEventStart, we 
16941             ignore the fErase flag, erasing is handled in Control in the
16942             background handler
16943         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
16944           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
16945           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
16946           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
16947           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
16948           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
16949           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
16950
16951 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
16952
16953         * PropertyGrids.cs: Get sub properties
16954         * PropertyGridView.cs: Fix drawing code
16955
16956 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16957
16958         * ListBox.cs: Fixes 76383
16959
16960 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16961
16962         * DataGridTextBoxColumn.cs: Sets location and size before attachment
16963         * ThemeWin32Classic.cs: Fixes border drawing and calculations
16964         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
16965
16966
16967 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16968
16969         * ComboBox.cs: Fixes border drawing
16970
16971 2005-10-10  Miguel de Icaza  <miguel@novell.com>
16972
16973         * MimeIcon.cs: Ignore errors if the file can not be read.
16974
16975 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16976
16977         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
16978          - Fixed border calculations
16979          - Fixed horizontal scrolling in single column listboxes
16980          - Fixed drawing issues
16981
16982 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
16983
16984         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
16985           FormBorderStyle enum
16986         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
16987           code to determine FormBorderStyles from CreateParams
16988         * Form.cs:
16989           - Fixed bug where we'd set the wrong window styles if we were
16990             not creating an MDI window
16991           - Added call to XplatUI.SetBorderStyle when form borders are set
16992         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
16993         * Hwnd.cs:
16994           - Removed obsolete edge style
16995           - Switched from BorderStyle to FormBorderStyle
16996         
16997 2005-10-10  Jackson Harper  <jackson@ximian.com>
16998
16999         * Form.cs: Use the property to get the window handle instead of
17000         accessing it directly. Prevents a null reference exception.
17001
17002 2005-10-10  Jackson Harper  <jackson@ximian.com>
17003
17004         * TreeView.cs: Don't adjust the rect given to DrawString now that
17005         our libgdiplus draws correctly.
17006
17007 2005-10-08  Jackson Harper  <jackson@ximian.com>
17008
17009         * TreeView.cs: Don't try to find the clicked on node if there are
17010         no nodes in the tree.
17011
17012 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
17013
17014         * RichTextBox.cs:
17015
17016           restore
17017
17018 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
17019
17020         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
17021           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
17022           ErrorProvider.cs:
17023           Use ResPool for brushes and dispose System.Drawing objects that
17024           are not used anymore.
17025
17026 2005-10-07  Jackson Harper  <jackson@ximian.com>
17027
17028         * MdiChildContext.cs: Use the new borders instead of drawing them
17029         ourselves.
17030
17031 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
17032
17033         * Calling UpdateBounds after changing the window's BorderStyle 
17034         since the style can change the ClientSize
17035
17036 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17037
17038         * Control.cs: Made PaintControlBackground virtual
17039         * Panel.cs: Overriding PaintControlBackground instead of using paint
17040           event; paint event method was interfering with 'real' users of the
17041           event.
17042
17043 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
17044
17045         * ThemeWin32Classic.cs: remove border drawing since it is handled
17046         by the base control class now and was causing double border drawing.
17047
17048 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17049
17050         * Panel.cs: Redraw our background on paint. Not a pretty solution,
17051           but it does seem to match MS behaviour. This fixes bug #75324
17052
17053 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17054
17055         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
17056           somewhat hackish looking
17057
17058 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17059
17060         * TextBoxBase.cs:
17061           - We now accept Enter even if AcceptEnter is false, if the containing
17062             form does not have an AcceptButton configured (fixes bug #76355)
17063           - Calculations are now fixed to no longer use Width/Height, but
17064             ClientSize.Width/Height, since we now support borders (this was
17065             a result of fixing borders and therefore bug #76166)
17066           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
17067             true (fixes bug #76354)
17068         
17069 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17070
17071         * Control.cs: 
17072           - Defaulting BorderStyle and setting it in XplatUI when our window 
17073             is created
17074           - Added enum check to InternalBorderStyle setter
17075         * XplatUIX11.cs: 
17076           - Added drawing of window borders
17077           - Now properly calculates WM decorations offset for toplevel 
17078             windows (fixes bug #74763)
17079         * XplatUIWin32.cs: 
17080           - Implemented BorderStyles for windows (we're letting win32 draw 
17081             the border for us)
17082           - Fixed the signature for SetWindowLong
17083         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
17084           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
17085           setting borders
17086         * UpDownBase.cs: Remove drawing of borders, this is handled by
17087           the driver, outside the client area
17088         * ListView.cs: Removed bogus border calculations. The control should
17089           be oblivious to borders, since those are not part of the client
17090           area. 
17091         * X11DesktopColors.cs: Commented out (currently) unneeded variables
17092         * ThemeWin32Classic.cs: Removed border calculations from ListView 
17093           drawing code
17094
17095 2005-10-06  Jackson Harper  <jackson@ximian.com>
17096
17097         * MdiChildContext.cs: Clear out the old virtual position remove
17098         all the unneeded calls to CreateGraphics.
17099
17100 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17101
17102         * TextControl.cs: Use proper color for highlighted text; fixes #76350
17103
17104 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
17105
17106         * Form.cs: 
17107           - Added loading and setting of our new default icon
17108           - Only set icon if window is already created
17109
17110 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
17111
17112         * Label.cs:
17113           - Do not explicitly set the foreground and background colors, to
17114             allow inheriting from parents (fixes #76302)
17115           - Use Control's InternalBorderStyle property to deal with borders
17116
17117 2005-10-06  Jackson Harper  <jackson@ximian.com>
17118
17119         * MdiChildContext.cs: Use the new xplatui function to draw a
17120         reversible rect.
17121
17122 2005-10-06  Jackson Harper  <jackson@ximian.com>
17123
17124         * Form.cs: Add the parent before creating the child context cause
17125         we need the parent when setting up the child.
17126
17127 2005-10-06  Jackson Harper  <jackson@ximian.com>
17128
17129         * FolderBrowserDialog.cs: redo the tree population code so a
17130         second thread isn't used. Should be a lot faster and more stable
17131         now.
17132
17133 2005-10-05  Jackson Harper  <jackson@ximian.com>
17134
17135         * TreeView.cs: There are no expand/collapse boxes if the node has
17136         no children.
17137
17138 2005-10-05  Jackson Harper  <jackson@ximian.com>
17139
17140         * X11DesktopColors.cs: Get menu colours for the gtk theme.
17141
17142 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
17143
17144         * FileDialog.cs: Fix InitialDirectory
17145
17146 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
17147
17148         * ComboBox.cs:
17149                 - Fixes changing between styles
17150                 - Fixes simple mode
17151                 - Fixes last item crashing when navigating with keyboard
17152
17153 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
17154
17155         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
17156
17157 2005-10-05  Jackson Harper  <jackson@ximian.com>
17158
17159         * TreeView.cs: If updating the root node do a full refresh.
17160         * TreeNode.cs: The root node should be expanded by default. Also
17161         added a utility prop to tell if we are the root node.
17162         * TreeNodeCollection.cs: Only refresh if the node we are being
17163         added to is expanded. Also added a comment on a potential
17164         optimization.
17165         
17166 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
17167
17168         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
17169           in dispose method. Fixes #76330
17170
17171 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
17172
17173         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
17174
17175                 - Implements vertical and horizontal scrolling using XplatUI
17176                 - Fixes keyboard navagation
17177                 - Fixes EnsureVisible
17178                 - Drawing fixes
17179                 - Handles and draws focus properly
17180
17181
17182 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
17183
17184         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
17185           Create handle. NET_2_0: Destroy handle when value is null.
17186
17187 2005-10-03  Jackson Harper  <jackson@ximian.com>
17188
17189         * ScrollBar.cs: My last scrollbar patch was broken. This is a
17190         revert and a new patch to prevent the thumb from refreshing so
17191         much.
17192
17193 2005-10-02  Jackson Harper  <jackson@ximian.com>
17194
17195         * ScrollBar.cs: Don't update position if it hasn't actually
17196         changed. This occurs when you hold down the increment/decrement
17197         buttons and the thumb gets to the max/min.
17198
17199 2005-10-01  Jackson Harper  <jackson@ximian.com>
17200
17201         * Form.cs:
17202         * MdiChildContext.cs:
17203         * MdiClient.cs: Implement ActiveMdiChild in Form.
17204
17205 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
17206
17207         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
17208
17209 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
17210
17211         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
17212           be found
17213
17214 2005-09-30  Jackson Harper  <jackson@ximian.com>
17215
17216         * ListBox.cs: Don't do a full refresh unless some data has
17217         actually changed.
17218
17219 2005-09-30  Jackson Harper  <jackson@ximian.com>
17220
17221         * TreeView.cs: Make sure that the checkboxes size is factored in
17222         even when not visible.
17223
17224 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17225
17226         * FileDialog.cs: Fix Jordi's build break
17227
17228 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17229
17230         * FileDialog.cs: 
17231                 - Use standard the Windows colours for the combobox as espected
17232                 - Dispose objects that use resouces when no longer need them
17233
17234 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17235
17236         * X11DesktopColors.cs: Initial incomplete implementation
17237         * XplatUIX11.cs: Added call to initialize X11DesktopColors
17238
17239 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
17240
17241         * Theme.cs: 
17242           - Switched Theme color names to match the names defined in 
17243             System.Drawing.KnownColors. Life's hard enough, no need to make 
17244             it harder.
17245           - Added setters to all theme color properties so themes can set
17246             their color schemes. The setters also propagate the color changes
17247             to System.Drawing.KnownColors via reflection
17248         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
17249           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
17250           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
17251           use the new, more logical theme color names
17252         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
17253           post-NT colors
17254         * ThemeWin32Classic.cs:
17255           - Removed code to set the old classic Windows colors. Instead it
17256             now relies on the colors returned by System.Drawing.KnownColors
17257             which will be either modern static colors (Unix) or colors
17258             read from the user's configuration (Win32)
17259           - Updated to use the new, more logical theme color names
17260           - Switched DataGrid drawing code to use only Theme colors instead of
17261             a mix of System.Drawing.KnownColors and Theme colors
17262           - DrawFrameControl(): Removed code that fills the button area, the
17263             fill would overwrite any previous fill done by a control. This
17264             fixes bug #75338 
17265           - Added DrawReversibleRectangle() stub
17266         * ScrollableControl.cs: Set visible state to false when scrollbars
17267           are removed (pdn fix)
17268         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
17269           DrawReversibleRectangle() method to allow drawing primitive 
17270           'rubber bands'
17271         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
17272
17273 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17274
17275         * ImageList.cs: Add(Icon): Create handle.
17276
17277 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17278
17279         * ListView.cs:
17280         * ThemeWin32Classic.cs:
17281                 - Fixes detail mode
17282                 - Sets clippings
17283                 - Issues with drawing
17284
17285 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17286
17287         * ImageList.cs: Moved RecreateHandle back to ImageList as event
17288           source has to be the ImageList.
17289
17290 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17291
17292         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
17293
17294 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17295
17296         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
17297
17298 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17299
17300         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
17301
17302 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
17303         * GridItem.cs: Fixed TODOs
17304         * GridItemCollection.cs: Added ICollection interface
17305
17306 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17307
17308         * ImageList.cs: Resize icons when needed.
17309
17310 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
17311
17312         * ListViewItem.cs
17313                 - Fixes GetBounds and returns on screen rects
17314         * ListView.cs:
17315                 - Fixes vertical and horzintal scrolling of items
17316         * ThemeWin32Classic.cs:
17317                 - Fixes drawing
17318                 
17319 2005-09-29  Raja R Harinath  <harinath@gmail.com>
17320
17321         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
17322
17323 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
17324
17325         * ImageList.cs: Added comments about handle creation. Moved Handle,
17326           HandleCreated and OnRecreateHandle implementations to ImageCollection.
17327           Handle is created in Add methods.
17328
17329 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17330          
17331         * DataGridDrawingLogic.cs: 
17332                 - Takes rows into account on Colum calculations
17333                 - Returns the column when clickig
17334         * DataGrid.cs:
17335                 - Fixes default HitTestInfo values
17336                 - Fixes HitTestInfo.ToString
17337                 - Fixes ResetBackColor          
17338         
17339 2005-09-28  Jackson Harper  <jackson@ximian.com>
17340
17341         * MdiChildContext.cs: Obey rules for fixed sized windows (no
17342         sizing or cursor changes). Also added some temp code to draw the
17343         titlebars text (Makes dev a little easier).
17344
17345 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17346
17347         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
17348
17349 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17350          
17351         * ListBox.cs: Fixes bug 76253
17352
17353 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17354
17355         * ImageList.cs: Added comments about the current implementation. Added
17356           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
17357           Format32bppArgb to preserve transparency and can use Graphics.FromImage
17358           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
17359           with Bitmap.LockBits for better performance. Revised the whole file to
17360           match MS.NET behaviour and provide better performance. Non-public
17361           interface members are calling public members even when they throw
17362           NotSupportedException for better maintainability. Moved ColorDepth,
17363           ImageSize, ImageStream and TransparentColor implementations to
17364           ImageCollection for better performance as these properties are not used
17365           by ImageList.
17366         * ImageListStreamer.cs: Added a new internal constructor that takes an
17367           ImageList.ImageCollection and serializes Images based on
17368           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
17369           match ImageList property name.
17370
17371 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
17372
17373         * ListBox.cs: Fixes IndexFromPoint for last item
17374
17375 2005-09-27  Jackson Harper  <jackson@ximian.com>
17376
17377         * Form.cs: Set the position of new mdi children correctly.
17378
17379 2005-09-27  Jackson Harper  <jackson@ximian.com>
17380
17381         * MdiClient.cs: New mdi children need to be added to the back of
17382         the controls collection so the zorder is set correctly. Also add a
17383         count of all the child windows that have been created.
17384
17385 2005-09-27  Jackson Harper  <jackson@ximian.com>
17386
17387         * Form.cs (CreateParams): Setup MDI forms correctly.
17388
17389 2005-09-27  Jackson Harper  <jackson@ximian.com>
17390
17391         * MdiChildContext.cs:
17392         * MonthCalendar.cs:
17393         * UpDownBase.cs:
17394         * ListBox.cs:
17395         * ListView.cs:
17396         * TextBoxBase.cs:
17397         * TreeView.cs:
17398         * ScrollableControl.cs:
17399         * ComboBox.cs: Add implicit controls using the new implict control
17400         functionality in ControlCollection. Also try to block multiple
17401         control add in a suspend/resume layout to save some cycles.
17402         
17403 2005-09-27  Jackson Harper  <jackson@ximian.com>
17404
17405         * Control.cs: Add functionality to the controls collection to add
17406         'implicit controls' these are controls that are created by the
17407         containing control but should not be exposed to the user. Such as
17408         scrollbars in the treeview.
17409         * Form.cs: The list var of the ControlsCollection is no longer
17410         available because of the potential of implicit controls getting
17411         ignored by someone accessing the list directly.
17412
17413 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
17414
17415         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
17416           loose it's parent. (Fixed bug introduced in r49103 when we added
17417           setting the child parent to null on Remove)
17418
17419 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
17420
17421         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
17422         * Splitter.cs: Added missing attributes for BorderStyle property.
17423         * TextBoxBase.cs: Marked Calculate* methods internal.
17424         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
17425         MS.NET.
17426
17427 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
17428          
17429         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
17430
17431 2005-09-25  Jackson Harper  <jackson@ximian.com>
17432
17433         * TreeView.cs: Update the node bounds correctly regardless of
17434         whether the node is visible.
17435
17436 2005-09-25  Jackson Harper  <jackson@ximian.com>
17437
17438         * ImageList.cs: Don't dispose the image after it is added to the
17439         image list. Only reformat images that need to be resized.
17440
17441 2005-09-25  Jackson Harper  <jackson@ximian.com>
17442
17443         * ImageList.cs: Don't set the format when changing the image.
17444
17445 2005-09-25  Jackson Harper  <jackson@ximian.com>
17446
17447         * TreeView.cs: We can't just assume the node has a font. Use the
17448         treeviews font if no node font is available.
17449
17450 2005-09-25  Jackson Harper  <jackson@ximian.com>
17451
17452         * TreeView.cs: Allow the scrollbars to be reset with negative
17453         values.
17454         - Don't add scrollbars to negative sized windows.
17455
17456 2005-09-23  Jackson Harper  <jackson@ximian.com>
17457
17458         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
17459         old Mono.Posix. Also remove some stray code that shouldn't have
17460         been committed.
17461
17462 2005-09-23  Jackson Harper  <jackson@ximian.com>
17463
17464         * TreeView.cs: Attempt at proper sizing of the horizontal
17465         scrollbar. Also don't resize the scrollbars unless they are
17466         visible.
17467
17468 2005-09-23  Jackson Harper  <jackson@ximian.com>
17469
17470         * TreeView.cs: We don't need to expand the invalid area when the
17471         selection changes, as this is all drawn in the node's bounding
17472         box. The area needs to be expanded (previous typo was contracting
17473         it) when the focus rect moves.
17474
17475 2005-09-23  Jackson Harper  <jackson@ximian.com>
17476
17477         * TreeView.cs: Display the selection box under the correct
17478         circumstances. We were rendering white text with no selection box
17479         before.
17480
17481 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
17482
17483         * TextControl.cs(Split): Now updates selection start/end if it points 
17484           into a line that's being split. Fixes a FIXME and bug #75258
17485
17486 2005-09-23  Jackson Harper  <jackson@ximian.com>
17487
17488         * Binding.cs:
17489         * ListControl.cs: Don't use the path when retrieving binding
17490         managers from the binding context. My bat sense tells me that the
17491         path is only used on insertion.
17492
17493 2005-09-22  Jackson Harper  <jackson@ximian.com>
17494
17495         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
17496
17497 2005-09-22  Jackson Harper  <jackson@ximian.com>
17498
17499         * Splitter.cs: There are special cursors used for splitting.
17500         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
17501
17502 2005-09-22  Jackson Harper  <jackson@ximian.com>
17503
17504         * Splitter.cs: Change the cursor appropriately when the splitter
17505         is moused over, so the user actually knows there is a splitter
17506         there.
17507
17508 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17509
17510        * Label.cs : Fix ToString method to give same output as MS.NET
17511
17512 2005-09-22  Jackson Harper  <jackson@ximian.com>
17513
17514         * TreeView.cs: Create the scrollbars when the handle is created
17515         and add them right away, just make them invisble. Also account for
17516         the window being shrunk vertically to the point that the vert
17517         scrollbar needs to be added.
17518         - Remove some 0.5 adjustments to get around anti aliasing issues.
17519         
17520 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
17521          
17522         * MainMenu.cs: Fixes default value
17523         * MenuItem.cs: Fixes default value
17524
17525 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
17526
17527         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
17528
17529 2005-09-21  Jackson Harper  <jackson@ximian.com>
17530
17531         * Control.cs: Don't try to set the border style on the window if
17532         it hasn't been created. When the window is created the border
17533         style will be used.
17534
17535 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17536
17537         * Control.cs (Update): Don't call XplatUI if we don't have a
17538           window handle yet
17539
17540 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17541
17542         * ContainerControl.cs: Instead of throwing an exception, print
17543           a one-time warning about Validate not being implemented
17544         * XplatUIWin32.cs: Removed debug output
17545
17546 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17547
17548         * Control.cs: Only set XplatUI background if we expect the windowing
17549           system to handle the background. This stops controls that draw their
17550           own background from flickering
17551
17552         * XplatUIX11.cs: Support custom visuals and colormaps for window 
17553           creation. This allows, amongst other things, using MWF X11 windows 
17554           with OpenGL.
17555
17556 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17557
17558         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
17559           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
17560           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
17561           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
17562           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
17563           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
17564           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
17565           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
17566           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
17567           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
17568           GridColumnStylesCollection.cs, 
17569           IDataGridColumnStyleEditingNotificationService.cs,
17570           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
17571           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
17572           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
17573           TreeNodeCollection.cs, AmbientProperties.cs, 
17574           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17575           DataObject.cs, ErrorProvider.cs, Splitter.cs,
17576           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
17577           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
17578           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
17579           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
17580           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
17581           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
17582           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
17583           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
17584           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
17585           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
17586           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
17587           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
17588           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
17589           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
17590           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
17591           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
17592           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
17593           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
17594           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
17595           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
17596           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
17597           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
17598           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
17599           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
17600           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
17601           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
17602           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
17603           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
17604           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
17605           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
17606           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
17607           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
17608           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
17609           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
17610           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
17611
17612 2005-09-21  Jackson Harper  <jackson@ximian.com>
17613
17614         * TreeNode.cs: Call Before/After Expand not Collapse when
17615         expanding.
17616
17617 2005-09-20  Jackson Harper  <jackson@ximian.com>
17618         
17619         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
17620
17621 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
17622          
17623         * ListViewItem.cs:
17624                 - Fixes bug 76120
17625                 - Fixes proper storing of subitems
17626                 - Fixes not updated items
17627
17628 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
17629
17630         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
17631           things if our window handle isn't created yet. Also disabled 
17632           debug for TextBoxBase
17633
17634 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
17635
17636         * MenuAPI.cs: Remove filtering of events to allow menu usage
17637
17638 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17639
17640         * Cursor.cs: Allow null to be passed to Cursor.Current.
17641
17642 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
17643
17644         * ThemeWin32Classic.cs:
17645           - Change some private methods/fields to protected virtual so that 
17646             they can be accessed and overriden in derived classes
17647           - First refactoring of some methods. Derived themes now don't 
17648             need to duplicate the complete code from ThemeWin32Classic
17649         * ThemeNice.cs:
17650           - Added nice StatusBar
17651           - Derive from ThemeWin32Classic and not Theme
17652           - Removed duplicate ThemeWin32Classic code
17653
17654 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17655
17656         * Control.cs (ControlCollection.Add): If the value null is passed
17657         the control is ignored. 
17658
17659         Optimize this loop.
17660
17661 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
17662
17663         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
17664           PostQuitMessage state.
17665         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
17666
17667 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
17668
17669         * Application.cs: Our constructor will never get called, move 
17670           initialization to fields; fixes bug #75933
17671
17672 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17673
17674         * FileDialog.cs :
17675                 - Allow files to be selected properly using file name
17676                 combo box.
17677                 - Add ability to change diretory (absolute / relative)
17678                 using file name combo box.
17679
17680 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
17681          
17682         * ListBox.cs: 
17683                 - Fixes Multicolumn listboxes item wrong calculations
17684                 - Allows to click when only one item is in the listbox
17685                 - Fixes crash when no items using keyboard navigation
17686
17687 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
17688
17689         * ComboBox.cs: Reverted almost everything from the latest patch which
17690           broke ComboBox
17691
17692 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
17693         
17694         * ToolTip.cs:
17695                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
17696         * ComboBox.cs:
17697                 - When DropDownStyle is Simple, it does not show scrollbar 
17698                 to the last item of the list.
17699                 - When DropDownStyle is Simple, it crashed when the list was 
17700                 scrolled down with the down cursor key.
17701                 - Fixed a bug that when DropDownStyle is DropDownList, the 
17702                 selected item was not shown.
17703                 - The position of the selected item was not preserved when 
17704                 the next dropdown happened.
17705         * ThemeWin32Classic.cs:
17706                 - Items were wrapped at the right end.
17707         * CheckedListBox.cs:
17708                 - Fixed Add method
17709         * ListBox.cs:
17710                 - Items should be fully shown.
17711                 - When resizing and vertical scrollbar disappeared, the item 
17712                 of index 0 should be on the top of the list.
17713                 - GetItemRectangle should consider the size of ver. scrollbar
17714         * StatusBar.cs:
17715                 - SizingGrip area should not be allocated when it is not 
17716                 displayed.
17717                 - Now it reflects MinWidth of the containing panel and 
17718                 fixed a crash that happens when its width becomes so small.
17719
17720 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
17721
17722         * CheckedListBox.cs: Fixes bug 76028
17723         * ListBox.cs: Fixes bug 76028
17724
17725 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
17726
17727         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
17728         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
17729
17730 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
17731
17732         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
17733
17734 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17735
17736         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
17737
17738 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17739
17740         * IRootGridEntry.cs: Added
17741         * PropertyGridCommands.cs: Added
17742         * PropertiesTab.cs: Added missing methods and property
17743         * PropertyGridView.cs: Made class internal
17744         * PropertyGridTextBox.cs: Made class internal
17745
17746 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17747
17748         * MimeIcon.cs: Try to check some other environment variables
17749           if "DESKTOP_SESSION" returns "default"
17750
17751 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17752
17753         * ThemeNice.cs: Corrected background colors (e.g. menus)
17754         * ColorDialog.cs: Use correct background colors for controls
17755
17756 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17757
17758         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
17759
17760 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
17761
17762         * RichTextBox.cs: Added initial implementation
17763         * lang.cs: Removed. Was accidentally checked in long time ago
17764         * TODO: Removed. Contents were obsolete
17765
17766 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
17767                                                                                 
17768         * PropertiesTab.cs : Added
17769
17770 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
17771                                                                                 
17772         * PropertyGrid.cs : Update
17773         * PropertyGridView.cs : Update
17774         * System.Windows.Forms.resx : Added images and strings
17775
17776 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
17777
17778         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
17779  
17780 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
17781
17782         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
17783           a busy loop right after the Ungrab the X11 display is otherwise 
17784           blocked
17785
17786 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
17787
17788         * ThemeWin32Classic.cs: Optimise the use of clipping
17789
17790 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
17791
17792         * DataGrid.cs: fixes recursion bug
17793
17794 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
17795
17796         * ThemeNice.cs: 
17797           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
17798           - Cleanup
17799
17800 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
17801
17802         * ThemeNice.cs: Draw nice ProgressBars
17803
17804 2005-09-01  Miguel de Icaza  <miguel@novell.com>
17805
17806         * VScrollBar.cs: Another buglet found by Aaron's tool. 
17807
17808         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
17809         bug finder.
17810
17811 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
17812
17813         * ThemeNice.cs:
17814           - Added nicer menu drawing
17815           - Updated DrawTab
17816           - some refactoring
17817
17818 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
17819
17820         * CreateParams.cs (ToString): Made output match MS
17821         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
17822             handle is already created (to avoid forcing window creation)
17823         * XplatUIX11.cs: Set window text to caption after creating window,
17824           in case Text was set before window was created
17825         * Form.cs: Use this.Text instead of a static string as caption
17826
17827 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
17828
17829         * NotifyIcon.cs: Don't set the window to visible; this screws
17830           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
17831           OnPaint without a bitmap)
17832         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
17833           happen very often anyway; we could add the check to the WM_PAINT 
17834           event generation code
17835
17836 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
17837
17838         * NotifyIcon.cs: Fill the icon area with a background color, to 
17839           avoid 'residue' when transparent icons are drawn
17840         * XplatUIX11.cs:
17841           - Handle whole_window == client_window when destroying windows
17842           - SystrayAdd(): Set client_window to whole_window value to
17843             get mouse and other events passed to NotifyIcon
17844
17845 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
17846
17847         * Form.cs: Set proper default for Opacity property
17848         * NotifyIcon.cs:
17849           - ShowSystray(): Don't bother creating telling the OS
17850             about the systray item if no icon is provided
17851           - Now handles WM_NCPAINT message to deal with whole/client window
17852             split
17853           - Create window as visible to not get caught by Expose optimization
17854         * Hwnd.cs: Removed debug message
17855         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
17856           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
17857             PaintEventStart/End to use new client argument
17858         * TextBoxBase.cs:
17859           - Commented out debug messages
17860           - Switched PaintEventStart/End to use new client argument
17861         * XplatUI.cs: Added client window bool to PaintEventStart()/
17862           PaintEventEnd() calls, to support drawing in non-client areas
17863         * XplatUIDriver.cs: 
17864           - Added client window bool to PaintEventStart()/PaintEventEnd() 
17865             calls, to support drawing in non-client areas
17866           - Added conditional compile to allow using MWF BeginInvoke 
17867             on MS runtime
17868         * XplatUIX11.cs:
17869           - Added some conditional debug output
17870           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
17871             whole/client window split
17872           - Implemented handling of client argument to PaintEventStart()/End()
17873         * Control.cs:
17874           - Throw exception if BeginInvoke() is called and the window handle
17875             or one of the window's parent handles is not created
17876           - Added conditional compile to allow using MWF BeginInvoke on
17877             MS runtime
17878           - get_Parent(): Only sets parent if handle is created. This avoids
17879             forcing window handle creation when parent is set.
17880           - Now fires Layout and Parent changed events in proper order
17881           - Switched to use Handle instead of window.Handle for Z-Order setting,
17882             the get_Parent() patch above causes us to possibly get null for 'window'
17883           - Implemented handling of client argument to PaintEventStart()/End()
17884           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
17885             default handling)
17886           - Now sends a Refresh() to all child windows when Refresh() is called
17887
17888 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
17889
17890         * Form.cs: Added (non-functional) Opacity property
17891         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
17892
17893 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
17894         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
17895           use export MONO_THEME=nice to activate it.
17896           Currently supported controls:
17897           - Button
17898           - ComboBox
17899           - ScrollBar
17900           - TabControl (TabAlignment.Top only, other will follow)
17901         * ThemeEngine.cs: Add theme nice
17902         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
17903           if enabled
17904
17905 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
17906
17907         * Splitter.cs: Resize docked control and its neighbor.
17908
17909 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17910         -- Making Windows with Menus layout correctly --
17911         * Form.cs : The first leg of the fix
17912                 Menu setter - adjust Client Size as needed to make space for the menu
17913                 SetClientSizeCore - doesn't call base version to be able to pass the 
17914                         menu handle to XplatUI.CalculateWindowRect
17915         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
17916         * XplatUIX11.cs: The critical second leg of the fix
17917                 GetWindowPos needs to use a recalculated client_rect
17918                 so that resizing the window doesn't break layout of child controls. 
17919                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
17920                 Lots of \t\n killed
17921
17922 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
17923
17924         * Label.cs: Now properly recalculates width and height on Font and Text
17925           changes if AutoSize is set
17926
17927 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17928         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
17929
17930 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
17931
17932         * ImageList.cs: Makes ToString method compatible with MS
17933
17934 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
17935
17936         * MenuAPI.cs: fixes bug 75716
17937
17938 2005-08-11 Umadevi S <sumadevi@novell.com>
17939         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
17940
17941 2005-08-11 Umadevi S <sumadevi@novell.com>
17942         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
17943
17944 2005-08-10  Umadevi S <sumadevi@novell.com>
17945         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
17946
17947 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
17948
17949         * Menu.cs: fixes bug 75700
17950         * MenuAPI.cs: fixes navigation issues
17951
17952 2005-08-09  Umadevi S <sumadevi@novell.com>
17953         * CheckedListBox.cs - simple fix for GetItemChecked.
17954
17955 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
17956
17957         * ComboBox.cs: Serveral fixes
17958         * ListBox.cs: Serveral fixes
17959
17960 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17961
17962         * ComboBox.cs: Fixes FindString methods and GetItemHeight
17963         * ListBox.cs: Fixes FindString methods
17964
17965 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17966
17967         * DataGrid.cs: fixes bugs exposed by new tests
17968
17969 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
17970
17971         * Mime.cs: Compile Mono assembly references only if compiling
17972           with Mono (Allows to build with VS.Net again)
17973
17974 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
17975
17976         * Control.cs (PaintControlBackground): Draw background image
17977         corrrectly.
17978         (CheckForIllegalCrossThreadCalls): Stubbed.
17979         
17980         * Form.cs (OnCreateControl): Center when should be centered.
17981         
17982         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
17983
17984 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
17985
17986         * Binding.cs: Binding to properties should be case unsensitive
17987
17988 2005-07-18 vlindos@nucleusys.com
17989
17990         * DataGrid.cs: fixes setmember order
17991
17992 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
17993
17994         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
17995         * FileDialog.cs: FileDialog is now resizable and uses the new
17996           MimeIconEngine
17997
17998 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
17999
18000         * DataGridTextBoxColumn.cs: default value
18001         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
18002         * GridTableStylesCollection.cs: fixes checking MappingName
18003         * DataGridDrawingLogic.cs: fixes drawing logic issues
18004         * DataSourceHelper.cs: rewritten to make compatible with more data sources
18005         * DataGrid.cs: fixes    
18006
18007 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
18008
18009         * MimeGenerated.cs: Use case sensitive comparer for
18010           NameValueCollections
18011
18012 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
18013
18014         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
18015         * ThemeWin32Classic.cs: bug fixes, code refactoring
18016         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
18017         * DataGrid.cs: bug fixes, code refactoring
18018         * DataGridTextBox.cs: bug fixes, code refactoring
18019         * DataGridColumnStyle.cs:  bug fixes, code refactoring
18020         * Theme.cs:  bug fixes, code refactoring
18021
18022 2005-07-01  Peter Bartok  <pbartok@novell.com> 
18023
18024         * TextControl.cs: Quick fix for the reported crash on ColorDialog
18025           and other text box usage
18026
18027 2005-07-01  Jackson Harper  <jackson@ximian.com>
18028
18029         * TabControl.cs: Make sure the bottom of the tab covers the pages
18030         border.
18031
18032 2005-06-30  Peter Bartok  <pbartok@novell.com> 
18033
18034         * Form.cs (ShowDialog): Assign owner of the dialog
18035         * TextBoxBase.cs: Always refresh caret size when deleting, caret
18036           might have been moved to a tag with different height
18037
18038 2005-06-30  Jackson Harper  <jackson@ximian.com>
18039
18040         * Form.cs: Don't create an infinite loop when setting focus
18041         * MenuItem.cs: Don't dirty the parents if we don't have any
18042
18043 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
18044
18045         * LibSupport.cs: Rename
18046
18047 2005-06-29  Peter Bartok  <pbartok@novell.com>
18048
18049         * TextBoxBase.cs: Re-align caret after deleting a character
18050         * TextControl.cs:
18051           - DeleteChars(): Ensure that tag covers the provided position
18052           - StreamLine(): Drop reference for dropped tag
18053
18054 2005-06-29  Peter Bartok  <pbartok@novell.com> 
18055
18056         * TextControl.cs: 
18057           - Selections now work properly, anchoring at the initial location
18058             and properly extending in either direction (SetSelectionToCaret(),
18059             SetSelectionStart() and SetSelectionEnd())
18060           - No longer redraws the whole control on selection change, now
18061             calculates delta between previous and new selection and only
18062             invalidates/redraws that area
18063           - Fixed FindPos() math off-by-one errors
18064           - Changed DeleteChars() to verify the provided tag covers the
18065             provided position, selections may have a tag that doesn't cover
18066             the position if the selection is at a tag border
18067           - Fixed off-by-one errors in DeleteChars()
18068           - Added missing streamlining check in DeleteChars() to remove
18069             zero-length tags
18070           - Implemented Invalidate() method, now properly calculates exposures
18071             between two given lines/positions
18072           - Implemented SetSelection()
18073           - Obsoleted and removed FixupSelection()
18074           - Improved RecalculateDocument() logic, removing code duplication
18075
18076 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18077
18078         * LibSupport.cs: changes to match different input/output arguments.
18079
18080 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18081
18082         * LibSupport.cs: added libsupport.so init routine.
18083
18084 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
18085         
18086         * ControlBindingsCollection.cs
18087                 - Throws an exception on null datasource when adding
18088                 - Checks for duplicated bindings when adding
18089
18090 2005-06-28  Jackson Harper  <jackson@ximian.com>
18091
18092         * TreeView.cs (OnKeyDown): Support left and right properly
18093         (navigates as well as expanding and collapsing.
18094         - Add support for Multiply, this expands all the selected nodes
18095         children.
18096         - Fix some tabbing.
18097
18098 2005-06-28  Jackson Harper  <jackson@ximian.com>
18099
18100         * TreeView.cs: Implement keyboard navigation, currently supports,
18101         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
18102         support for toggling checkboxes with the space bar.
18103
18104 2005-06-28  Jackson Harper  <jackson@ximian.com>
18105
18106         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
18107         tree.
18108
18109 2005-06-28  Jackson Harper  <jackson@ximian.com>
18110
18111         * TreeView.cs: Add missing event.
18112
18113 2005-06-27  Peter Bartok  <pbartok@novell.com> 
18114
18115         * TextControl.cs:
18116           - Made line ending size configurable (now allows for counting 
18117             lineendings as \n or \r\n)
18118           - Added margin to viewport to keep caret visible on right side
18119           - Fixed translation routines for line/pos to documentpos to consider
18120             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
18121           - Fixed some line-endings to be unix style
18122           - Fixed Document.FormatText to perform it's calculations 1-based
18123           - Added descriptions for a few methods that might otherwise get 
18124             used wrong
18125           - Added NOTE section with some basic conventions to remember at 
18126             the top of the file
18127           - Major fixup for RichTextBox selection drawing:
18128             * Fixed crashes when multiple tags on a single line were selected
18129             * fixed selection box drawing not overlaying text
18130             * fixed bogus offset calculation for tags not starting at index 1
18131             * Switched behaviour from using multiple Substrings of a 
18132               StringBuilder.ToString() to using multiple 
18133               StringBuilder.ToString(start, length) statements, hoping this is
18134               faster (kept original version commented out in the code, in case
18135               original version was faster)
18136         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
18137           alignment != Left
18138         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
18139           call it as well
18140
18141 2005-06-27  Jackson Harper  <jackson@ximian.com>
18142
18143         * TabControl.cs: Move to the left and right with the arrow
18144         keys. These keys don't cycle beyond first and last like
18145         tab. Refresh all the tabs when scrolling them to the left or
18146         right.
18147
18148 2005-06-27  Jackson Harper  <jackson@ximian.com>
18149
18150         * TabControl.cs:
18151           - ToString: Added method
18152           - CreateParams: Remove TODO and comment
18153           - OnKeyDown: Cycle through bounds properly.
18154           - SelectedIndex: Scroll to the right or left if we need to
18155           display the newly selected tab.
18156
18157 2005-06-23  Jackson Harper  <jackson@ximian.com>
18158
18159         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
18160         set.
18161
18162 2005-06-23  Jackson Harper  <jackson@ximian.com>
18163
18164         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
18165         CTRL-SHIFT-TAB, and HOME, END are there any others?
18166
18167 2005-06-23  Jackson Harper  <jackson@ximian.com>
18168
18169         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
18170
18171 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
18172         
18173         * DataGridTextBoxColumn.cs: fixes and enhancements
18174         * ThemeWin32Classic.cs: fixes and enhancements
18175         * DataGridBoolColumn.cs:  fixes and enhancements
18176         * DataGridDrawingLogic.cs:  fixes and enhancements
18177         * CurrencyManager.cs: fixes and enhancements
18178         * DataGrid.cs: fixes and enhancements
18179         * DataGridColumnStyle.cs:  fixes and enhancements
18180
18181 2005-06-22  Jackson Harper  <jackson@ximian.com>
18182
18183         * TabControl.cs: Add some missing methods that just call into the
18184         base. Make the TabPageCollection's IList interface behave in the
18185         same manner as the MS implementation.
18186
18187 2005-06-22  Peter Bartok  <pbartok@novell.com> 
18188
18189         * TextControl.cs: Added sanity check
18190         * TextBoxBase.cs: 
18191           - Fixed wrapping behaviour, don't set wrap on single line controls
18192             (this fixes the breakage of colordialog introduced in an earlier
18193              checkin)
18194           - Added rudimentary support for autoscrolling right-aligned controls
18195             (still needs fixing, also, center alignment scroll is missing)
18196
18197 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
18198         
18199         * ScrollBar.cs: Fixes thumbpos on Maximum values
18200
18201 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
18202         
18203         * PropertyGridView.cs: Pass context information to UITypeEditors 
18204
18205 2005-06-21  Peter Bartok  <pbartok@novell.com> 
18206
18207         * TextBoxBase.cs:
18208           - Now calling PositionCaret with absolute space coordinates
18209           - Enabled vertical scrolling
18210           - Better tracking of scrollbar changes, tied into WidthChange
18211             event
18212           - Improved cursor tracking
18213           - Removed debug output
18214         * TextControl.cs:
18215           - PositionCaret coordinates are now works in absolute space, not 
18216             the canvas
18217           - Improved tracking of document size
18218           - Added events for width and height changes
18219
18220 2005-06-21  Peter Bartok  <pbartok@novell.com>
18221
18222         * Form.cs: Set focus to active control when form is activated
18223         * TextControl.cs: 
18224           - Added word-wrap functionality to RecalculateLine() 
18225           - Added some short function descriptions for VS.Net to aid in
18226             writing dependent controls
18227           - Added Caret property, returning the current coords of the caret
18228           - Added ViewPortWidth and ViewPortHeight properties
18229           - Added Wrap property
18230           - Added CaretMoved event
18231           - Removed some old debug code
18232           - Split() can now create soft splits
18233           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
18234           - Added method to format existing text
18235           - Fixed size/alignment calculations to use viewport
18236           - RecalculateDocument now can handle changing line-numbers while
18237             calculating lines
18238
18239         * TextBox.cs:
18240           - Added some wrap logic, we don't wrap if alignment is not left
18241           - Added casts for scrollbar var, base class switched types to
18242             also support RichTextBoxA
18243           - Implemented handling of scrollbar visibility flags
18244
18245         * TextBoxBase.cs:
18246           - Switched scrollbars type to RichTextBoxScrollBars to support
18247             RichTextBox
18248           - Added tracking of canvas width/height
18249           - Switched scrollbars to be not selectable (to keep focus on text)
18250           - Added central CalculateDocument() method to handle all redraw
18251             requirements
18252           - Added ReadOnly support
18253           - Added WordWrap support
18254           - Fixed handling of Enter key (we now treat it as a DialogKey)
18255           - Fixed caret positioning when h or v scroll is not zero
18256           - Fixed placing/generation of vertical scrollbar
18257           - Added CalculateScrollBars() method to allow updating scrollbar
18258             limits and visibility
18259           - Fixed handling of horizontal scroll
18260           - Added handling of vertical scroll
18261           - Implemented auto-'jump' when caret moves to close to a left or
18262             right border and there is text to be scrolled into view (currently
18263             there's the potential for a stack overflow, until a bug in
18264             scrollbar is fixed)
18265
18266 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
18267         
18268         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
18269
18270 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
18271
18272         * Mime.cs:
18273         - added inodes.
18274         - return application/x-zerosize for files with size zero
18275           (if no extension pattern matches).
18276         - check matches collection for strings too.
18277         - return only the first mime type if the name value
18278           collection has more than one mime type.
18279
18280 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
18281         
18282         * PropertyGrid.cs: Cleaned up some TODOs
18283         * PropertyGridView.cs: Added support for UITypeEditors
18284
18285 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18286         
18287         * DataGrid.cs: clears cached value
18288
18289 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18290
18291         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
18292         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
18293         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
18294         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
18295         
18296 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
18297
18298         * ThemeWin32Classic.cs: fixes colour
18299
18300 2005-06-15  Peter Bartok  <pbartok@novell.com>
18301
18302         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
18303         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
18304         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
18305         * Control.cs: Added some MWFCategory and MWFDescription attributes
18306         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
18307
18308 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
18309
18310         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
18311         usage
18312
18313 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
18314
18315         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
18316         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
18317         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
18318         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
18319         * DataGrid.cs: default datagrid settings for Default Styles, fixes
18320         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
18321
18322 2005-06-13  Jackson Harper  <jackson@ximian.com>
18323
18324         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
18325         isn't printed when the user enables dropping. (X11 does accept
18326         drops).
18327         
18328 2005-06-13  Jackson Harper  <jackson@ximian.com>
18329
18330         * TreeView.cs: Remove some TODOS.
18331
18332 2005-06-13  Jackson Harper  <jackson@ximian.com>
18333
18334         * Form.cs: Hook into the mdi framework.
18335         * MdiClient.cs: Use the base control collections add method so
18336         parents get setup correctly. Set the default back colour and dock
18337         style.
18338         * MdiChildContext.cs: New class, this bad actor handles an
18339         instance of an MDI window. Right now there is only basic
18340         support. You can drag, close, and resize windows. Minimize and
18341         Maximize are partially implemented.
18342
18343 2005-06-13  Jackson Harper  <jackson@ximian.com>
18344
18345         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
18346         freaky when both vals are negative. NOTE: There are probably other
18347         places in XplatUIX11 that this needs to be done.
18348
18349 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
18350
18351         * DataGrid.cs: implement missing methods, move KeyboardNavigation
18352         * DataGridColumnStyle.cs: fixes signature
18353
18354 2005-06-12  Jackson Harper  <jackson@ximian.com>
18355
18356         * XplatUIX11.cs: Use sizing cursors similar to the ones on
18357         windows.
18358
18359 2005-06-11  Jackson Harper  <jackson@ximian.com>
18360
18361         * StatusBarPanel.cs: Signature cleanups. Implement
18362         BeginInit/EndInit.
18363
18364 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
18365
18366         * DataGridTextBoxColumn.cs: Honors aligment
18367         * GridColumnStylesCollection.cs: Contains is case unsensitive
18368         * GridTableStylesCollection.cs: several fixes
18369         * DataGridTableStyle.cs: default column creation
18370         * DataGridDrawingLogic.cs: fixes
18371         * CurrencyManager.cs: ListName property
18372         * DataGrid.cs: multiple styles support
18373         * DataGridColumnStyle.cs: fixes
18374         
18375
18376 2005-06-10  Peter Bartok  <pbartok@novell.com>
18377
18378         * Control.cs(Select): Moved SetFocus call to avoid potential
18379           loops if controls change the active control when getting focus
18380         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
18381           the up/down buttons
18382
18383 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
18384
18385         * ImageListConverter.cs: Implemented
18386
18387 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18388
18389         * MonthCalendar.cs: Wired in NumericUpDown control for year
18390
18391 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18392
18393         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
18394           DoubleClick events, since they are not meant to be fired.
18395
18396 2005-06-09  Peter Bartok  <pbartok@novell.com>
18397
18398         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
18399           Jonathan's standalone controls into MWF, implemented missing
18400           events, attributes and methods; added xxxAccessible classes
18401         * AccessibleObject.cs: Made fields internal so other classes
18402           can change them if needed
18403
18404 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
18405
18406         * UpDownBase.cs: Complete implementation
18407         * NumericUpDown.cs: Complete implementation
18408         * DomainUpDown.cs: Complete implementation
18409
18410 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
18411
18412         * DataGridTextBoxColumn.cs: drawing fixes
18413         * DataGridCell.cs: fixes ToString method to match MSNet
18414         * DataGridTableStyle.cs: fixes
18415         * DataGridBoolColumn.cs: fixes, drawing
18416         * DataGridDrawingLogic.cs: fixes, new methods
18417         * DataGridTextBox.cs: Keyboard and fixes
18418         * DataGrid.cs:
18419                 - Keyboard navigation
18420                 - Scrolling fixes
18421                 - Row selection (single, multiple, deletion, etc)
18422                 - Lots of fixes
18423         
18424 2005-06-07  Jackson Harper  <jackson@ximian.com>
18425
18426         * ThemeWin32Classic.cs: Clear the background area when drawing
18427         buttons.
18428
18429 2005-06-06  Peter Bartok  <pbartok@novell.com>
18430
18431         * ImageListStreamer.cs: Fixed signature for GetData
18432         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
18433         * ComboBox.cs:
18434           - Added missing ChildAccessibleObject class
18435           - Added missing OnXXXFocus overrides, switched to using those
18436             instead of the event handler
18437         * Control.cs:
18438           - Added Parent property for ControlAccessibleObject
18439           - Fixed signatures
18440           - Fixed attributes
18441           - Added ResetBindings()
18442         * ListBindingConverter.cs: Implemented some methods
18443         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
18444         * ImageList.cs: Implemented basic handle scheme, removed TODOs
18445         * ContainerControl.cs: Fixed signature, now subscribing to the
18446           ControlRemoved event instead of overriding the handler, LAMESPEC
18447         * CurrencyManager.cs: Added missing attribute
18448         * MonthCalendar.cs: Added missing properties
18449
18450 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18451
18452         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
18453         
18454 2005-06-06  Gaurav Vaish and Ankit Jain
18455
18456         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
18457         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
18458         
18459 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18460
18461         * Control.cs: fixes CreateParams Width / Height.
18462
18463 2005-06-05  Peter Bartok  <pbartok@novell.com>
18464
18465         * Win32DnD.cs: Removed compilation warnings
18466
18467 2005-06-05  Peter Bartok  <pbartok@novell.com>
18468
18469         * Control.cs (CreateParams): Since we don't know if one of the
18470           properties we use is overridden, lets make sure if we fail accessing
18471           we continue with a backup plan
18472
18473 2005-06-05  Peter Bartok  <pbartok@novell.com>
18474
18475         * Win32DnD.cs:
18476           - Removed debug output
18477           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
18478             struct
18479           - Plugged resource leak
18480         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
18481           MS size
18482
18483 2005-06-05  Peter Bartok  <pbartok@novell.com>
18484
18485         * XplatUIWin32.cs: Removed DnD code
18486         * Win32DnD.cs: Implemented drop source and drop target functionality
18487
18488 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18489
18490         * UpDownBase.cs: remove duplicate addition of event, enable some code
18491         that was commented out.
18492         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
18493         Validate input when a key is pressed. It works fine now for every
18494         combination of Hexadecimal. Only missing some drawing love when sharing
18495         space with other controls.
18496
18497 2005-06-04  Peter Bartok  <pbartok@novell.com>
18498
18499         * Control.cs:
18500           - We need to pass a window for DragDrop, so enable callback events
18501           - Added DnD callback events when being a DragSource
18502         * XplatUI.cs (StartDrag): Added window handle argument
18503         * XplatUIDriver.cs (StartDrag): Added window handle argument
18504         * QueryContinueDragEventArgs: Made fields internally accessible so
18505           drivers can set them
18506         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
18507           can set them
18508
18509 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
18510
18511         * DataGridTextBoxColumn.cs: column text editing
18512         * DataGridTableStyle.cs: Respect columns styles created by the user
18513         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
18514         * DataGridBoolColumn.cs: bool column editing
18515         * DataGrid.cs: fixes to scrolling, properties, etc
18516         * DataGridTextBox.cs: handle keyboard
18517         * DataGridColumnStyle.cs: fixes
18518
18519 2005-06-02  Jackson Harper  <jackson@ximian.com>
18520
18521         * ImageListStreamer.cs: Somewhat broken implementation of
18522         GetObjectData. The RLE needs some work to match MS properly.
18523
18524 2005-06-02  Jackson Harper  <jackson@ximian.com>
18525
18526         * X11Dnd.cs: Attempting to keep at least one file in MWF
18527         monostyled.
18528
18529 2005-06-02  Peter Bartok  <pbartok@novell.com>
18530
18531         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
18532           that way
18533
18534 2005-06-02  Peter Bartok  <pbartok@novell.com>
18535
18536         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
18537         * XplatUI.cs: Added DoDragDrop() method
18538         * XplatUIDriver.cs: Added DoDragDrop() method
18539
18540 2005-06-02  Jackson Harper  <jackson@ximian.com>
18541
18542         * Splitter.cs: Implement BorderStyle.
18543
18544 2005-06-02  Jackson Harper  <jackson@ximian.com>
18545
18546         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
18547         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
18548         X11 using XDND.
18549
18550 2005-06-02  Peter Bartok  <pbartok@novell.com>
18551
18552         * DataObject.cs:
18553           - Added Data setter
18554           - Fixed broken insertion code for SetData, now also
18555             overwrites any existing entry of the same format name
18556         * Hwnd.cs: Added list of pointers that automatically gets
18557           freed when the window is disposed
18558         * XplatUI.cs: Call driver initialization method when loading
18559           a driver
18560         * Control.cs:
18561           - OnDragLeave takes EventArgs, not DragEventArgs
18562           - Added setting of WS_EX_ACCEPTFILES style when dropping is
18563             supported
18564           - Forces style update when drop state changes
18565         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
18566           not perfect since we cannot (yet) call the IDataObject.GetData()
18567           method, we keep getting 0x80004005 error, dunno why)
18568
18569 2005-06-02  Peter Bartok  <pbartok@novell.com>
18570
18571         * DragEventArgs.cs: Make fields internal so we can cache the
18572           object and re-set the fields from XplatUI
18573
18574 2005-06-02  Jackson Harper  <jackson@ximian.com>
18575
18576         * Control.cs: Add some internal methods so the DnD subsystem can
18577         raise DnD events. Also call into the driver when AllowDrop is set.
18578         * XplatUI.cs:
18579         * XplatUIDriver.cs: New method for setting whether or not a window
18580         is allowed to accept drag and drop messages.
18581                 
18582 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
18583         
18584         * ScrollBar.cs: Make sure that values sent in Scroll events
18585         are always between Maximum and Minimum.
18586
18587 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
18588
18589         * Menu.cs: Call MenuChanged when menuitem visibility has been
18590         changed.
18591         * MenuItem.cs: Rebuild menu when item is (not) visible.
18592         * MainMenu.cs: MainMenu has special MenuChanged.
18593         * Theme.cs: Caption and FrameBorderSize are not fixed.
18594         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
18595         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
18596         * XplatUIX11.cs,
18597         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
18598         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
18599
18600 2005-05-30  Jackson Harper  <jackson@ximian.com>
18601
18602         * DataFormat.cs: We can't statically initialize this stuff because
18603         it calls into the xplatui and could create a loop. So we lazy init
18604         it.
18605
18606 2005-05-28  Jackson Harper  <jackson@ximian.com>
18607
18608         * Control.cs: Proper implementation of Product(Name/Version).
18609
18610 2005-05-27  Jackson Harper  <jackson@ximian.com>
18611
18612         * DataObject.cs: Dont crash if no data is found.
18613
18614 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
18615         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
18616                 as per status page, guessing it should be set to true
18617
18618 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
18619
18620         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
18621         * DataGridTableStyle.cs: set proper formatting text, def header text
18622         * ThemeWin32Classic.cs: new themable paramaters
18623         * DataGridBoolColumn.cs: paint check box, get data, fixes
18624         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
18625         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
18626         * DataGridColumnStyle.cs: fixes
18627         * Theme.cs: new themable paramaters
18628                 
18629 2005-05-26  Peter Bartok  <pbartok@novell.com>
18630
18631         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
18632
18633 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18634         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
18635
18636 2005-05-24  Peter Bartok  <pbartok@novell.com>
18637
18638         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
18639           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
18640           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
18641           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
18642           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
18643           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
18644           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
18645           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
18646           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
18647           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
18648           missing attributes, etc
18649         * DataGridPreferredColumnWidthTypeConverter.cs: Added
18650
18651 2005-05-24  Peter Bartok  <pbartok@novell.com>
18652
18653         * Help.cs: Added, implemented trivial functions, throws up MessageBox
18654           when user tries to get help
18655         * DataObject.cs, DataFormats.cs, LinkArea.cs,
18656           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
18657           to suppress warnings
18658         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
18659           avoid unreachable code warning
18660
18661 2005-05-20  Peter Bartok  <pbartok@novell.com>
18662
18663         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
18664
18665 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18666
18667         * DataGridTextBoxColumn.cs: Basic painting methods
18668         * DataGridTableStyle.cs: Set table style in the column
18669         * ThemeWin32Classic.cs: Use Theme for colors
18670         * DataGridDrawingLogic.cs: Implement more drawing
18671         * DataGrid.cs: drawing, theming, enhacements, fixes
18672         * DataGridColumnStyle.cs: fixes, drawing
18673         * Theme.cs: theming for Datagrid
18674
18675 2005-05-20  Peter Bartok  <pbartok@novell.com>
18676
18677         * Cursor.cs: Implemented GetObjectData() method
18678
18679 2005-05-20  Peter Bartok  <pbartok@novell.com>
18680
18681         * Cursors.cs: Added setting of cursor name
18682         * Cursor.cs:
18683           - Implemented constructors
18684           - Implemented Draw and DrawStretched
18685           - Implemented Current property
18686           - Implemented == and != operators
18687           - Implemented Dispose()
18688           - Implemented ToString
18689           - Added missing attributes
18690         * XplatUIX11.cs:
18691           - Added missing reset for OverrideCursor when DoEvents is called
18692           - Fixed creation of cursor, logic was wrong
18693         * XplatUIWin32.cs:
18694           - Added missing reset for OverrideCursor when DoEvents is called
18695           - Fixed creation of cursor, bit arrays were swapped
18696         * Clipboard.cs: Removed obsolete MonoTODO attribute
18697
18698 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18699
18700         * ComboBox.cs: fixes OnSelectedItemChanged
18701         * ControlBindingsCollection.cs: fixes item range check
18702
18703 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18704
18705         * UpDownBase.cs:
18706                 - Calc preferred height properly
18707                 - Implement missing properties
18708                 
18709         * NumericUpDown.cs: Implement missing events
18710
18711 2005-05-19  Jackson Harper  <jackson@ximian.com>
18712
18713         * TabControl.cs: New method that resizes the tab pages before
18714         redrawing them. This as needed as the control is double buffered
18715         and sizing will not be recalculated unless ResizeTabPages is
18716         called.
18717         * TabPage.cs: Set base.Text instead of Text in the constructor so
18718         that UpdateOwner does not get called. Use the new Redraw method of
18719         TabControl instead of Refresh so the sizing is recalculated.
18720         * ThemeWin32Classic.cs: Draw the text for button tabs.
18721
18722 2005-05-19  Jackson Harper  <jackson@ximian.com>
18723
18724         * Control.cs: Paint control background images. Fix typo where
18725         PaintControlBackground was not getting called correctly.
18726
18727 2005-05-19  Peter Bartok  <pbartok@novell.com>
18728
18729         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
18730           I can investigate, apparently I broke FileDialog
18731
18732 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
18733
18734         * AxHost.cs: Some simple properties.
18735         * Control.cs: window must be accessible after ctor.
18736         * Form.cs: Added TransparencyKey property.
18737         * TextBoxBase.cs: Implemented Clear. Text property can be null.
18738         * XplatUIWin32.cs: SetBorderStyle implemented.
18739
18740 2005-05-18  Peter Bartok  <pbartok@novell.com>
18741
18742         * DataObject.cs: Entries are not global but particular to the
18743           DataObject, now it behaves that way
18744         * XplatUIWin32.cs: Implemented Clipboard methods
18745         * Clipboard.cs: Implemented
18746         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
18747         * XplatUIOSX.cs: Updated to final clipboard prototypes
18748         * XplatUIX11.cs: Implemented Clipboard methods
18749         * XplatUIDriver.cs: Updated to final clipboard prototypes
18750         * XplatUIStructs.cs:
18751           - Added BITMAPINFOHEADER struct
18752           - Added ClipboardFormats enum
18753         * X11Structs.cs:
18754           - Added ClipboardStruct
18755           - Added Atom enum items for clipboard types
18756           - Fixed atom types for Selection event structures
18757         * DataFormats.cs:
18758           - Added internal properties and methods for drivers to enumerate
18759             all known formats
18760           - Switched initialization method to allow drivers to assign their
18761             own IDs even for the MS predefined clipboard IDs
18762         * XplatUI.cs: Updated to final clipboard interface
18763
18764 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18765         * PropertyGridView.cs: Fixed compiler warnings.
18766
18767 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18768         * PropertyGrid.cs: Added some event calls
18769         * PropertyGridView.cs: Change drawing code to use double buffering
18770         * PropertyGridTextBox.cs: Changed Text property name
18771         * GridItem.cs: Added Bounds property.
18772         * GridEntry.cs: Added Bounds property.
18773
18774 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
18775
18776         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
18777         since GetType() may not return the correct type if the object is
18778         a remoting proxy.
18779
18780 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
18781
18782         * TreeNodeCollection.cs: fixes get/set item ranges
18783         
18784 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
18785
18786         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
18787                 
18788 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
18789
18790         * ComboBox.cs: Fix item range comparation
18791         * ListView.cs: Fix item range comparation
18792
18793 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
18794
18795         * FontDialog.cs:
18796           - Clear example panel when OnPaint is called
18797           - Better solution for displaying the example panel text
18798           - Select default indexes in the ListBoxes
18799
18800 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
18801
18802         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
18803
18804 2005-05-11  Peter Bartok  <pbartok@novell.com>
18805
18806         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
18807         * SelectionRangeConverter.cs: Implemented
18808         * PropertyGrid.cs: Fixed attribute value
18809         * Control.cs:
18810           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
18811           - Added Sebastien Pouliot's CAS Stack Propagation fixes
18812         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
18813           that's common to all drivers. First methods to go there are
18814           Sebastien Pouliot's CAS Stack Propagation helper methods
18815         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
18816           Sebastien Pouliot for CAS Stack Propagation
18817
18818 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
18819
18820         * OSXStructs.cs:
18821           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
18822
18823 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
18824
18825         * DataGridTextBoxColumn.cs: fixed some members
18826         * GridColumnStylesCollection.cs: indexed column is case insensitive
18827         * DataGridTableStyle.cs: fixes
18828         * ThemeWin32Classic.cs: add new theme parameter
18829         * Theme.cs: add new theme parameter
18830         * DataGridDrawingLogic.cs: Datagrid's drawing logic
18831         * DataGrid.cs: fixes, new internal properties, etc.
18832         * DataGridColumnStyle.cs: allows to set grid value
18833         *
18834
18835 2005-05-10  Peter Bartok  <pbartok@novell.com>
18836
18837         * AccessibleObject.cs:
18838           - Removed MonoTODO attribute on help, method is correct
18839           - Fixed Bounds property
18840         * AxHost.cs: Moved MonoTODO
18841         * ButtonBase.cs: Now setting AccessibleObject properties
18842         * RadioButton.cs: Setting proper AccessibleObject role
18843         * CheckBox.cs: Setting proper AccessibleObject role
18844         * ControlBindingsCollection.cs: Added properties, methods and attributes
18845         * DataFormats.cs: Fixed awkward internal API, and changed to enable
18846           userdefined DataFormats.Format items as well
18847         * ListControl.cs: Removed data_member from the public eye
18848         * OpenFileDialog.cs:
18849           - Made class sealed
18850           - Added missing attributes
18851         * SaveFileDialog.cs: Added missing attributes
18852         * ImageListStreamer.cs: Fixed code that caused warnings
18853         * LinkLabel.cs: Removed unreachable code
18854         * TreeView.cs: Fixed code that caused warnings
18855         * PropertyGridView.cs: Fixed code that caused warnings
18856         * GridColumnStylesCollection.cs: Added missing attributes
18857         * GridTableStylesCollection: Added missing attribute
18858         * PropertyManager: Added .ctor
18859         * SecurityIDType: Added
18860         * DataObject.cs: Implemented class
18861         * LinkArea.cs: Added missing attribute
18862
18863 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
18864
18865         * RadioButton.cs: call base method to allow to fire OnClick event
18866         * UpDownBase.cs: OnMouseUp call base method
18867         * CheckedListBox.cs: call base method before returning
18868         * TrackBar.cs: call base method before returning
18869         
18870
18871 2005-05-10  Peter Bartok  <pbartok@novell.com>
18872
18873         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
18874           for messages
18875
18876 2005-05-10  Peter Bartok  <pbartok@novell.com>
18877
18878         * DataFormats.cs: Implemented
18879         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
18880           XplatUIX11.cs: Added Clipboard APIs
18881         * XplatUIWin32.cs: Implemented Clipboard APIs
18882         * FolderBrowserDialog.cs: Added missing event, attributes
18883
18884 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
18885
18886         * CheckBox.cs: call base method to allow to fire OnClick event
18887
18888 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
18889
18890         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
18891
18892 2005-05-06  Peter Bartok  <pbartok@novell.com>
18893
18894         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
18895         * Screen.cs: Implemented
18896         * HelpNavigator.cs: Added
18897         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
18898           property
18899         * HelpProvider.cs: Implemented all we can do until we have a CHM
18900           help library (which means that "What's This" does work now)
18901
18902 2005-05-06  Jackson Harper  <jackson@ximian.com>
18903
18904         * XplatUIX11.cs: Fix waking up the main loop.
18905                 
18906 2005-05-05  Peter Bartok  <pbartok@novell.com>
18907
18908         * XplatUI.cs: Updated revision
18909         * Form.cs: Removed enless loop
18910         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
18911         * Label.cs (OnPaint): Added call to base.OnPaint()
18912         * ToolTip.cs: Made ToolTipWindow reusable for other controls
18913         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
18914         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
18915         * AxHost.cs: Added
18916         * ButtonBase.cs: Moved base.OnPaint() call to end of method
18917         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
18918           to ToolTip.ToolTipWindow for drawing and size methods; this allows
18919           reuse of ToolTipWindow by other controls
18920         * SizeGrip.cs: Moved base.OnPaint() call to end of method
18921         * XplatUIX11.cs: Now clipping drawing area (experimental)
18922         * PictureBox.cs: Moved base.OnPaint() call to end of method
18923         * Theme.cs: Fixed ToolTip abstracts to match new format
18924         * ErrorProvider.cs: Implemented
18925
18926 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
18927
18928         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
18929         * LinkLabel.cs:
18930                 - Adds cursors
18931                 - Handles focus
18932                 - Implements LinkBehavior
18933                 - Fixes many issues
18934
18935 2005-05-03  Jackson Harper  <jackson@ximian.com>
18936
18937         * ListView.cs: Calculate the scrollbar positioning on resize and
18938         paint, so they get put in the correct place.
18939
18940 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
18941
18942         * ColorDialogs.cs: The small color panels are now handled by
18943           SmallColorControl. This fixes drawing of the focus rectangle
18944           and adds a 3D border.
18945
18946 2005-05-03  Peter Bartok  <pbartok@novell.com>
18947
18948         * Control.cs: Modified version of Jonathan Chamber's fix for
18949           double-buffering
18950
18951 2005-05-03  Jackson Harper  <jackson@ximian.com>
18952
18953         * ListView.cs: Remove redraw variable. Control now handles whether
18954         or not a redraw needs to be done, and will only raise the paint
18955         event if redrawing is needed.
18956
18957 2005-05-03  Jackson Harper  <jackson@ximian.com>
18958
18959         * Splitter.cs: No decorations for the splitter form. Cache the
18960         hatch brush.
18961
18962 2005-05-03  Jackson Harper  <jackson@ximian.com>
18963
18964         * TreeView.cs: Use dashed lines to connect nodes. Use the
18965         ControlPaint method for drawing the focus rect instead of doing
18966         that in treeview.
18967
18968 2005-05-02  Peter Bartok  <pbartok@novell.com>
18969
18970         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
18971
18972 2005-04-29  Jackson Harper  <jackson@ximian.com>
18973
18974         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
18975         entire image buffer. Just clear the clipping rectangle.
18976
18977 2005-04-29  Jackson Harper  <jackson@ximian.com>
18978
18979         * ThemeWin32Classic.cs: Don't draw list view items that are
18980         outside the clipping rectangle.
18981
18982 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
18983
18984         * ListBox.cs: added horizontal item scroll
18985
18986 2005-04-29  Jackson Harper  <jackson@ximian.com>
18987
18988         * ThemeWin32Classic.cs: Remove some old debug code that was
18989         causing flicker with the new double buffering code.
18990
18991 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
18992
18993         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
18994         behave like combobox and comboboxlist (still not sure if this is
18995         correct though).
18996
18997 2005-04-28  Jackson Harper  <jackson@ximian.com>
18998
18999         * ThemeWin32Classic.cs: Don't fill the middle of progress
19000         bars. This fills areas outside of the clip bounds that don't need
19001         to be filled.
19002
19003 2005-04-28  Jackson Harper  <jackson@ximian.com>
19004
19005         * Control.cs: Don't expose functionality to touch the image buffers.
19006         * ProgressBar.cs:
19007         * ListView.cs: We do not need to (and no longer can) manipulate
19008         the image buffers directly. All of this is handled by Control.
19009
19010 2005-04-28  Peter Bartok  <pbartok@novell.com>
19011
19012         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
19013           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
19014           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
19015
19016 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
19017
19018         * Combobox:
19019                 - Adjust control's height for non-simple comboboxes (bug fix)
19020                 - Remove dead code
19021         * MenuAPI.cs: remove unused var
19022         * ScrollBar.cs: remove unsed var
19023                  
19024         * ListBox.cs: unselect items when clearing
19025
19026 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
19027
19028         * ListControl.cs: honors OnPositionChanged and default Selected Item
19029         * ListBox.cs: unselect items when clearing
19030
19031 2005-04-27  Jackson Harper  <jackson@ximian.com>
19032
19033         * X11Keyboard.cs: Initialize a default keyboard and give a warning
19034         if a "correct" keyboard is not found. This will make us not crash,
19035         but might give some users bad keyboard layouts...seems to be the
19036         same thing rewind does.
19037
19038 2005-04-27  Jackson Harper  <jackson@ximian.com>
19039
19040         * BindingManagerBase.cs: Attach the current/position changed
19041         handlers to their respective events.
19042
19043 2005-04-27  Jackson Harper  <jackson@ximian.com>
19044
19045         * Control.cs: Make sure that the first WM_PAINT does a full draw,
19046         not just a blit.
19047         * ThemeWin32Classic.cs: Don't fill the background for picture
19048         boxes. This could overright user drawing.
19049         * ComboBox.cs: Just fill the clipping rect not the entire client
19050         rect when drawing the background. This prevents pieces of the
19051         image buffer from getting overwritten and is theoretically faster.
19052
19053 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
19054
19055         * ComboBox.cs: Databinding support fixes, fire missing events
19056         * ListControl.cs: implement missing methods and properties, fixes
19057         * ThemeWin32Classic.cs: Databiding support on Drawing
19058         * CheckedListBox.cs: Databinding support fixes, fire missing events
19059         * ListBox.cs: Databinding support fixes, fire missing events
19060         
19061 2005-04-25  Peter Bartok  <pbartok@novell.com>
19062
19063         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
19064
19065 2005-04-25  Jackson Harper  <jackson@ximian.com>
19066
19067         * TreeView.cs: Use the horizontal scrollbars height not width when
19068         determining how much of the client area is available.
19069
19070 2005-04-25  Jackson Harper  <jackson@ximian.com>
19071
19072         * Control.cs: Double buffering is handled differently now. As per
19073         the spec, the extra buffer is created in the WM_PAINT message and
19074         passed down to the control's drawing code.
19075         * GroupBox.cs:
19076         * Label.cs:
19077         * CheckBox.cs:
19078         * ProgressBar.cs:
19079         * RadioButton.cs:
19080         * ColorDialog.cs:
19081         * ComboBox.cs:
19082         * PropertyGridView.cs:
19083         * UpDownBase.cs:
19084         * MessageBox.cs:
19085         * MenuAPI.cs:
19086         * ListView.cs:
19087         * ButtonBase.cs:
19088         * SizeGrip.cs:
19089         * ScrollBar.cs:
19090         * ListBox.cs:
19091         * TrackBar.cs:
19092         * ToolBar.cs:
19093         * PictureBox.cs:
19094         * DateTimePicker.cs:
19095         * StatusBar.cs:
19096         * TreeView.cs: Update to new double buffering system.
19097         * MonthCalendar.cs: Uncomment block, as Capture is now
19098         working. Update to new double buffering
19099         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
19100         * PaintEventArgs.cs: New internal method allows us to set the
19101         graphics object. This is used for double buffering.
19102         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
19103         rectangle. The internal paint_area var has been removed from
19104         StatusBar. The clipping rect should be used instead.
19105         * Theme.cs: Give the PictureBox drawing method a clipping rect.
19106         * TabPage.cs: The RefreshTabs method was removed, so just call the
19107         tab controls Refresh method now.
19108         * TabControl.cs: Update to new double buffering. Make sure the
19109         handle is created before sizing the tab pages, otherwise we will
19110         get stuck in a loop.
19111
19112 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
19113
19114         * LinkLabel.cs: Fix typo, bug #74719; patch
19115           from Borja Sanchez Zamorano
19116
19117 2005-04-22  Jackson Harper  <jackson@ximian.com>
19118
19119         * TreeNode.cs: Implement Handle stuff.
19120         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
19121
19122 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
19123
19124         * DataGridTextBoxColumn.cs: call base constructors, fixes
19125         * GridColumnStylesCollection.cs: missing events, methods, and functionality
19126         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
19127         * DataGridTableStyle.cs: implements create default column styles
19128         * DataGridBoolColumn.cs: which types can handle
19129         * DataGrid.cs: missing methods, fixes, new functionality
19130         * DataGridColumnStyle.cs: fixes
19131
19132 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
19133         * FolderBrowserDialog.cs:
19134         - Use a thread to fill the TreeView
19135         - Adjusted some sizes
19136
19137 2005-04-19  Peter Bartok  <pbartok@novell.com>
19138
19139         * LinkLabel.cs: (Re-)create the pieces when setting the Text
19140           property. Fixes #74360.
19141
19142 2005-04-19  Jackson Harper  <jackson@ximian.com>
19143
19144         * XEventQueue.cs: Lock when getting the lockqueue size.
19145         * PictureBox.cs: Call base OnPaint
19146         
19147 2005-04-19  Peter Bartok  <pbartok@novell.com>
19148
19149         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
19150           messages were no longer being processed (this broke BeginInvoke)
19151
19152           
19153 2005-04-18  Jackson Harper  <jackson@ximian.com>
19154
19155         * TreeView.cs: buglet that caused node images to get drawn
19156         regardless of whether or not they were in the clipping rectangle.
19157
19158 2005-04-18  Jackson Harper  <jackson@ximian.com>
19159
19160         * CurrencyManager.cs: There are four rules for GetItemProperties:
19161         - If the type is an array use the element type of the array
19162         - If the type is a typed list, use the type
19163         - If the list contains an Item property that is not an object, use
19164         that property
19165         - use the first element of the list if there are any elements in
19166         the list.
19167         
19168 2005-04-17  Jackson Harper  <jackson@ximian.oom>
19169
19170         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
19171         click. This handles offsets for scrolling properly and reduces
19172         memory. Also fixed GetNode to not offset now that TopNode works
19173         properly.
19174         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
19175         
19176 2005-04-17  Jackson Harper  <jackson@ximian.com>
19177
19178         * CursorConverter.cs: Initial implementation.
19179
19180 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
19181
19182         * ListControl.cs: work towards complex data binding support on ListControl
19183         * CurrencyManager.cs: work towards complex data binding support on ListControl
19184         * ListBox.cs: work towards complex data binding support on ListControl
19185
19186
19187 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
19188
19189         * GridTableStylesCollection.cs: fixes name and constructor
19190         * DataGridTableStyle.cs: fixes
19191         * DataGridBoolColumn.cs: fixes names and constructors
19192         * DataGrid.cs: define methods and properties. Some init implementations
19193         * DataGridCell.cs: define methods and properties. Some init implementations
19194         * GridTablesFactory.cs: Define methods and properties
19195
19196 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
19197
19198         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
19199         graphics port changes.  We still want the coordinates in global screen
19200         coordinates.
19201
19202 2005-04-14  Jackson Harper  <jackson@ximian.com>
19203
19204         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
19205         check plus minus or checkbox clicks unless those features are enabled.
19206
19207 2005-04-14  Jackson Harper  <jackson@ximian.com>
19208
19209         * TreeView.cs: Add methods for setting the top and bottom visible
19210         nodes. TreeNode::EnsureVisible uses these methods.
19211         * TreeNode.cs: Implement EnsureVisible
19212
19213 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
19214
19215         * Form.cs: Pospone menu assignation if the window has not been created yet
19216         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
19217         size and position
19218
19219 2005-04-12  Jackson Harper  <jackson@ximian.com>
19220
19221         * TreeView.cs: Set the TopNode properly when scrolling
19222         occurs. This has the added benifit of reducing the amount of
19223         walking that needs to be done when drawing. Also removed an old
19224         misleading TODO.
19225         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
19226         
19227 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
19228
19229         * Timer.cs: fixes interval setting when the timer is already enabled
19230         
19231 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
19232
19233         * FolderBrowserDialog.cs: First approach
19234
19235 2005-04-09  Peter Bartok  <pbartok@novell.com>
19236
19237         * FolderBrowserDialog: Added
19238
19239 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
19240
19241         * LinkLabel.cs: move drawing code into the theme
19242         * ThemeWin32Classic.cs: drawing code and painting background bugfix
19243         * Theme.cs: define DrawLinkLabel method
19244
19245 2005-04-05  Jackson Harper  <jackson@ximian.com>
19246
19247         * BindingContext.cs: Use weak references so these bad actors don't
19248         stay alive longer then they need to.
19249
19250 2005-04-05  Jackson Harper  <jackson@ximian.com>
19251
19252         * ListControl.cs: Basic implementation of complex databinding.
19253         * ComboBox.cs:
19254         * ListBox.cs: Add calls to ListControl databinding methods.
19255
19256 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
19257
19258         * FileDialog.cs:
19259           - Don't change PopupButtonState to Normal when the
19260             PopupButton gets pressed several times.
19261           - Renamed ButtonPanel to PopupButtonPanel
19262
19263 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
19264
19265         * ColorDialog.cs: Use cached objects instead of creating them
19266         * LinkLabel.cs: Use cached objects instead of creating them
19267         * Splitter.cs: Use cached objects instead of creating them
19268         * FontDialog.cs: Use cached objects instead of creating them
19269         * PropertyGridView.cs: Use cached objects instead of creating them
19270         * MessageBox.cs: Use cached objects instead of creating them
19271         * FileDialog.cs: Use cached objects instead of creating them
19272         * ThemeWin32Classic.cs: Use cached objects instead of creating them
19273         * TreeView.cs: Use cached objects instead of creating them
19274         
19275 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
19276
19277         * Control.cs: use Equals to compare the font since no == op
19278         * ScrollBar.cs: use Equals to compare the font since no == op
19279
19280 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
19281
19282         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
19283
19284 2005-04-01  Jackson Harper  <jackson@ximian.com>
19285
19286         * Binding.cs: Implement IsBinding.
19287         * BindingManagerBase.cs:
19288         * PropertyManager.cs:
19289         * CurrencyManager.cs: Add IsSuspended property.
19290
19291 2005-04-01  Jackson Harper  <jackson@ximian.com>
19292
19293         * Binding.cs: Had some IsAssignableFrom calls backwards.
19294
19295 2005-04-01  Jackson Harper  <jackson@ximian.com>
19296
19297         * Binding.cs: Handle null data members when pulling data.
19298         * PropertyManager.cs: Handle the data member being a property that
19299         does not exist.
19300
19301 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19302
19303         * DataGridTextBoxColumn.cs: fixes signature
19304         * DataGrid.cs: calls right constructor
19305
19306 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19307
19308         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
19309         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
19310         * GridTableStylesCollection.cs: implements GridTableStylesCollection
19311         * DataGridTableStyle.cs: implements DataGridTableStyle
19312         * DataGridBoolColumn.cs: implements DataGridBoolColumn
19313         * DataGridTextBox.cs: implements DataGridTextBox
19314         * DataGridColumnStyle.cs: implements DataGridColumnStyle
19315
19316 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
19317
19318         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
19319
19320 2005-03-29  Peter Bartok  <pbartok@novell.com>
19321
19322         * Application.cs:
19323           - Properly implemented CompanyName property
19324           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
19325             returns a path that includes CompanyName, ProductName and
19326             Version (fixes bug #70330)
19327
19328 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
19329
19330         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
19331           fixes bug #72588.
19332
19333 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19334
19335         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
19336         
19337           - Added ReadOnly CheckBox
19338           - Further refactoring: moved some code from Open-/SaveFileDialog
19339             to FileDialog
19340
19341 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19342
19343         * OpenFileDialog.cs: Fixed CheckFileExists
19344         * FileDialog.cs:
19345           Moved FileView and DirComboBox outside FileDialog class.
19346           They can now be used outside FileDialog
19347
19348 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19349
19350         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
19351         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
19352
19353 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19354
19355         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19356           - Added missing CreatePrompt property in SaveDialog
19357           - Overall SaveDialog handling should be better now
19358           - Added non standard ShowHiddenFiles property
19359           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
19360           - Added InitialDirectory and RestoreDirectory support
19361
19362 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
19363
19364         * FileDialog.cs: Made dirComboBox usable
19365
19366 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
19367
19368         * FileDialog.cs: Added Filter support (case sensitiv)
19369
19370 2005-03-24  Jackson Harper  <jackson@ximian.com>
19371
19372         * TabControl.cs: Need a couple more pixels for the lines.
19373
19374 2005-03-23  Jackson Harper  <jackson@ximian.com>
19375
19376         * TabControl.cs: Give the tab page focus when it is selected.
19377
19378 2005-03-23  Jackson Harper  <jackson@ximian.com>
19379
19380         * TabControl.cs: Account for the drawing of tabs borders when
19381         invalidating. If the slider was clicked dont do click detection on
19382         the tabs.
19383
19384 2005-03-23  Jackson Harper  <jackson@ximian.com>
19385
19386         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
19387
19388 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
19389
19390         * CategoryGridEntry.cs: Added
19391         * GridItem.cs: Added helper properties
19392         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
19393         * GridEntry.cs: Updated code for collection
19394         * PropertyGrid.cs: Cleaned up some formatting
19395         * PropertyGridView.cs: Added drop down functionality for enums.
19396         * GridItemCollection.cs: Added enumerator logic
19397         * PropertyGridEntry.cs: Added
19398
19399 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19400
19401         * FileDialog.cs:
19402           - Removed unnecessary commented code
19403           - Fixed handling for entering the filename manually in the combobox
19404
19405 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19406
19407         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
19408
19409 2005-03-18  Peter Bartok  <pbartok@novell.com>
19410
19411         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
19412           them being touching the border
19413
19414 2005-03-18  Peter Bartok  <pbartok@novell.com>
19415
19416         * TextControl.cs: Quick hack to center text better
19417
19418 2005-03-18  Peter Bartok  <pbartok@novell.com>
19419
19420         * ControlPaint.cs:
19421           - Don't throw NotImplemented exceptions, just print a notice once
19422             instead (requested by Miguel). This makes running existing SWF
19423             apps a bit easier
19424         * Control.cs:
19425           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
19426           - Added context menu trigger on right click
19427         * Panel.cs: Trigger invalidate on resize
19428         * StatusBar.cs:
19429           - Removed old double-buffer drawing
19430           - Added ResizeRedraw style to force proper update of statusbar
19431         * ListView.cs:
19432           - Removed debug output
19433         * ThemeWin32Classic.cs:
19434           - Fixed drawing of status bar, now draws Text property if there
19435             are no defined panels
19436
19437 2005-03-18  Jackson Harper  <jackson@ximian.com>
19438
19439         * ImageList.cs: When the image stream is set pull all the images
19440         from it.
19441         * ImageListStreamer.cs: Implement reading image list streams.
19442
19443 2005-03-18  Peter Bartok  <pbartok@novell.com>
19444
19445         * ThemeWin32Classic.cs (DrawPictureBox):
19446           - Fixed calculations for centered drawing
19447           - Fixed drawing for normal mode, not scaling the image on normal
19448
19449 2005-03-18  Peter Bartok  <pbartok@novell.com>
19450
19451         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
19452           textbox
19453         * FileDialog.cs:
19454           - Made Open/Save button the accept button for FileDialog
19455           - Tied the cancel button to the IButtonControl cancel button
19456           - Save/Open now properly builds the pathname
19457           - Now handles user-entered text
19458           - Preventing crash on right-click if no item is selected
19459           - Fixed Text property, now uses contents of textbox
19460           - Fixed SelectedText property, now just returns the text part that
19461             is selected in the text box
19462
19463 2005-03-18  Jackson Harper  <jackson@ximian.com>
19464
19465         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
19466         rect, make sure to de-adjust the interior rect after drawing the
19467         tab text.
19468
19469 2005-03-18  Peter Bartok  <pbartok@novell.com>
19470
19471         * MenuAPI.cs: Remove menu *before* executing selected action to
19472           prevent the menu from 'hanging around'
19473           
19474 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
19475
19476         * XplatUIOSX.cs: Implemented WorkingArea property
19477
19478 2005-03-17  Peter Bartok  <pbartok@novell.com>
19479
19480         * XplatUIX11.cs: Fixed menu coord calculations
19481         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
19482           for calculating offsets
19483
19484 2005-03-17  Peter Bartok  <pbartok@novell.com>
19485
19486         * Hwnd.cs: Do not consider menu presence for default client
19487           rectangle location/size
19488         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
19489           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
19490           translation functions
19491         * FileDialog.cs: Fixed (what I presume is a) typo
19492
19493 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
19494
19495         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
19496           X access (avoids X-Async errors)
19497
19498 2005-03-16  Jackson Harper  <jackson@ximian.com>
19499
19500         * TabControl.cs: Raise the SelectedIndexChanged event.
19501
19502 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
19503
19504         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19505           - Removed vertical ToolBar and replaced it with a custom panel
19506             (desktop and home button already work)
19507           - Added Help button (some controls get resized or relocated then)
19508           - Draw correct text depending on Open or Save.
19509           - Fixed some typos...
19510
19511 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
19512
19513         * ScrollBar.cs:
19514           - Only change Maximum and Minimum when need it (bug fix)
19515
19516 2005-03-15  Peter Bartok  <pbartok@novell.com>
19517
19518         * Form.cs: Use Handle for icon, to trigger creation if
19519           the window does not yet exist
19520         * Control.cs:
19521           - CanSelect: Slight performance improvement
19522           - Focus(): Preventing possible recursion
19523           - Invalidate(): Removed ControlStyle based clear flag setting
19524           - WM_PAINT: fixed logic for calling OnPaintBackground
19525           - WM_ERASEBKGND: Fixed logic, added call to new driver method
19526             EraseWindowBackground if the control doesn't paint background
19527         * XplatUIWin32.cs:
19528           - Moved EraseWindowBackground() method to internal methods
19529           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
19530             is sent via SendMessage on BeginPaint call on Win32
19531         * XplatUIX11.cs:
19532           - Added EraseWindowBackground() method
19533           - No longer sends WM_ERASEBKGND on .Expose, but on call to
19534             PaintEventStart, which more closely matches Win32 behaviour
19535           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
19536           - Fixed SetFocus() to properly deal with client and whole windows
19537         * Hwnd.cs: Added ErasePending property
19538         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
19539         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
19540
19541 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
19542
19543         * XplatUIOSX.cs:
19544           - Fix hard loop when timers exist.
19545           - Fix bugs with middle and right click for 3 button mice.
19546
19547 2005-03-11  Peter Bartok  <pbartok@novell.com>
19548
19549         * XplatUIX11.cs:
19550           - get_WorkingArea: Need to call X directly, GetWindowPos only
19551             returns cached data now
19552           - Added sanity check to GetWindowPos hwnd usage
19553
19554 2005-03-11  Jackson Harper  <jackson@ximian.com>
19555
19556         * BindingManagerBase.cs: This method isn't used anymore as
19557         PullData now updates the data in the control.
19558
19559 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
19560
19561         * Form.cs: fixes menu drawing on X11
19562         * MenuAPI.cs:  fixes menu drawing on X11
19563
19564 2005-03-11  Peter Bartok  <pbartok@novell.com>
19565
19566         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
19567           from Jonathan Gilbert; should fix bug #73606
19568         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
19569           in Screen coordinates. Thanks, Jordi.
19570         * Form.cs: Added missing attribute
19571
19572 2005-03-11  Peter Bartok  <pbartok@novell.com>
19573
19574         * Form.cs:
19575           - Rudimentary Mdi support
19576           - Removed outdated FormParent code
19577           - Implemented lots of missing properties and methods, still missing
19578             transparency support
19579           - Added missing attributes
19580           - Implemented support for MaximumBounds
19581           - Added firing of various events
19582         * XplatUI.cs: Added SetIcon() method
19583         * XplatUIDriver.cs: Added SetIcon() abstract
19584         * XplatUIOSX.cs: Stubbed out SetIcon() method
19585         * XplatUIX11.cs:
19586           - Implemented SetIcon() support
19587           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
19588           - Switched to unix line endings
19589         * XplatUIWin32.cs:
19590           - Made POINT internal so for can access it as part of MINMAX
19591           - Implemented SetIcon() support
19592           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
19593             native Mdi support again, might have to go managed)
19594         * Control.cs: Now fires the StyleChanged event
19595         * MdiClient.cs: Added; still mostly empty
19596
19597 2005-03-10  Peter Bartok  <pbartok@novell.com>
19598
19599         * SaveFileDialog.cs: Added emtpy file
19600
19601 2005-03-08  Peter Bartok  <pbartok@novell.com>
19602
19603         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
19604           in turn triggers OnCreateContro) when creating a handle for the
19605           first time.
19606         * TextControl.cs: Fixed endless loop in certain cases when
19607           replacing the current selection
19608
19609 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
19610
19611         * ScrollBar.cs:
19612           - Honors NewValue changes in Scroll events allowing apps to change it
19613           - Adds First and Last Scroll events
19614           - Fixes Thumb events
19615
19616 2005-03-07  Peter Bartok  <pbartok@novell.com>
19617
19618         * Hwnd.cs: Added DefaultClientRectangle property
19619         * XplatUI.cs: Now using the X11 driver Where() method, which provides
19620           more detailed debug information
19621         * XplatUIX11.cs:
19622           - Fixed size-change feedback loop, where we would pull an old size
19623             off the queue and mistakenly change our window's size to an
19624             earlier value
19625           - Now compressing ConfigureNotify events, to reduce looping and
19626             redraw issues
19627         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
19628           is called
19629
19630 2005-03-07  Jackson Harper  <jackson@ximian.com>
19631
19632         * Binding.cs: Push data pushes from data -> property. Check if the
19633         property is readonly when attempting to set it.
19634
19635 2005-03-07  Jackson Harper  <jackson@ximian.com>
19636
19637         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
19638         instead of IsSubclassOf. Pulling data now sets the value on the
19639         control.
19640         * PropertyManager.cs:
19641         * CurrencyManager.cs: Just need to pull data when updating now,
19642         because PullData will set the value on the control.
19643
19644 2005-03-04  Jackson Harper  <jackson@ximian.com>
19645
19646         * Binding.cs: Implement data type parsing and converting on pulled
19647         data. TODO: Are there more ways the data can be converted?
19648
19649 2005-03-04  Jackson Harper  <jackson@ximian.com>
19650
19651         * Binding.cs: Support <Property>IsNull checks. Also bind to the
19652         controls Validating method so we can repull the data when the
19653         control loses focus.
19654
19655 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
19656
19657         * ColumnHeader.cs:
19658           - Fixes null string format
19659           
19660         * ListView.cs:
19661           - Adds enum type checks
19662           - Fixes redrawing and recalc need after changing some properties
19663           - Fixes on focus_item set after the event
19664           - Fixes adding columns after the control has been created
19665           
19666         * ThemeWin32Classic.cs:
19667           - Fixes CheckBox focus rectangle
19668           - Fixes ColumnHeader drawing
19669
19670
19671 2005-03-03  Jackson Harper  <jackson@ximian.com>
19672
19673         * Binding.cs: Bind to <Property>Changed events so we can detect
19674         when properties are changed and update the data.
19675
19676 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
19677
19678         * ImageList.cs:
19679           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
19680           - Fixes ImageList constructor with ImageList container
19681           - Fixes image scaling (wrong parameters at DrawImage)
19682
19683 2005-02-02  Jackson Harper  <jackson@ximian.com>
19684
19685         * Binding.cs: Make property searches case-insensitive. Eliminate
19686         some duplicated code.
19687
19688 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
19689
19690         * ComboBox.cs:
19691                 - Handle focus event
19692                 - Fix scrollbar events
19693                 - Discard highlighted item if remove it
19694                 - Fixes SelectedItem with strings
19695
19696 2005-03-01  Peter Bartok  <pbartok@novell.com>
19697
19698         * Control.cs:
19699           - Fixed Visible property, now follows (once again) parent chain
19700             to return false if any control in the chain is visible=false
19701           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
19702           - Fixed several places where is_visible instead of Visible was used
19703           - Implemented FIXME related to focus selection when setting focused
19704             control to be invisible
19705
19706         * XplatUIWin32.cs: Now using proper method to find out if window is
19707           visible. Thanks to Jordi for pointing it out
19708
19709 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
19710
19711         * ComboBox.cs: show/hide scrollbar instead of creating it
19712
19713 2005-02-27  Jackson Harper  <jackson@ximian.com>
19714
19715         * CurrencyManager.cs: Add PositionChanged stuff.
19716
19717 2005-02-27  Peter Bartok  <pbartok@novell.com>
19718
19719         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
19720         * XplatUIOSX.cs: Added GetMenuOrigin() stub
19721         * XplatUIWin32.cs: Implemented GetMenuOrigin()
19722         * XplatUIX11.cs:
19723           - Implemented GetMenuDC()
19724           - Implemented GetMenuOrigin()
19725           - Implemented ReleaseMenuDC()
19726           - Implemented generation of WM_NCPAINT message
19727           - Implemented generation and handling of WM_NCCALCSIZE message
19728         * Form.cs: Added debug helper message for Jordi's menu work
19729         * Hwnd.cs:
19730           - Modified ClientRect property; added setter, fixed getter to handle
19731             setting of ClientRect
19732           - Added MenuOrigin property
19733
19734 2005-02-26  Peter Bartok  <pbartok@novell.com>
19735
19736         * XplatUIX11.cs:
19737           - Destroys the caret if a window that's being destroyed contains it
19738           - Ignores expose events coming from the X11 queue for windows that
19739             already are destroyed
19740           - Now uses the proper variable for handling DestroyNotify, before we
19741             marked the wrong window as destroyed
19742           - Improved/added some debug output
19743
19744 2005-02-26  Peter Bartok  <pbartok@novell.com>
19745
19746         * X11Keyboard.cs: Fixes to work on 64bit systems
19747
19748 2005-02-26  Peter Bartok  <pbartok@novell.com>
19749
19750         * Control.cs:
19751           - Now calling OnHandleDestroyed from DestroyHandle()
19752             instead of Dispose()
19753           - Removed bogus call to controls.Remove() from DestroyHandle()
19754
19755 2005-02-26  Peter Bartok  <pbartok@novell.com>
19756
19757         * Control.cs: Properly destroy child windows when our handle is
19758           destroyed
19759
19760 2005-02-25  Peter Bartok  <pbartok@novell.com>
19761
19762         * XplatUI.cs:
19763           - Added 'DriverDebug' define to allow tracing XplatUI API calls
19764           - Alphabetized Static Methods and Subclasses
19765
19766         * XplatUIX11.cs:
19767           - Added XException class to allow custom handling of X11 exceptions
19768           - Created custom X11 error handler, tied into XException class
19769           - Added support for MONO_XEXCEPTIONS env var to allow the user
19770             to either throw an exception on X errors or continue running
19771             after displaying the error
19772           - Added handling of DestroyNotify message
19773           - Added handler for CreateNotify message (still disabled)
19774           - Improved (tried to at least) Where method to provide file and lineno
19775         * X11Structs.cs:
19776           - Added XErrorHandler delegate
19777           - Added XRequest enumeration (to suppor translation of errors)
19778
19779 2005-02-25  Jackson Harper  <jackson@ximian.com>
19780
19781         * PropertyManager.cs: Implement editing features
19782         * CurrencyManager.cs:
19783         * Binding.cs: First attempt at UpdateIsBinding
19784         * BindingManagerBase.cs: Call UpdateIsBinding before
19785         pushing/pulling data.
19786
19787 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
19788
19789         * MenuAPI.cs: Respect disabled items
19790         * ThemeWin32Classic.cs
19791                 - Caches ImageAttributes creation for DrawImageDisabled
19792                 - Fixes vertical menu line drawing
19793                 - Draws disabled arrows in disable menu items
19794
19795 2005-02-24  Peter Bartok  <pbartok@novell.com>
19796
19797         * Hwnd.cs:
19798           - Added UserData property to allow associating arbitrary objects
19799             with the handle
19800           - Fixed leak; now removing Hwnd references from static windows array
19801         * XplatUIWin32.cs:
19802           - Fixed Graphics leak in PaintEventEnd
19803           - Removed usage of HandleData, switched over to Hwnd class
19804         * HandleData.cs: Removed, obsoleted by Hwnd.cs
19805
19806 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
19807
19808         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
19809         * ScrollBar.cs: Fixes bug
19810         * TrackBar.cs: removes death code, clipping, mimize refreshes,
19811          keyboard navigation enhancements
19812
19813 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
19814
19815         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
19816         * GroupBox.cs: Add control styles
19817         * Label.cs: Add control styles
19818         * UpDownBase.cs: Add control styles
19819         * ListBox.cs: Add control styles
19820         * XplatUIWin32.cs: Fixes wrong parameter order
19821
19822
19823 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
19824
19825         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
19826
19827 2005-02-23  Jackson Harper  <jackson@ximian.com>
19828
19829         * PropertyManager.cs: Implement property binding. This doesn't
19830         seem to work yet though as (I think) there are some bugs in
19831         System.ComponentModel.PropertyDescriptor.
19832         * BindingContext.cs: Use new PropertyManager constructor.
19833
19834 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
19835
19836         * ProgressBar.cs: use clip region in ProgressBar
19837         * ThemeWin32Classic.cs: use clip region in ProgressBar
19838
19839 2004-02-22  Jackson Harper  <jackson@ximian.com>
19840
19841         * BindingsCollection.cs: Remove some debug code.
19842
19843 2005-02-22  Jackson Harper  <jackson@ximian.com>
19844
19845         * BindingContext.cs:
19846         * ControlBindingsCollection.cs:
19847         * CurrencyManager.cs:
19848         * Binding.cs:
19849         * BindingManagerBase.cs: Initial implementation
19850         * BindingsCollection.cs: Add an internal contains method that the
19851         BindingManagerBase uses to ensure bindings aren't added twice to
19852         the collection.
19853         * PropertyManager.cs: Stubbed out.
19854         * Control.cs:
19855         * ContainerControl.cs: Hook up databinding
19856         
19857 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
19858
19859         * XplatUIOSX.cs:
19860           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
19861           Fixed Invalidate/Update chain.
19862           Fixed tons of other minor bugs (this is almost a complete rewrite).
19863
19864 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
19865
19866         * ComboBox.cs: do subcontrol creation when the control is created
19867
19868 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19869
19870         * Label.cs: fixes image drawing (image and imagelist)
19871         * ThemeWin32Classic.cs: cache brushes
19872         
19873 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19874
19875         * Form.cs: Move menu drawing code to Theme class
19876         * ComboBox.cs: Move ComboBox drawing code to Theme class
19877         * MenuItem.cs: Move menu drawing code to Theme class
19878         * MenuAPI.cs: Move menu drawing code to Theme class
19879         * ThemeWin32Classic.cs: New methods
19880         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
19881         * ListBox.cs: Move Listbox drawing code to Theme class
19882         * Theme.cs: New methods
19883
19884 2005-02-20  Peter Bartok  <pbartok@novell.com>
19885
19886         * Control.cs:
19887           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
19888             only process mnemonics on those)
19889           - Fixed event sequence for key handling; first calling
19890             ProcessKeyEventArgs now
19891         * TextBoxBase.cs:
19892           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
19893             for processing non-character keys
19894           - Fixed WM_CHAR to generate proper event sequence before processing
19895         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
19896           generation
19897
19898 2005-02-19  Peter Bartok  <pbartok@novell.com>
19899
19900         * UserControl.cs: Added TextChanged event; added attributes
19901         * SizeGrip.cs: Implemented resizing and optional display of grip
19902         * Form.cs: Fixed attribute
19903         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19904           Changed meaning of ScrollWindow bool argument; instead of the
19905           clear attribute (which will be true usually anyway), it gives the
19906           option of moving child controls as well.
19907         * XplatUIX11.cs:
19908           - Changed to match new ScrollWindow argument
19909           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
19910             now handles the implicit parent window a WM puts around us
19911         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
19912           to work)
19913         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
19914         * TreeView.cs: Adjusted to new ScrollWindow arguments
19915
19916 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19917
19918         * Form.cs: Menu integration with non-client area
19919         * MenuItem.cs: Menu integration with non-client area
19920         * MenuAPI.cs: Menu integration with non-client area
19921
19922 2005-02-18  Peter Bartok  <pbartok@novell.com>
19923
19924         * MethodInvoker.cs: Added
19925         * MdiLayout.cs: Added
19926         * SendKeys.cs: Started implementation
19927         * ErrorIconAlignment.cs: Added
19928
19929 2005-02-18  Peter Bartok  <pbartok@novell.com>
19930
19931         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
19932         * Form.cs: Added handling for Menu-related Non-client messages
19933
19934 2005-02-17  Peter Bartok  <pbartok@novell.com>
19935
19936         * UpDownBase.cs: Fixed typo, compilation errors
19937         * DomainUpDown.cs: Fixed attribute value
19938
19939 2005-02-16  Miguel de Icaza  <miguel@novell.com>
19940
19941         * UpDownBase.cs: Attach entry events.
19942         Propagate events.
19943         Add ForeColor property, Focused, InterceptArrowKeys (interception
19944         does not work yet).
19945
19946 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
19947
19948         * Form.cs:
19949                 - Redraw non client are on Setmenu
19950                 - Calc proper menu starting point
19951
19952 2005-02-17  Peter Bartok  <pbartok@novell.com>
19953
19954         * Application.cs: Fixed message_filter check
19955
19956 2005-02-17  Peter Bartok  <pbartok@novell.com>
19957
19958         * Application.cs: Now calls registered message filters
19959         * DockStyle.cs: Fixed attribute
19960         * Form.cs: Fixed attribute
19961         * Menu.cs: Fixed attribute
19962         * ToolTip.cs: Fixed attribute
19963         * TreeNode.cs: Added missing attributes and arranged in regions
19964         * PropertyGrid.cs: Fixed signatures
19965         * TreeNodeCollection.cs: Added attributes
19966         * Splitter.cs: Added missing attributes; arranged into regions
19967         * TabPage.cs: Added missing attributes; arranged into regions
19968         * TextBoxBase.cs: Added missing attributes
19969         * TextBox.cs: Added missing attributes
19970         * ArrangeDirection.cs: Added missing attributes
19971         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
19972         * ToolBarButton.cs: Fixed attributes
19973         * AnchorStyles.cs: Fixed attribute
19974         * TrackBar.cs: Fixed attributes
19975         * TabControl.cs: Added missing attributes and arranged into regions
19976         * ToolBar.cs: Fixed attribute
19977         * StatusBar.cs: Fixed signature, organized into regions and added
19978           attributes
19979         * StatusBarPanel.cs: Fixed attributes
19980         * ContentsResizedEventArgs.cs: Implemented
19981         * ContentsResizedEventHandler.cs: Implemented
19982         * DateBoldEventArgs.cs: Implemented
19983         * DateBoldEventHandler.cs: Implemented
19984         * UpDownEventArgs.cs: Implemented
19985         * UpDownEventHandler.cs: Implemented
19986         
19987 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
19988
19989         * Form.cs: first Menu NC refactoring
19990         * MenuAPI.cs: first Menu NC refactoring
19991         
19992 2005-02-16  Peter Bartok  <pbartok@novell.com>
19993
19994         * ImeMode.cs: Added missing attributes
19995         * Menu.cs: Fixed attribute
19996         * GroupBox.cs: Fixed attribute
19997         * Label.cs: Fixed attribute
19998         * ColorDialog.cs (RunDialog): Removed TODO attribute
19999         * ComboBox.cs: Fixed attributes
20000         * ListControl.cs: Added missing attributes
20001         * PropertyGrid.cs: Fixed attributes
20002         * Control.cs: Fixed attributes
20003         * ListViewItem.cs: Added TypeConverter attribute
20004         * NotifyIcon.cs: Fixed attributes
20005         * ListView.cs: Fixed attributes
20006         * ButtonBase.cs: Fixed attribute
20007         * ImageList.cs: Added missing attributes
20008         * ContainerControl.cs: Fixed signature
20009         * CheckedListBox.cs: Fixed attribute; added missing attributes
20010         * Panel.cs: Fixed attributes
20011         * PropertyTabChangedEventArgs.cs: Added missing attribute
20012         * PropertyValueChangedEventArgs.cs: Added missing attribute
20013         * Binding.cs: Fixed attribute
20014         * ListViewItemConverter: Implemented ListViewSubItemConverter class
20015         * ListBox.cs: Fixed attribute; added missing attributes;
20016         * ScrollableControl.cs: Added missing attributes
20017         * PictureBox.cs: Added missing attributes; implemented missing property
20018         * DateTimePicker.cs: Added missing attributes
20019         * Theme.cs (ToolWindowCaptionHeight): Fixed type
20020         * MonthCalendar.cs: Fixed attributes
20021         * StatusBarPanel.cs: Added missing attributes
20022         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
20023
20024 2005-02-16  Peter Bartok  <pbartok@novell.com>
20025
20026         * TextBoxBase.cs: The previous method to enforce height yet remember
20027           the requested high was less than ideal, this is an attempt to do
20028           it better.
20029         * Control.cs: Added comment about possible problem
20030         * Copyright: Updated format
20031         * GridItemType.cs: Fixed swapped values
20032
20033 2005-02-15  Jackson Harper  <jackson@ximian.com>
20034
20035         * BaseCollection.cs: Use property so we never access an
20036         uninitialized list. Also initialize the list in the property.
20037
20038 2005-02-15  Peter Bartok  <pbartok@novell.com>
20039
20040         * GroupBox.cs (ProcessMnemonic): Implemented
20041         * Label.cs (ProcessMnemonic): Implemented
20042         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
20043           hotkeys
20044
20045 2005-02-15  Peter Bartok  <pbartok@novell.com>
20046
20047         * RadioButton.cs (ProcessMnemonic): Implemented
20048         * CheckBox.cs (ProcessMnemonic): Implemented
20049         * Control.cs:
20050           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
20051             handling
20052           - Added internal method to allow calling ProcessMnemonic from other
20053             controls
20054         * ContainerControl.cs:
20055           - Started support for handling validation chain handling
20056           - Implemented ProcessMnemonic support
20057           - Added Select() call to Active, to make sure the active control
20058             receives focus
20059         * Form.cs: Setting toplevel flag for Forms (this was lost in the
20060           FormParent rewrite)
20061         * ThemeWin32Classic.cs:
20062           - DrawCheckBox(): Fixed stringformat to show hotkeys
20063           - DrawRadioButton(): Fixed stringformat to show hotkeys
20064         * CommonDialog.cs: Removed WndProc override, not needed
20065
20066 2005-02-14  Peter Bartok  <pbartok@novell.com>
20067
20068         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
20069           missed those in the rewrite
20070
20071 2005-02-14  Miguel de Icaza  <miguel@novell.com>
20072
20073         * NumericUpDown.cs (Increment, ToString): Add.
20074         (DecimalPlaces): implement.
20075         
20076         Add attributes.
20077         
20078         * UpDownBase.cs: Add the designer attributes.
20079
20080 2005-02-13  Peter Bartok  <pbartok@novell.com>
20081
20082         * Panel.cs: Removed border_style, now in Control
20083         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
20084           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
20085
20086 2005-02-13  Peter Bartok  <pbartok@novell.com>
20087
20088         * MouseButtons.cs: Added missing attributes
20089         * XplatUIStructs.cs: Added enumeration for title styles
20090         * LeftRightAlignment.cs: Added missing attributes
20091         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
20092           it compatible with Graphics.FromHwnd()
20093         * SelectedGridItemChangedEventArgs.cs: Fixed property type
20094         * Keys.cs: Added missing attributes
20095         * SelectionRange.cs: Added missing attributes
20096         * SelectionRangeConverter.cs: Added
20097         * XplatUI.cs:
20098           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
20099             ReleaseMenuDC methods
20100           - Renamed ReleaseWindow to UngrabWindow
20101           - Added proper startup notice to allow version identification
20102         * Form.cs:
20103           - Added missing attributes
20104           - Removed FormParent concept
20105         * Label.cs: Removed border_style field, now in Control
20106         * RadioButton.cs: Now properly selects RadioButton when focus is
20107           received
20108         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
20109         * Control.cs:
20110           - Added missing attributes
20111           - Added borderstyle handling
20112           - Removed FormParent concept support
20113           - Fixed calls to XplatUI to match changed APIs
20114           - Fixed bug that would case us to use disposed Graphics objects
20115           - Removed unneeded internal methods
20116           - PerformLayout(): Fixed to handle DockStyle.Fill properly
20117           - SelectNextControl(): Fixed to properly check common parents
20118         * TextBoxBase.cs: Removed border_style field (now in Control)
20119         * MessageBox.cs:
20120           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
20121             fixed calculations for form size
20122           - Added support for localized strings and icons
20123           - Improved form size calculations, added border
20124         * ListView.cs: Removed border_style field (now in Control)
20125         * X11Structs.cs: Moved several structs from X11 driver here
20126         * X11Keyboard.cs: Changed debug message
20127         * Application.cs: Removed FormParent concept support
20128         * CommonDialog.cs:
20129           - Resetting end_modal flag
20130           - Removed FormParent concept support
20131         * NativeWindow.cs: Removed FormParent concept support
20132         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
20133           Client area and Non-Client whole window to allow support for WM_NC
20134           messages
20135         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
20136           prevent using it until it supports Hwnd as per Geoff Norton's request
20137         * ToolBar.cs: Fixed drawing, was not doing proper drawing
20138         * PictureBox.cs: Removed border_style field, now in Control
20139         * XplatUIWin32.cs: Added new driver methods
20140
20141 2005-02-12  Peter Bartok  <pbartok@novell.com>
20142
20143         * OpacityConverter.cs: Implemented
20144         * Hwnd.cs: Internal class to support drivers that need to emulate
20145           client area/non-client area window behaviour
20146
20147 2005-02-11  Peter Bartok  <pbartok@novell.com>
20148
20149         * KeysConverter.cs: Implemented
20150
20151 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
20152
20153         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
20154         * LinkLabel: Added missing attributes
20155         * MainMenu.cs: fixes ToString
20156         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
20157         * ListBox.cs: fixes event position
20158         * TrackBar.cs: adds missing attributes and events
20159         
20160 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
20161
20162         * MenuItem.cs: Use SystemInformation and bug fixes
20163         * MenuAPI.cs: Use SystemInformation and bug fixes
20164
20165 2005-02-09  Jackson Harper  <jackson@ximian.com>
20166
20167         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
20168         their keystate otherwise things like VK_MENU get stuck "on".
20169
20170 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
20171
20172         * ListBox.cs: Fixes AddRange bug
20173         
20174 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
20175
20176         * ProgressBar.cs
20177                 - Add missing attributes
20178                 - Add missing method
20179                 
20180         * CheckedListBox.cs: Added missing attributes
20181                 - Add missing attributes
20182                 - Remove extra method
20183         
20184         * ComboBox.cs: Added missing attributes
20185         * VScrollBar.cs: Added missing attributes
20186         * ScrollBar.cs:  Added missing attributes
20187         * ListBox.cs: Fixes signature, add missing consts
20188         * LinkArea.cs:   Added missing attributes
20189         
20190
20191 2005-02-08  Peter Bartok  <pbartok@novell.com>
20192
20193         * Menu.cs: Added missing attributes
20194         * MainMenu.cs: Added missing attributes
20195         * GroupBox.cs: Added missing attributes
20196         * Label.cs: Added missing attributes
20197         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
20198         * ColorDialog.cs:
20199           - Added Instance and Options properties
20200           - Added missing attributes
20201         * Cursor.cs: Made Serializable
20202         * NotifyIcon: Added missing attributes
20203         * MenuItem.cs: Added missing attributes
20204         * TextBoxBase.cs: Implemented AppendText() and Select() methods
20205         * Panel.cs: Added Missing attributes
20206         * MonthCalendar.cs: Fixed CreateParams
20207
20208 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
20209         
20210         * LinkLabel.cs:
20211                 - Fixes signature
20212                 - Fixes issues with links
20213                 - Adds the class attributes
20214
20215 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
20216         
20217         * ComboBox.cs:
20218                 - Fixes button when no items available in dropdown
20219                 - Fixes repainting problems
20220                 - Adds the class attributes
20221                 
20222 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20223
20224         * XplatUIOSX.cs: Detect the menu bar and title bar height from
20225         the current theme.  Cache these on startup.
20226
20227 2005-02-07  Jackson Harper  <jackson@ximian.com>
20228
20229         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
20230         the scrollbar buttons when they are depressed.
20231
20232 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20233
20234         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
20235         Get the display size from the main displayid.  We currently dont
20236         support multiple display configurations.
20237
20238 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20239
20240         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
20241
20242 2005-02-07  Miguel de Icaza  <miguel@novell.com>
20243
20244         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
20245
20246 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
20247
20248         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
20249
20250 2005-02-04  Jackson Harper  <jackson@ximian.com>
20251
20252         * ThemeWin32Classic.cs: Respect the clipping rect when
20253         drawing. Only fill the intersection of clips and rects so there
20254         isn't a lot of large fills.
20255         * ScrollBar.cs: Pass the correct clipping rect to the theme
20256         engine. Remove some debug code.
20257
20258 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
20259         
20260         * DateTimePicker.cs:
20261                 - Fixed crash on DateTime.Parse, use Constructor instead
20262
20263 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20264         
20265         * MenuItem.cs:
20266         * MenuAPI.cs:
20267                 - Owner draw support (MeasureItem and DrawItem)
20268
20269 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20270         
20271         *  Menu.cs:
20272                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
20273                 - Fixes MenuItems.Add range
20274         * MenuItem.cs:
20275                 - MergeMenu and Clone and CloneMenu functions
20276
20277 2005-02-03  Jackson Harper  <jackson@ximian.com>
20278
20279         * ScrollBar.cs: Make abstract
20280         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
20281         is abstract.
20282
20283 2005-02-03  Jackson Harper  <jackson@ximian.com>
20284
20285         * ScrollBar.cs: First part of my scrollbar fixups. This removes
20286         all the unneeded refreshes and uses invalidates with properly
20287         computed rects.
20288
20289 2005-02-03  Peter Bartok  <pbartok@novell.com>
20290
20291         * ComponentModel.cs: Added
20292         * IDataGridEditingService.cs: Added
20293         * Timer.cs: Added missing attributes
20294         * ToolTip.cs: Added missing attributes
20295
20296 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
20297
20298         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
20299
20300 2005-02-03  Peter Bartok  <pbartok@novell.com>
20301
20302         * ListBox.cs: Added missing attributes
20303
20304 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
20305         
20306         * ListBox.cs:
20307                 - Fixes font height after font change
20308                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
20309                 
20310 2005-02-02  Peter Bartok  <pbartok@novell.com>
20311
20312         * HandleData.cs: Introduced static methods to allow class
20313           to be more self-contained and track it's own HandleData objects
20314         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
20315           HandleData to use new static methods
20316
20317 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
20318
20319         * Combobox.cs:
20320                 - Fixes default size and PreferredHeight
20321                 - Missing events
20322                 - ObjectCollection.Insert implementation
20323                 
20324         * ListControl.cs
20325                 - Fixes signature
20326         * ListBox.cs:
20327                 - Several fixes
20328                 - ObjectCollection.Insert implementation
20329                 - No selection after clean
20330                 - Small fixes
20331
20332 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20333
20334         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
20335
20336 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
20337
20338         * Combobox.cs:
20339                 - Caches ItemHeight calculation for OwnerDrawVariable
20340                 - Handles dropdown properly
20341                 - Fixes several minor bugs
20342
20343 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20344
20345         * ListBox.cs:
20346                 - Fixes 71946 and 71950
20347                 - Fixes changing Multicolumn on the fly
20348                 - Fixes keyboard navigation on Multicolumn listboxes
20349
20350 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20351         
20352         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
20353         crash reporter log.
20354
20355 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20356
20357         * XplatUIOSX.cs: Allow applications to actually exit.
20358
20359 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20360
20361         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
20362         their parent at creation time rather than lazily later.  Fixes a major
20363         regression we were experiencing.
20364
20365 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20366
20367         * ThemeWin32Classic.cs: more date time picker painting fixes
20368         * DateTimePicker.cs: more monthcalendar drop down fixes
20369         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
20370
20371 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20372
20373         * ScrollBar.cs:
20374                 - When moving the thumb going outside the control should stop the moving
20375                 - Adds the firing of missing events
20376                 - Fixes no button show if Size is not specified
20377                 - End / Home keys for keyboard navigation
20378
20379 2005-01-30  Peter Bartok  <pbartok@novell.com>
20380
20381         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
20382           sanity check to prevent theoretical loop
20383         * XplatUIWin32.cs (SetVisible): Removed debug output
20384         * XplatUIX11.cs (SystrayChange): Added sanity check
20385         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
20386         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
20387           behaviour, valid until the X11 client window rewrite is done
20388         * TextBox.cs (ctor): Setting proper default foreground and background
20389           colors
20390
20391 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
20392
20393         * Theme: Added DrawDateTimePicker to interface
20394         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
20395         * DateTimePicker.cs: Created (still needs keys and painting code)
20396         * DateTimePickerFormat.cs: added
20397         * MonthCalendar.cs: fixed CreateParams for popup window mode
20398           
20399 2005-01-29  Peter Bartok  <pbartok@novell.com>
20400
20401         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
20402           this should also the calculations for ligher/darker
20403         * Theme.cs: Fixed defaults for ScrollBar widths/heights
20404
20405 2005-01-29  Peter Bartok  <pbartok@novell.com>
20406
20407         * ArrangeDirection.cs: Added
20408         * ArrangeStartingPositon.cs: Added
20409         * SystemInformation.cs: Implemented
20410         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20411           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
20412           used by SystemInformation class
20413         * X11Strucs.cs: Added XSizeHints structure
20414         * MenuAPI.cs:
20415           - Fixed CreateParams to make sure the menu window is always visible
20416           - TrackPopupMenu: Added check to make sure we don't draw the
20417             menu offscreen
20418
20419 2005-01-29  Peter Bartok  <pbartok@novell.com>
20420
20421         * HandleData.cs: Added method for altering invalid area
20422         * TextBoxBase.cs: Implemented TextLength
20423
20424 2005-01-28  Peter Bartok  <pbartok@novell.com>
20425
20426         * XplatUIX11.cs: Improvement over last patch, not sending
20427           the WM_PAINT directly anymore, instead we scroll any pending
20428           exposed areas and let the system pick out the WM_PAINT later
20429
20430 2005-01-28  Peter Bartok  <pbartok@novell.com>
20431
20432         * SWF.csproj: Deleted, no longer used. Instead,
20433           Managed.Windows.Forms/SWF.csproj should be used
20434         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
20435           directly, to avoid a potential race condition with the next
20436           scroll
20437
20438 2005-01-28  Peter Bartok  <pbartok@novell.com>
20439
20440         * XplatUI.cs: Made class internal
20441
20442 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
20443
20444         * CheckedListBox.cs:
20445                 - Draw focus
20446                 - Fixed Drawing
20447                 - Missing methods and events
20448
20449 2005-01-27  Peter Bartok  <pbartok@novell.com>
20450
20451         * Application.cs (Run): Don't use form if we don't have one
20452
20453 2005-01-27  Peter Bartok  <pbartok@novell.com>
20454
20455         * TextBoxBase.cs (get_Lines): Fixed index off by one error
20456
20457 2005-01-27  Peter Bartok  <pbartok@novell.com>
20458
20459         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
20460         * GridItem.cs: Added; Patch by Jonathan S. Chambers
20461         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
20462         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
20463         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
20464         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
20465         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20466         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20467         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20468         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20469         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20470         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20471
20472 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20473
20474         * Combobox.cs:
20475                 - Draw focus on Simple Combobox
20476                 - Fixes drawing issues
20477                 - fixes 71834
20478
20479 2005-01-27  Peter Bartok  <pbartok@novell.com>
20480
20481         * Form.cs:
20482           - Place window in default location, instead of hardcoded 0/0
20483           - Send initial LocationChanged event
20484         * Control.cs:
20485           - UpdateBounds after creation to find out where the WM placed us
20486           - Make sure that if the ParentForm changes location the Form
20487             is notified
20488         * XplatUIX11.cs: XGetGeometry will not return the coords relative
20489             to the root, but to whatever the WM placed around us.
20490             Translate to root coordinates before returning toplevel
20491             coordinates
20492         * XplatUIWin32.cs: Removed debug output
20493         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
20494           flag to GetWindowPos, to allow translation of coordinates on X11
20495
20496 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20497
20498         * ListBox.cs: connect LostFocus Event
20499
20500 2005-01-27  Peter Bartok  <pbartok@novell.com>
20501
20502         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20503           XplatUIX11.cs: Extended the Systray API
20504         * Form.cs: Removed debug output
20505         * Application.cs: Fixed focus assignment, always need to call
20506           XplatUI.Activate() since Form.Activate() has rules that may
20507           prevent activation
20508         * NotifyIcon.cs: Should be complete now
20509         * ToolTip.cs: Worked around possible timer bug
20510
20511 2005-01-27  Jackson Harper  <jackson@ximian.com>
20512
20513         * TabControl.cs:
20514         - Only invalidate the effected tabs when the
20515         selected index changes. This reduces drawing and gets rid of some
20516         flicker.
20517         - Only refresh if the tabs need to be shifted, otherwise only
20518         invalidate the slider button.
20519         - On windows the tabs are not filled to right if the slider is
20520         visible.
20521         
20522 2005-01-27  Jackson Harper  <jackson@ximian.com>
20523
20524         * TabControl.cs: Only refresh on mouseup if we are showing the
20525         slider. Also only invalidate the button whose state has changed.
20526
20527 2005-01-26  Peter Bartok  <pbartok@novell.com>
20528
20529         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
20530         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
20531           and SystrayRemove() methods
20532         * XplatUIOSX.cs: Stubbed Systray methods
20533         * XplatUIX11.cs:
20534           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
20535             methods
20536           - Fixed broken XChangeProperty calls (marshalling messed up things)
20537         * X11Structs.cs: Added enums and structs required for Size hinting
20538         * NotifyIcon.cs: Added & implemented
20539
20540 2005-01-26  Jackson Harper  <jackson@ximian.com>
20541
20542         * TabControl.cs: Space vertically layed out tabs properly.
20543
20544 2005-01-26  Peter Bartok  <pbartok@novell.com>
20545
20546         * Form.cs (CreateClientParams): Always set the location to 0,0
20547           since we're a child window.
20548
20549         * Control.cs (SetVisibleCore): Always explicitly setting the location
20550           of a toplevel window, apparently X11 doesn't like to move windows
20551           while they're not mapped.
20552
20553 2005-01-26  Jackson Harper  <jackson@ximian.com>
20554
20555         * TabControl.cs: Implement FillToRight size mode with vertically
20556         rendered tabs.
20557
20558 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20559
20560         * ControlPaint.cs, ThemeWin32Classic.cs
20561                 - Fixes DrawFocusRectangle
20562
20563 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20564
20565         * MenuAPI.cs:
20566                 - MenuBar tracking only starts when item is first clicked
20567                 - Fixes menu hidding for multiple subitems
20568                 - Unselect item in MenuBar when item Executed
20569                 - Fixes bug 71495
20570
20571 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
20572
20573         * ListControl.cs:
20574                 - IsInputKey for ListBox
20575         * ListBox.cs:
20576                 - Focus item
20577                 - Shift and Control item selection
20578                 - Implement SelectionMode.MultiExtended
20579                 - Fixes RightToLeft
20580         * ComboBox.cs:
20581                 - IsInputKey implemented
20582                 - Do not generate OnTextChangedEdit on internal txt changes
20583                 
20584 2005-01-23  Peter Bartok  <pbartok@novell.com>
20585
20586         * AccessibleObject.cs: Partially implemented Select()
20587         * MonthCalendar.cs: Added missing attributes and events
20588         * Form.cs: Fixed CreateParams behaviour, now controls derived from
20589           form can properly override CreateParams.
20590         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20591           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
20592           Control performs Invalidate & Update
20593         * NativeWindow (CreateHandle): Added special handling for Form
20594           and Form.FormParent classes to allow overriding of From.CreateParams
20595         * Control.cs:
20596           - ControlNativeWindow: Renamed 'control' variable to more intuitive
20597             name 'owner'
20598           - ControlNativeWindow: Added Owner property
20599           - Removed usage of Refresh() on property changes, changed into
20600             Invalidate(), we need to wait until the queue is processed for
20601             updates, direct calls might cause problems if not all vars for
20602             Paint are initialized
20603           - Added call to UpdateStyles() when creating the window, to set any
20604             styles that CreateWindow might have ignored.
20605           - Added support for Form CreateParent overrides to UpdateStyles()
20606         * MessageBox.cs: Removed no longer needed FormParent override stuff,
20607           CreateParams are now properly overridable
20608         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
20609           CreateParams are now properly overridable
20610
20611 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
20612
20613         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
20614         OnTextBoxChanged.
20615
20616         Capture LostFocus and OnTextBoxChanged.  The later introduces a
20617         recursive invocation that I have not figured out yet.
20618
20619         Reset the timer when not using (it was accumulating).
20620
20621
20622         (OnTextBoxChanged): Set UserEdit to true here to track whether the
20623         user has made changes that require validation.
20624
20625         Reset changing to avoid loops.
20626
20627 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
20628
20629         * NumericUpDown.cs: Display value at startup.
20630
20631         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
20632         ValidateEditText.
20633
20634         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
20635         filled in.  Added some basic parsing of text.
20636
20637         Still missing the OnXXX method overrides, and figuring out the
20638         events that must be emitted.
20639
20640         * UpDownBase.cs: Handle UserEdit on the Text property.
20641         
20642 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
20643
20644         * ComboBox.cs:
20645           - Fixes IntegralHeight
20646           - ToString method
20647
20648 2005-01-21  Jackson Harper  <jackson@ximian.com>
20649
20650         * TabControl.cs: Set the SelectedIndex property when SelectedTab
20651         is set so that the page visibility is updated and the tabs are
20652         sized correctly.
20653
20654 2005-01-21  Jackson Harper  <jackson@ximian.com>
20655
20656         * TabControl.cs: Use cliping rectangle for blitting. Give the
20657         theme the clipping rect so we can do clipping while
20658         drawing. Remove some debug code.
20659
20660 2005-01-21  Jackson Harper  <jackson@ximian.com>
20661
20662         * TabPage.cs: Add a new method so tab pages can force the tab
20663         control to recalculate the tab page sizes.
20664         * TabControl.cs: UpdateOwner needs to make the tab control recalc
20665         sizes.
20666
20667 2005-01-20  Jackson Harper  <jackson@ximian.com>
20668
20669         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
20670
20671 2005-01-20  Jackson Harper  <jackson@ximian.com>
20672
20673         * TreeView.cs: Set the bounds for nodes properly. They were
20674         getting screwed up when checkboxes were not enabled, but images
20675         were.
20676
20677 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
20678
20679         * ListBox.cs:
20680                 - Owner draw support
20681                 - Fixes
20682                 
20683 2005-01-20  Jackson Harper  <jackson@ximian.com>
20684
20685         * XplatUIStructs.cs: More misc keys
20686         * X11Keyboard.cs: Ignore some control keys.
20687
20688 2005-01-20  Jackson Harper  <jackson@ximian.com>
20689
20690         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
20691         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
20692
20693 2005-01-19  Peter Bartok  <pbartok@novell.com>
20694
20695         * Control.cs: Un-selecting the control when it is loosing focus
20696
20697 2005-01-19  Jackson Harper  <jackson@ximian.com>
20698
20699         * TreeView.cs: Hook up to the text controls leave event so we can
20700         end editing when the users clicks outside the text box.
20701         
20702 2005-01-19  Jackson Harper  <jackson@ximian.com>
20703
20704         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
20705         get set in the conversion array.
20706
20707 2005-01-19  Peter Bartok  <pbartok@novell.com>
20708
20709         * Application.cs (ModalRun): Added a call to CreateControl to ensure
20710           focus is properly set
20711         * Button.cs:
20712           - Added missing attributes
20713           - removed styles, those are already set in the base class
20714         * ButtonBase.cs:
20715           - Added missing attributes
20716           - Added clip window styles
20717         * CheckBox.cs: Added missing attributes
20718         * CommonDialog.cs:
20719           - FormParentWindow.CreateParams: Added required clip styles
20720         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
20721           also filters modifier keys
20722         * MessageBox.cs:
20723           - Added assignment of Accept and Cancel button to enable Enter
20724             and Esc keys in MessageBox dialogs
20725           - FormParentWindow.CreateParams: Added required clip styles
20726         * RadioButton.cs: Added missing attributes
20727         * TextControl.cs: No longer draws selection if control does not
20728           have focus
20729         * TextBoxBase.cs:
20730           - Now draws simple rectangle around test area to make it obvious
20731             there's a control. This is a hack until we properly support borders
20732           - A few simple fixes to support selections better, now erases selected
20733             text when typing, and resets selection when using movement keys
20734
20735 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
20736
20737         * UpDownBase.cs: Added some new properties.
20738
20739         * DomainUpDown.cs: Implement a lot to get my test working.
20740
20741 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20742
20743         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
20744
20745 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20746
20747         * OSXStructs (WindowAttributes): Fixed csc complaints
20748
20749 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20750
20751         * XplayUIOSX.cs:
20752           OSXStructs.cs: Initial refactor to move enums and consts into
20753           OSXStructs and use them in the driver for greater readability.
20754
20755 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20756
20757         * XplatUIOSX.cs: Initial support for Standard Cursors.
20758         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
20759
20760 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
20761
20762         * ComboBox.cs: ability to change style when the ctrl is already
20763         created, missing methods and events, bug fixes, signature fixes
20764
20765 2005-01-19  Peter Bartok  <pbartok@novell.com>
20766
20767         * Cursors.cs (ctor): Added ctor to fix signature
20768
20769 2005-01-18  Peter Bartok  <pbartok@novell.com>
20770
20771         * Button.cs: Implemented DoubleClick event
20772         * ButtonBase.cs:
20773           - Fixed keyboard handling to behave like MS, where the press of
20774             Spacebar is equivalent to a mousedown, and the key release is
20775             equivalent to mouseup. Now a spacebar push will give the same
20776             visual feedback like a mouse click.
20777           - Added missing attributes
20778           - Added ImeModeChanged event
20779           - Added support for generating DoubleClick event for derived classes
20780         * CheckBox.cs:
20781           - Implemented DoubleClick event
20782           - Added missing attributes
20783         * CommonDialog.cs: Added missing attribute
20784         * ContextMenu.cs: Added missing attributes
20785         * RadioButton.cs:
20786           - AutoChecked buttons do not allow to be unselected when clicked
20787             (otherwise we might end up with no selected buttons in a group)
20788           - Added missing attributes
20789           - Implemented DoubleClickEvent
20790         * ThreadExceptionDialog.cs: Enabled TextBox code
20791
20792 2005-01-18  Peter Bartok  <pbartok@novell.com>
20793
20794         * Form.cs: Removed debug output
20795         * Button.cs: Added support for DoubleClick method
20796
20797 2005-01-18  Peter Bartok  <pbartok@novell.com>
20798
20799         * Form.cs:
20800           - Added method to parent window that allows triggering size
20801             calculations when a menu is added/removed
20802           - set_Menu: Cleaned up mess from early days of Form and Control,
20803             now properly triggers a recalc when a menu is added/removed
20804           - Added case to select form itself as focused form if no child
20805             controls exist
20806           - Added PerformLayout call when showing dialog, to ensure properly
20807             placed controls
20808         * Control.cs:
20809           - Select(): Made internal so Form can access it
20810           - Focus(): Only call Xplat layer if required (avoids loop), and sets
20811             status
20812         * Application.cs (Run): Removed hack and calls PerformLayout instead
20813           to trigger calculation when Form becomes visible
20814
20815 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
20816
20817         * ComboBox.cs: fixes for ownerdraw
20818
20819 2005-01-18  Peter Bartok  <pbartok@novell.com>
20820
20821         * TextControl.cs:
20822           - Sentinel is no longer static, each Document gets it's own, this
20823             avoids locking or alternatively overwrite problems when more
20824             than one text control is used simultaneously.
20825           - Switched to use Hilight and HilightText brushes for text selection
20826
20827         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
20828
20829 2005-01-18  Peter Bartok  <pbartok@novell.com>
20830
20831         * Control.cs:
20832           - Hooked up the following events:
20833                 o ControlAdded
20834                 o ControlRemoved
20835                 o HandleDestroyed
20836                 o ImeModeChanged
20837                 o ParentChanged
20838                 o TabStopChanged
20839                 o Invalidated
20840                 o SystemColorsChanged
20841                 o ParentFontChanged
20842                 o Move
20843           - Removed debug output
20844           - Added a call to the current theme's ResetDefaults when a color change
20845             is detected
20846         * Form.cs: Now setting the proper ImeMode
20847         * Theme.cs: Defined a method to force recreation of cached resources
20848           and rereading of system defaults (ResetDefaults())
20849         * ThemeWin32Classic.cs: Added ResetDefaults() stub
20850
20851 2005-01-17  Peter Bartok  <pbartok@novell.com>
20852
20853         * Control.cs: Added missing attributes
20854
20855 2005-01-17  Jackson Harper  <jackson@ximian.com>
20856
20857         * TreeNode.cs: Implement editing. Add missing properties selected
20858         and visible.
20859         * TreeView.cs: Implement node editing. Also some fixes to use
20860         Invalidate (invalid area) instead of Refresh when selecting.
20861
20862 2005-01-17  Peter Bartok  <pbartok@novell.com>
20863
20864         * Control.cs:
20865           - Implemented InvokeGotFocus() method
20866           - Implemented InvokeLostFocus() method
20867           - Implemented InvokePaint() method
20868           - Implemented InvokePaintBackground() method
20869           - Implemented InvokeClick() method
20870           - Implemented FindForm() method
20871           - Implemented RectangleToClient() method
20872           - Implemented ClientToRectangle() method
20873           - Implemented ResetBackColor() method
20874           - Implemented ResetCursor() method
20875           - Implemented ResetFont() method
20876           - Implemented ResteForeColor() method
20877           - Implemented ResetImeMode() method
20878           - Implemented ResetLeftToRight() method
20879           - Implemented ResetText() method
20880           - Implemented Scale() methods
20881           - Implemented ScaleCore() method
20882           - Implemented Update() method
20883           - Removed unused variables
20884           - Stubbed AccessibilityNotifyClients and
20885             ControlAccessibleObject.NotifyClients() methods (dunno what to do
20886             with those yet)
20887           - Now setting proper default for RightToLeft property
20888           - Fixed bug in SetClientSizeCore that would cause windows to get
20889             really big
20890           - Now sending Click/DoubleClick events
20891           - Now selecting controls when left mouse button is clicked on
20892             selectable control
20893         * AccessibleEvents.cs: Added
20894         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
20895         * XplatUIOSX.cs: Stubbed UpdateWindow() method
20896         * XplatUIWin32.cs: Implemented UpdateWindow() method
20897         * XplatUIX11.cs: Implemented UpdateWindow() method
20898         * Form.cs: Removed stray semicolon causing CS0162 warning
20899         * ThemeWin32Classic.cs: Fixed unused variable warnings
20900         * ScrollableControl.cs: Now calls base method for ScaleCore
20901         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
20902           style to avoid interference with internal click handler (which is
20903           different than standard Control click handling)
20904         * RadioButton.cs:
20905           - Now unchecks all sibling radio buttons when control is
20906             selected (Fixes #68756)
20907           - Removed internal tabstop variable, using the one inherited from
20908             Control
20909
20910 2005-01-17  Jackson Harper  <jackson@ximian.com>
20911
20912         * NavigateEventArgs.cs: Fix base type.
20913         * LinkLabel.cs: Sig fix
20914         
20915 2005-01-17  Jackson Harper  <jackson@ximian.com>
20916
20917         * TreeView.cs: Only invalidate the effected nodes bounds when
20918         selecting nodes.
20919
20920 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20921
20922         * XplatUIWin32.cs: fixes Win32 marshaling
20923         * XplatUIX11.cs: fixes method signature
20924
20925 2005-01-17  Peter Bartok  <pbartok@novell.com>
20926
20927         * XplatUIX11.cs: Clean up resources when we no longer need them
20928
20929 2005-01-17  Peter Bartok  <pbartok@novell.com>
20930
20931         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
20932           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
20933           and DestroyCursor() methods.
20934         * Cursor.cs: Partially implemented, now supports standard cursors;
20935           still contains some debug code
20936         * Cursors.cs: Implemented class
20937         * Control.cs:
20938           - WndProc(): Added handling of WM_SETCURSOR message, setting the
20939             appropriate cursor
20940           - Implemented Cursor property
20941           - Replaced break; with return; more straightforwar and possibly
20942             faster
20943           - Now properly setting the result for WM_HELP
20944         * X11Structs.cs: Added CursorFontShape enum
20945         * XplatUIStructs.cs:
20946           - Added StdCursor enum (to support DefineStdCursor() method)
20947           - Added HitTest enum (to support sending WM_SETCURSOR message)
20948         * XplatUIX11.cs:
20949           - Now sends the WM_SETCURSOR message
20950           - Implemented new cursor methods
20951         * XplatUIOSX.cs: Stubbed new cursor methods
20952         * XplatUIWin32.cs:
20953           - Implemented new cursor methods
20954           - Added GetSystemMetrics function and associated enumeration
20955
20956 2005-01-15  Peter Bartok  <pbartok@novell.com>
20957
20958         * Control.cs:
20959           - WndProc(): Now handles EnableNotifyMessage
20960           - SelectNextControl(): Fixed bug where if no child or sibling
20961             controls exist we looped endlessly
20962
20963 2005-01-14  Jackson Harper  <jackson@ximian.com>
20964
20965         * TreeView.cs: Recalculate the tab pages when a new one is added
20966         so that the proper bounding rects are created.
20967
20968 2005-01-14  Jackson Harper  <jackson@ximian.com>
20969
20970         * TreeView.cs: Draw a gray box instead of a grip in the lower
20971         right hand corner when there are both horizontal and vertical
20972         scroll bars.
20973
20974 2005-01-14  Jackson Harper  <jackson@ximian.com>
20975
20976         * Control.cs: When erasing backgrounds use FromHwnd instead of
20977         FromHdc when there is a NULL wparam. This occurs on the X driver.
20978         * XplatUIX11.cs: Set the wparam to NULL.
20979
20980 2005-01-13  Jackson Harper  <jackson@ximian.com>
20981
20982         * PictureBox.cs: Implement missing methods (except ToString, need
20983         to test that on windows) and events. When visibility is changed we
20984         need to redraw the image because the buffers are killed. When size
20985         is changed refresh if the sizemode needs it.
20986
20987 2005-01-13  Peter Bartok  <pbartok@novell.com>
20988
20989         * Control.cs (SelectNextControl): Was using wrong method to select
20990           a control
20991
20992 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20993
20994         * ComboBox.cs: fixes dropstyle
20995
20996 2005-01-13  Peter Bartok  <pbartok@novell.com>
20997
20998         * Form.cs:
20999           - Implemented Select() override
21000           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
21001           - Now sets keyboard focus on startup
21002         * Control.cs (SelectNextControl): Now properly handles directed=true
21003         * TextBoxBase.cs:
21004           - WndProc: Now passes tab key on to base if AcceptTabChar=false
21005           - Added (really bad) focus rectangle (mostly for testing)
21006         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
21007           to enforce redraw on focus changes
21008         * ContainerControl.cs:
21009           - Fixed detection of Shift-Tab key presses
21010           - Fixed traversal with arrow keys
21011         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
21012           gonna keep this or if it's complete yet
21013         
21014 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
21015
21016         * ComboBox.cs: missing properties, fixes
21017
21018 2005-01-13  Peter Bartok  <pbartok@novell.com>
21019
21020         * Panel.cs (ctor): Setting Selectable window style to off
21021         * Splitter.cs (ctor): Setting Selectable window style to off
21022         * GroupBox.cs (ctor): Setting Selectable window style to off
21023         * Label.cs (ctor): Setting Selectable window style to off
21024
21025 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
21026
21027         * UpDownBase.cs (InitTimer): If the timer has been already
21028         created, enable it.
21029
21030         Use a TextBox instead of a Label.
21031
21032 2005-01-12  Jackson Harper  <jackson@ximian.com>
21033
21034         * TreeView.cs: Refresh the tree after sorting the nodes. Always
21035         draw the connecting node lines (when ShowLines is true).
21036         * TreeNode.cs: The nodes index can now be updated. This is used
21037         when a node collection is sorted.
21038         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
21039         insert or an existing unsorted node collection can be sorted.
21040         
21041 2005-01-12  Peter Bartok  <pbartok@novell.com>
21042
21043         * ContainerControl.cs: Implemented ProcessDialogKeys()
21044
21045 2005-01-12  Peter Bartok  <pbartok@novell.com>
21046
21047         * Control.cs:
21048           - Implemented SelectNextControl() method
21049           - Several focus related bug fixes
21050           - Fixed Docking calculations to match MS documentation and
21051             behaviour
21052
21053 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
21054
21055         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
21056         bug fixes
21057
21058 2005-01-12  Peter Bartok  <pbartok@novell.com>
21059
21060         * Control.cs:
21061           - Fixed broken Contains() method
21062           - Implemented GetNextControl() method. Finally. This is the pre-
21063             requisite for focus handling.
21064
21065 2005-01-12  Peter Bartok  <pbartok@novell.com>
21066
21067         * OSXStrucs.cs: Added
21068
21069 2005-01-12  Peter Bartok  <pbartok@novell.com>
21070
21071         * XplatUIWin32.cs:
21072           - Removed PeekMessageFlags
21073           - Implemented SetWindowStyle() method
21074         * XplatUIStructs.cs: Added PeekMessageFlags
21075         * X11Structs: Added missing border_width field to XWindowChanges struct
21076         * XplatUIX11.cs:
21077           - PeekMessage: Now throws exception if flags which are not yet
21078             supported are passed
21079           - Implemented SetWindowStyle() method
21080           - Fixed SetZOrder to handle AfterHwnd properly
21081         * XplatUI.cs: Added SetWindowStyle() method
21082         * XplatUIDriver.cs: Added SetWindowStyle() abstract
21083         * Control.cs:
21084           - Implemented UpdateStyles() method
21085           - Implemented UpdateZOrder() method
21086         * XplatUIOSX.cs: Added SetWindowStyle() stub
21087
21088 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
21089
21090         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
21091         button mouse).
21092
21093
21094 2005-01-11  Jackson Harper  <jackson@ximian.com>
21095
21096         * TreeView.cs: Still need to draw lines to siblings even if out of
21097         the current node is out of the clip.
21098
21099 2005-01-11  Jackson Harper  <jackson@ximian.com>
21100
21101         * TreeView.cs: When setting the hbar/vbar/grip position use
21102         SetBounds so that perform layout is only called once. Also suspend
21103         and resume layout so layout is only done once for all controls.
21104         - Removed some debug fluff
21105         * SizeGrip.cs: Call base implmentation in overriding methods.
21106         - When visibility is changed the drawing buffers are killed so we
21107         need to redraw.
21108
21109 2005-01-11  Jackson Harper  <jackson@ximian.com>
21110
21111         * TreeView.cs: Calculate the open node count while drawing. This
21112         saves us an entire tree traversal for every paint operation. Use
21113         a member var for the open node count so less vars are passed around.
21114
21115 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
21116
21117         * MonthCalendar.cs:
21118         - fixed selection to use mousemove, not mouse polling on timer
21119         * ThemeWin32Classic.cs
21120         - removed redundant unused variable "no_more_content"
21121         
21122 2005-01-11  Peter Bartok  <pbartok@novell.com>
21123
21124         * XplatUIX11.cs (DoEvents): Needs to return when no more events
21125           are pending, so it now calls PeekMessage instead of GetMessage;
21126           implemented a incomplete version of PeekMessage
21127         
21128 2005-01-11  Peter Bartok  <pbartok@novell.com>
21129
21130         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
21131           I18n issues
21132         * TextBoxBase.cs: Added sending of TextChanged event
21133
21134 2005-01-10  Jackson Harper  <jackson@ximian.com>
21135
21136         * TreeView.cs: Try not to draw outside the clipping rectangle on
21137         each node element.
21138
21139 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
21140
21141         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
21142
21143 2005-01-10  Jackson Harper  <jackson@ximian.com>
21144
21145         * TreeView.cs:
21146         - Implement fast scrolling. Now only the newly
21147         exposed nodes are drawn and the old image is moved using the
21148         XplatUI::ScrollWindow method.
21149         - Factor in height of nodes when calculating whether or not the
21150         node is in the clipping rect.
21151
21152 2005-01-10  Jackson Harper  <jackson@ximian.com>
21153
21154         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
21155
21156 2005-01-10  Peter Bartok  <pbartok@novell.com>
21157
21158         * Application.cs: Added temporary hack to resolve all our resize
21159           required issues on startup. This will get fixed properly at
21160           some point in the future
21161
21162 2005-01-10  Jackson Harper  <jackson@ximian.com>
21163
21164         * SizeGrip.cs: New internal class that is used as a sizing
21165         grip control...hence the name.
21166
21167 2005-01-10  Peter Bartok  <pbartok@novell.com>
21168
21169         * Control.cs: Implemented proper TabIndex handling, now assigning
21170           a tabindex when a control is added to a container
21171         * GroupBox.cs (ctor): Now sets the Container style bit, required
21172           for Control.GetNextControl()
21173
21174 2005-01-09  Jackson Harper  <jackson@ximian.com>
21175
21176         * TextBoxBase.cs: Clear window when scrolling (fixes build).
21177
21178 2005-01-09  Peter Bartok <pbartok@novell.com>
21179
21180         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
21181           XplatUIX11.cs: Added ability to control ScrollWindow expose and
21182           an overload for ScrollWindow to allow only scrolling a rectangle
21183
21184 2005-01-09  Peter Bartok <pbartok@novell.com>
21185
21186         * Form.cs:
21187           - Implemented SetDesktopBounds method
21188           - Implemented SetDesktopLocation method
21189
21190 2005-01-08  Jackson Harper  <jackson@ximian.com>
21191
21192         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
21193         the node count has changed, this removes to VScroll::Refresh calls
21194         when drawing.
21195
21196 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
21197
21198         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
21199
21200 2005-01-07  Jackson Harper  <jackson@ximian.com>
21201
21202         * TreeNode.cs: Just update the single node when it is
21203         checked. Don't refresh after toggling, the Expand/Collapse already
21204         handles this.
21205         * TreeView.cs: Respect clipping a little more when drawing. Try
21206         not to redraw things that don't need to be redrawn. Just hide the
21207         scrollbars when they are no longer needed instead of removing
21208         them, so they don't have to be created again and again.
21209         
21210 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
21211
21212         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
21213         coordinates to window space to place the caret properly, FIXED.
21214         Implement GetWindowState & SetWindowState
21215
21216 2005-01-06  Peter Bartok <pbartok@novell.com>
21217
21218         * Form.cs:
21219           - Implemented ClientSize property
21220           - Implemented DesktopBounds property
21221           - Implemented DesktopLocation property
21222           - Implemented IsRestrictedWindow property
21223           - Implemented Size property
21224           - Implemented TopLevel property
21225           - Implemented FormWindowState property
21226         * Control.cs:
21227           - Implemented GetTopLevel() method
21228           - Implemented SetTopLevel() method
21229         * X11Structs.cs (Atom):
21230           - Added AnyPropertyType definition
21231           - Added MapState definiton and updated XWindowAttribute struct
21232         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
21233         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
21234         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
21235         * XplatUIWin32.cs:
21236           - Implemented GetWindowState() and SetWindowState() methods
21237           - Fixed Win32GetWindowLong return type
21238         * XplatUIX11.cs:
21239           - Introduced central function for sending NET_WM messages
21240           - Implemented GetWindowState() and SetWindowState() methods
21241         * TextBoxBase.cs (set_Lines):
21242           - Now uses Foreground color for text added via Text property (Duh!)
21243           - Added code to remember programmatically requested size (fixes
21244             behaviour when Multiline is set after Size)
21245           - Added AutoSize logic
21246
21247 2005-01-06  Jackson Harper  <jackson@ximian.com>
21248
21249         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
21250
21251 2005-01-06  Jackson Harper  <jackson@ximian.com>
21252
21253         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
21254         set to less then 0.
21255
21256 2005-01-06  Jackson Harper  <jackson@ximian.com>
21257
21258         * ScrollableControl.cs: Lazy init the scrollbars.
21259         
21260 2005-01-06  Jackson Harper  <jackson@ximian.com>
21261
21262         * Theme.cs: Speed up getting pens and solid brushes, by using
21263         their ARGB as a hash instead of tostring and not calling Contains.
21264
21265 2005-01-06  Peter Bartok <pbartok@novell.com>
21266
21267         * Form.cs:
21268           - Implemented OnActivated and OnDeactivate event trigger
21269           - Implemented Activate() method
21270           - Fixed ShowDialog() to activate the form that was active before
21271             the dialog was shown
21272         * XplatUIX11.cs:
21273           - Added global active_window var that tracks the currently active
21274             X11 window
21275           - Now always grabs Property changes from the root window to always
21276             catch changes on the active window property
21277           - Added code to PropertyNotify handler to send Active/Inactive
21278             messages when state changes. This puts X11 and Win32 en par on
21279             WM_ACTIVATE notifications (except for double notifications when
21280             the user clicks away from our modal window to another one of our
21281             windows)
21282
21283 2005-01-05  Jackson Harper  <jackson@ximian.com>
21284
21285         * ImageList.cs: Implment ctor
21286
21287 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21288
21289         * XplatUIOSX.cs: Implement Activate/SetTopmost
21290
21291 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21292
21293         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
21294
21295 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21296
21297         * XplatUIOSX.cs: Implement GetActive/SetFocus.
21298
21299 2005-01-05  Peter Bartok <pbartok@novell.com>
21300
21301         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
21302           XplatUIOSX.cs: Added GetActive method to return the currently
21303           active window for the application (or null, if none is active)
21304         * Form.cs:
21305           - Implemented ActiveForm
21306           - Commented out owner assignment for modal dialogs (causes problems
21307             on Win32, since the owner will be disabled)
21308           - Reworked some Active/Focus handling (still incomplete)
21309         * CommonDialog.cs: Commented out owner assignment for modal dialogs
21310           (causes problems on Win32, since the owner will be disabled)
21311         * IWin32Window: Added ComVisible attribute
21312
21313 2005-01-05  Peter Bartok <pbartok@novell.com>
21314
21315         * ToolTip.cs (WndProc): Enable setting focus now that we have the
21316           required XplatUI functions.
21317
21318 2005-01-05  Peter Bartok <pbartok@novell.com>
21319
21320         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
21321           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
21322           to implement focus and activation handling; still incomplete and
21323           with debug output
21324
21325 2005-01-04  Peter Bartok <pbartok@novell.com>
21326
21327         * TextBoxBase.cs: Changed access level for Document property to
21328           match switch to internal for TextControl
21329
21330 2005-01-04  Peter Bartok <pbartok@novell.com>
21331
21332         * AccessibleObject: Added ComVisible attribute
21333
21334 2005-01-04  Jackson Harper  <jackson@ximian.com>
21335
21336         * X11Keyboard.cs: Remove unneeded var.
21337
21338 2005-01-04  Jackson Harper  <jackson@ximian.com>
21339
21340         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
21341         but PAINT.
21342         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
21343         ClientMessage. This makes apps exit cleanly (more often).
21344         
21345 2005-01-04  Jackson Harper  <jackson@ximian.com>
21346
21347         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
21348         handling focus, return correct colors and fonts,
21349         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
21350         handle selection, horizontal scrolling, and mouse interaction.
21351
21352 2005-01-04  Peter Bartok <pbartok@novell.com>
21353
21354         * ICommandExecutor.cs: Added
21355         * IDataGridColumnStyleEditingNotificationService.cs: Added
21356         * IFeatureSupport.cs: Added
21357         * IFileReaderService.cs: Added
21358         * IDataObject.cs: Added ComVisible attribute
21359         * AmbientProperties.cs: Added
21360         * BaseCollection.cs: Added missing attributes
21361         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
21362         * BaseCollection.cs: Added missing attributes
21363         * Binding.cs: Added TypeConverter attribute
21364         * BindingContext.cs: Added DefaultEvent attribute
21365         * BindingsCollection.cs: Added DefaultEvent attribute
21366         * Button.cs: Added DefaultValue attribute
21367         * DragEventArgs.cs: Added ComVisible attribute
21368         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
21369         * KeyEventArgs.cs: Added ComVisible attribute
21370         * KeyPressEventArgs.cs: Added ComVisible attribute
21371         * MouseEventArgs.cs: Added ComVisible attribute
21372         * NavigateEventArgs.cs: Added
21373         * NavigateEventHandler.cs: Added
21374         * FeatureSupport.cs: Added
21375         * OSFeature.cs: Added
21376         * Theme.cs: Added abstract Version property to support OSFeature
21377         * ThemeWin32Classic.cs: Added Version property to
21378           support OSFeature.Themes
21379         * ProgressBar.cs: Removed OnPaintBackground override, not required since
21380           the proper styles to avoid background drawing are set, also doesn't
21381           match MS signature
21382         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
21383         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
21384         * ScrollEventArgs.cs: Added ComVisible attribute
21385         * SplitterEventArgs.cs: Added ComVisible attribute
21386         * AccessibleSelection.cs: Added Flags attribute
21387         * Appearance.cs: Added ComVisible attribute
21388         * Border3DSide.cs: Added ComVisible attribute
21389         * Border3DStyle.cs: Added ComVisible attribute
21390         * BorderStyle.cs: Added ComVisible attribute
21391         * DragAction.cs: Added ComVisible attribute
21392         * ErrorBlinkStyle.cs: Added
21393         * ScrollEventType.cs: Added ComVisible attribute
21394         * AnchorStyles.cs: Added Editor attribute
21395         * DockStyle.cs: Added Editor attribute
21396         * HorizontalAlignment.cs: Added ComVisible attribute
21397         * HelpEventArgs.cs: Added ComVisible attribute
21398         * PaintEventArgs.cs: Added IDisposable
21399
21400 2005-01-04  Peter Bartok <pbartok@novell.com>
21401
21402         * TextControl.cs: Switched Line, LineTag and Document classes to
21403           internal
21404
21405 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21406
21407         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
21408         Simple mode, fixes, IntegralHeight, etc.
21409
21410 2005-01-04  Peter Bartok <pbartok@novell.com>
21411
21412         * TextBoxBase.cs: Using proper font variable now
21413
21414 2005-01-04  Peter Bartok <pbartok@novell.com>
21415
21416         * Form.cs (ShowDialog): Set parent to owner, if provided
21417         * GroupBox.cs: Removed unused vars
21418         * TextControl.cs:
21419           - Added GetHashCode() for Document and LineTag classes
21420           - Removed unused variables
21421           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
21422             to allow translation between continuous char position and line/pos
21423         * CheckBox.cs: Removed vars that are provided by base class
21424         * RadioButton.cs: Removed vars that are provided by base class, added
21425           new keyword where required
21426         * LinkLabel.cs: Added new keyword where required
21427         * Control.cs (WndProc): Removed unused variable
21428         * TextBoxBase.cs:
21429           - Finished SelectionLength property
21430           - Implemented SelectionStart property
21431           - Implemented Text property
21432           - Removed unused vars
21433         * MessageBox.cs: Added new keyword where required
21434         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
21435           WndProc signature
21436         * MenuAPI.cs: Added new keyword where required
21437         * ButtonBase.cs: Removed vars that are provided by base class, added
21438           new keyword where required
21439         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
21440           argument to double, to allow compiling with csc 2.0 (Atsushi ran
21441           into this)
21442         * Application.cs (Run): Now triggers the ThreadExit event
21443         * CommonDialog.cs: Added new keyword where required; now properly sets
21444           parent (owner) for dialog
21445         * XplatUIX11.cs: Commented out unused vars
21446         * StatusBar.cs: Fixed signature for Text property
21447         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
21448
21449 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21450
21451         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
21452         TrackBar.cs, MonthCalendar.cs: remove unused vars
21453
21454 2005-01-03  Jackson Harper  <jackson@ximian.com>
21455
21456         * ThemeWin32Classic.cs:
21457         * X11Keyboard.cs: Remove unused vars.
21458
21459 2005-01-03  Peter Bartok  <pbartok@novell.com>
21460
21461         * TextBox.cs:
21462           - set_Text: Tied into TextControl
21463           - set_TextAlignment: Tied into TextControl
21464         * TextControl.cs:
21465           - Added alignment properties and implemented alignment handling
21466             and drawing (still has a bug, not generating proper expose events)
21467           - Added new Line() constructor to allow passing the line alignment
21468           - Fixed selection setting, properly handling end<start now
21469           - Added aligment considerations to RecalculateDocument()
21470         * TextBoxBase.cs:
21471           - Now properly enforces control height for single line controls
21472           - Added support for CharacterCasing
21473           - Added IsInputKey override
21474           - Fixed Keys.Enter logic
21475           - Added SetBoundsCore override
21476           - Fixed mouse selection handling
21477
21478 2005-01-03  Jackson Harper  <jackson@ximian.com>
21479
21480         * TreeView.cs:
21481           - Collapse and uncheck all nodes when CheckBoxes is disabled.
21482           - Checkboxes are always aligned to the bottom of the node,
21483           regardless of item height.
21484           - Use the node bounds to draw the text so we can center it when
21485           the item height is greater then the font height.
21486           - Node::Bounds are only the text part of the node.
21487         * TreeNode.cs: New method to combine collapsing and unchecking all
21488           nodes recursively.
21489
21490 2005-01-02  Jackson Harper  <jackson@ximian.com>
21491
21492         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
21493         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
21494         tree when a check is changed. TODO: Only refresh the checked node.
21495
21496 2004-12-30  Jackson Harper  <jackson@ximian.com>
21497
21498         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
21499         * TreeNode.cs: When collapsing make sure to never collapse the
21500         root node.
21501
21502 2004-12-29  Jackson Harper  <jackson@ximian.com>
21503
21504         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
21505         
21506 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
21507
21508         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
21509
21510 2004-12-28  Peter Bartok  <pbartok@novell.com>
21511
21512         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
21513           not yet assigned
21514
21515 2004-12-28  Peter Bartok  <pbartok@novell.com>
21516
21517         * Control.cs (WndProc): Added WM_HELP handler, now generates
21518           HelpRequested event
21519         * Form.cs: Added HelpButton property and required support code
21520         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
21521
21522 2004-12-28  Peter Bartok  <pbartok@novell.com>
21523
21524         * CommonDialog.cs:
21525           - Made DialogForm.owner variable internal
21526           - Added check to ensure owner form is set before setting
21527             owner properties in CreateParams
21528
21529 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
21530
21531         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
21532           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
21533           GetCursorPos.  Fix major visibility issues.  Rework the windowing
21534           system to support borderless/titleless windows (implements menus).
21535           Fix GetWindowPos.  Implement initial background color support for
21536           views.
21537
21538 2004-12-28  Peter Bartok  <pbartok@novell.com>
21539
21540         * Form.cs (get_CreateParams): Make sure we have an owner before using
21541           the owner variable. Implement proper default if no owner exists
21542
21543 2004-12-28  Peter Bartok  <pbartok@novell.com>
21544
21545         * In preparation for making Managed.Windows.Forms the default build target
21546           for System.Windows.Forms, the following stubbed files were added.
21547           Dialogs are currently being implemented by contributors and are only
21548           short-term place holders.
21549         * ColorDialog.cs: Initial check-in (minmal stub)
21550         * DataGrid.cs: Initial check-in (minimal stub)
21551         * DataGridLineStyle.cs: Initial check-in (minimal stub)
21552         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
21553         * DataGridTableStyle.cs: Initial check-in (minimal stub)
21554         * FontDialog.cs: Initial check-in (minimal stub)
21555         * FileDialog.cs: Initial check-in (minimal stub)
21556         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
21557         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
21558         * OpenFileDialog: Initial check-in (minimal stub)
21559         * IComponentEditorPageSite.cs: Initial check-in
21560         * Splitter.cs: Initial check-in (for Jackson)
21561         * SplitterEventArgs.cs: Initial check-in (for Jackson)
21562         * SplitterEventHandler.cs: Initial check-in (for Jackson)
21563         * TextBox.cs: Initial check-in; still needs some wiring to
21564           TextControl backend
21565         * Form.cs: Implemented ControlBox property
21566         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
21567         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
21568         * TextControl.cs: Added selection functionality; added todo header
21569         * TextBoxBase.cs:
21570           - Implemented Lines property
21571           - Implemented TextHeight property
21572           - Implemented SelectedText property
21573           - Implemented SelectionLength property
21574           - Implemented SelectAll method
21575           - Implemented ToString method
21576           - Removed and cleaned up some debug code
21577           - Implemented (still buggy) mouse text selection
21578
21579 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
21580
21581         * ComboBox.cs: Complete DropDownList implementation, fixes.
21582
21583 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
21584
21585         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
21586         * ComboBoxStyle.cs: ComboBoxStyle enum
21587         * ComboBox.cs: Initial work on ComboBox control
21588
21589 2004-12-21  Peter Bartok  <pbartok@novell.com>
21590
21591         * Control.cs (ctor, CreateParams): Moved setting of is_visible
21592           forward so that anything that creates a window gets the default,
21593           also no longer uses Visible property in CreateParams to avoid
21594           walking up the parent chain and possibly get the wrong visible
21595           status. Fixed IsVisible to no longer walk up to the parent.
21596
21597 2004-12-21  Peter Bartok  <pbartok@novell.com>
21598
21599         * Form.cs (ShowDialog): Unset modality for the proper window
21600  
21601 2004-12-20  Peter Bartok  <pbartok@novell.com>
21602
21603         * CommonDialog.cs: Initial check-in
21604
21605 2004-12-20  Peter Bartok  <pbartok@novell.com>
21606
21607         * Control.cs (Visible): Now uses the parent window instead of the
21608           client area window for the property
21609
21610         * Form.cs
21611           - ShowDialog(): Now uses the proper window for modality
21612           - The default visibility state for the form parent is now false. This
21613             will prevent the user from seeing all the changes to the form and
21614             its controls before the application hits Application.Run()
21615           - Removed some stale commented out code
21616
21617         * NativeWindow.cs:
21618           - Added FindWindow() method to have a method to check for existence
21619             of a window handle
21620           - Added ability to override default exception handling (for example
21621             when debugging with VS.Net; to do this the ExternalExceptionHandler
21622             define must be set
21623           - Removed some useless debug output
21624
21625         * XplatUIX11.cs:
21626           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
21627             not working as expected
21628           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
21629             property to allow switching back to the modal window if focus is
21630             given to another one of our windows (Application Modal)
21631           - Now only sets override_redirect if we create a window
21632             without WS_CAPTION
21633           - Moved EventMask selection before mapping of newly created window
21634             so we can catch the map event as well
21635           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
21636           - Added various Atom related DllImports
21637           - Implemented Exit() method
21638           - .ctor() : No longer shows window if WS_VISIBLE is not defined
21639             in the CreateParams
21640
21641         * MessageBox.cs: Now properly deals with the FormParent window by
21642           providing an override the FormParent CreateParams property to
21643           set as POPUP instead of OVERLAPPED window.
21644
21645 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21646
21647         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
21648         Minor code cleanup.
21649
21650 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21651         
21652         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
21653
21654 2004-12-18  Peter Bartok  <pbartok@novell.com>
21655
21656         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
21657           implementing SetModal() method
21658
21659 2004-12-18  Peter Bartok  <pbartok@novell.com>
21660
21661         * X11Structs.cs (XGCValues): Fixed type of function element
21662         * XplatUI.cs: Added ScrollWindow() method
21663         * XplatUIDriver.cs: Added ScrollWindow() abstract
21664         * XplatUIWin32.cs: Implemented ScrollWindow() method
21665         * XplatUIX11.cs: Implemented ScrollWindow() method
21666         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
21667
21668 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21669
21670         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
21671         Some more keyboard support (INCOMPLETE)
21672
21673 2004-12-17  Peter Bartok  <pbartok@novell.com>
21674
21675         * TextControl.cs:
21676         - Added color attribute to line tags.
21677         - Added color argument to all functions dealing with tags
21678         - Added color argument support to various functions
21679         - Fixed miss-calculation of baseline/shift in certain circumstances
21680
21681         * TextBoxBase.cs: Added new color option to test code
21682
21683 2004-12-17  Jackson Harper  <jackson@ximian.com>
21684
21685         * TreeNode.cs:
21686         * MonthCalendar.cs: Signature fixes
21687
21688 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21689
21690         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
21691         keyboard event moved it.  Create a new graphics context for each paint resolves this
21692
21693 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21694
21695         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
21696         Make caret exist and go blink blink.  Initial keyboard support.
21697         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
21698         works.
21699
21700 2004-12-17  Jackson Harper  <jackson@ximian.com>
21701
21702         * XplatUIStructs.cs: Updated set of virtual keycodes.
21703         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
21704
21705 2004-12-17  Jackson Harper  <jackson@ximian.com>
21706
21707         * XplatUIX11.cs: Prune old keyboard code.
21708
21709 2004-12-17  Jackson Harper  <jackson@ximian.com>
21710
21711         * XplatUIX11.cs: When generating mouse wparams get the modifier
21712         keys from the ModifierKeys property.
21713
21714 2004-12-17  Jackson Harper  <jackson@ximian.com>
21715
21716         * X11Keyboard.cs: Send up/down input when generating
21717         messages. Remove some unused vars.
21718
21719 2004-12-17  Jackson Harper  <jackson@ximian.com>
21720
21721         * TabControl.cs:
21722         * TreeView.cs: get rid of warnings.
21723
21724 2004-12-17  Jackson Harper  <jackson@ximian.com>
21725
21726         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
21727
21728 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
21729
21730         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
21731           CheckedListBox.cs: Implementation
21732
21733 2004-12-17  Peter Bartok  <pbartok@novell.com>
21734
21735         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
21736
21737 2004-12-16  Peter Bartok  <pbartok@novell.com>
21738
21739         * TextControl.cs:
21740           - InsertCharAtCaret(): Fixed start pos fixup
21741           - CaretLine_get: No longer derives the line from the tag, the tag
21742             could be stale if lines in the document have been added or deleted
21743           - RebalanceAfterDelete(): Fixed bug in balancing code
21744           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
21745           - Line.Streamline(): Now can also elminate leading empty tags
21746           - DumpTree(): Added a few more tests and prevented exception on
21747             uninitialized data
21748           - Added Debug section for Combining lines
21749           - Delete(): Now copies all remaining properties of a line
21750           
21751         * TextBoxBase.cs:
21752           - Left mousebutton now sets the caret (and middle button still acts
21753             as formatting tester, which must go away soon)
21754           - Added Debug section for Deleting/Combining lines
21755           - Fixed calculations for UpdateView after Combining lines
21756
21757 2004-12-16  Peter Bartok  <pbartok@novell.com>
21758
21759         * TextControl.cs: Now properly aligns text on a baseline, using the
21760           new XplatUI.GetFontMetrics() method. Simplified several calculations
21761         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
21762           defined
21763
21764 2004-12-16  Peter Bartok  <pbartok@novell.com>
21765
21766         * XplatUI.cs: Added GetFontMetrics() method
21767         * XplatUIDriver.cs: Added GetFontMetrics() abstract
21768         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
21769           into libgdiplus, our private GetFontMetrics function
21770         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
21771         * XplatUIWin32.cs: Implemented GetFontMetrics() method
21772
21773 2004-12-16  Jackson Harper  <jackson@ximain.com>
21774
21775         * XplatUIStruct.cs: Add enum for dead keys
21776         * X11Keyboard.cs: Map and unmap dead keys.
21777
21778 2004-12-16  Jackson Harper  <jackson@ximian.com>
21779
21780         * X11Keyboard.cs: Detect and use the num lock mask.
21781
21782 2004-12-16  Peter Bartok  <pbartok@novell.com>
21783
21784         * Control.cs (CreateGraphics): Added check to make sure the
21785           handle of the window exists before calling Graphics.FromHwnd()
21786
21787 2004-12-16  Peter Bartok  <pbartok@novell.com>
21788
21789         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
21790           contains a lot of code that's not supposed to be there for the
21791           real thing, but required for developing/testing the textbox
21792           backend.
21793
21794 2004-12-16  Peter Bartok  <pbartok@novell.com>
21795
21796         * TextControl.cs:
21797         - Fixed Streamline method
21798         - Added FindTag method to Line
21799         - Added DumpTree method for debugging
21800         - Added DecrementLines() method for deleting lines
21801         - Fixed UpdateView to update the cursor to end-of-line on single-line
21802           updates
21803         - Added PositionCaret() method
21804         - Fixed MoveCaret(LineDown) to move into the last line, too
21805         - Added InsertChar overload
21806         - Fixed InsertChar tag offset calculations
21807         - Added DeleteChar() method
21808         - Added Combine() method for folding lines
21809         - Fixed Delete() method, no longer allocates wasted Line object and
21810           now copies all properties when swapping nodes
21811         - Delete() method now updates document line counter
21812
21813 2004-12-15  Jackson Harper  <jackson@ximian.com>
21814
21815         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
21816         * X11Keyboard.cs: Expose the currently selected modifier keys
21817         through a property.
21818
21819 2004-12-15  Peter Bartok  <pbartok@novell.com>
21820
21821         * TextControl.cs: Initial check-in. Still incomplete
21822
21823 2004-12-15  Jackson Harper  <jackson@ximian.com>
21824
21825         * TreeNode.cs:
21826         * TreeView.cs: Fix build on csc (second time today ;-))
21827
21828 2004-12-15  Jackson Harper  <jackson@ximian.com>
21829
21830         * TreeView.cs: Store the treenodes plus/minus box bounds when it
21831         is calculated and use this for click testing.
21832         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
21833
21834 2004-12-15  Jackson Harper  <jackson@ximian.com>
21835
21836         * TreeView.cs: Pass the nodes image index to the image list when
21837         drawing that image.
21838
21839 2004-12-15  Jackson Harper  <jackson@ximian.com>
21840
21841         * X11Keyboard.cs: Set messages hwnd.
21842         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
21843         post_message calls.
21844
21845 2004-12-15  Jackson Harper  <jackson@ximian.com>
21846
21847         * X11Keyboard.cs: Fix to compile with csc.
21848         
21849 2004-12-15  Jackson Harper  <jackson@ximian.com>
21850
21851         * X11Structs.cs: Add key mask values
21852         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
21853         * X11Keyboard.cs: New file - Extrapolates and interpolates key
21854         down/up foo into WM_CHAR foo
21855         * KeyboardLayouts.cs: Common keyboard layouts
21856         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
21857         post messages into the main queue.
21858
21859 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
21860
21861         * Button.cs: implement ProcessMnemonic
21862         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
21863           brushes everytime
21864         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
21865         * ButtonBase.cs: Show HotkeyPrefix (not the &)
21866
21867 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
21868         
21869         * MonthCalendar.cs: Implemented click-hold for next/previous month
21870           and date selection
21871           
21872 2004-12-11  Peter Bartok  <pbartok@novell.com>
21873
21874         * X11Structs.cs:
21875           - Added XKeyboardState (moved from XplatUIX11.cs)
21876           - Added XCreateGC related enums and structures
21877           - Added GXFunction for XSetFunction
21878
21879         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
21880
21881         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
21882           CaretVisible() calls
21883
21884         * ToolTip.cs: Added code to prevent stealing focus from app windows
21885
21886         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
21887           DestroyCaret, SetCaretPos and CaretVisible)
21888
21889         * XplatUIX11.cs:
21890           - Added implementation for caret functions
21891           - Moved hover variables into a struct, to make it a bit easier
21892             on the eyes and to debug
21893           - Removed XKeyboardState (moved to XplatUIX11.cs)
21894           - Moved Keyboard properties into the properties region
21895
21896         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
21897           call to get a graphics context for our control
21898
21899         * XplatUIOSX.cs: Added empty overrides for the new caret functions
21900
21901         * TreeView.cs: Fixed bug. No matter what color was set it would always
21902           return SystemColors.Window
21903
21904         * XplatUIWin32.cs: Implemented caret overrides
21905
21906 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
21907
21908         * ListBox.cs: fire events, implement missing methods and properties,
21909         sorting.
21910
21911 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
21912
21913         * MonthCalendar.cs: invalidation bug fixing
21914         * ThemeWin32Classic.cs: paint fixing
21915
21916 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
21917
21918         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
21919         prepare the CGContextRef there now.
21920
21921 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
21922
21923         * MonthCalendar.cs:
21924           - optimisationL only invalidate areas that have changed
21925         * ThemeWin32Classic.cs:
21926           - only paint parts that intersect with clip_area
21927
21928 2004-12-09  Peter Bartok  <pbartok@novell.com>
21929
21930         * Application.cs: Undid changes from r37004 which cause problems
21931         on X11
21932
21933 2004-12-09  Ravindra  <rkumar@novell.com>
21934
21935         * ToolBar.cs: Added support for displaying ContextMenu
21936         attached to a button on ToolBar.
21937         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
21938         property.
21939
21940 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21941
21942         * Label.cs: autosize works in text change and removes unnecessary
21943         invalidate
21944
21945 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21946
21947         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21948         remove warnings
21949
21950 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
21951
21952         * XplatUIOSX.cs: Added mouse move/click/grab support
21953         Remove some debugging WriteLines not needed anymore.
21954         Add window resizing/positioning.
21955         Fix visibility on reparenting.
21956
21957 2004-12-08  Peter Bartok  <pbartok@novell.com>
21958
21959         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
21960
21961 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
21962
21963         * XplatUIOSX.cs: Initial checkin
21964         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
21965
21966 2004-12-03  Ravindra <rkumar@novell.com>
21967
21968         * ListView.cs: Added some keybindings and fixed scrolling.
21969         ScrollBars listen to ValueChanged event instead of Scroll
21970         Event. This would let us take care of all changes being
21971         done in the scrollbars' values programmatically or manually.
21972         * ListView.cs (CanMultiselect): Added a check for shift key.
21973         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
21974         * ListViewItem.cs (Clone): Fixed. We need to make a copy
21975         of ListViewSubItemCollection as well.
21976
21977 2004-12-06  Peter Bartok <pbartok@novell.com>
21978
21979         * Control.cs (Parent): Added check and exception to prevent
21980         circular parenting
21981
21982 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
21983
21984         * ListBox.cs: implemented clipping, selection single and multiple,
21985         bug fixing
21986
21987 2004-12-03  Ravindra <rkumar@novell.com>
21988
21989         * ListView.cs (ListView_KeyDown):
21990         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
21991         when CTRL key is pressed.
21992         * ListViewItem.cs (Selected): Fixed setting the property.
21993
21994 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
21995
21996         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
21997
21998         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
21999         MinimizeBox, ShowInTaskbar, TopMost properties.
22000
22001         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
22002         will be implemented).
22003
22004 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
22005
22006         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
22007
22008         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
22009         tests.
22010         
22011         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
22012         
22013         * TreeView.cs: BackColor is Colors.Window.
22014
22015 2004-12-01  Jackson Harper  <jackson@ximian.com>
22016
22017         * TreeView.cs: When resizing the tree if the user is making it
22018         smaller we don't get expose events, so we need to handle adding
22019         the horizontal scrollbar in the size changed handler as well as
22020         the expose handler.
22021
22022 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
22023
22024         * DrawItemState.cs: fixes wrong enum values
22025
22026 2004-12-01  Jackson Harper  <jackson@ximian.com>
22027
22028         * TreeView.cs: Resize the hbar as well as the vbar on resize.
22029
22030 2004-12-01  Jackson Harper  <jackson@ximian.com>
22031
22032         * NodeLabelEditEventArgs.cs:
22033         * NodeLabelEditEventHandler.cs:
22034         * OpenTreeNodeEnumerator.cs:
22035         * TreeNode.cs:
22036         * TreeNodeCollection.cs:
22037         * TreeView.cs:
22038         * TreeViewAction.cs:
22039         * TreeViewCancelEventArgs.cs:
22040         * TreeViewCancelEventHandler.cs:
22041         * TreeViewEventArgs.cs:
22042         * TreeViewEventHandler.cs: Initial implementation.
22043
22044 2004-12-01  Ravindra <rkumar@novell.com>
22045
22046         * ListView.cs (CalculateListView): Fixed scrolling related
22047         calculations. Also, removed some debug statements from other
22048         places.
22049         * ListViewItem.cs: Changed access to 'selected' instance variable
22050         from private to internal.
22051         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
22052
22053 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
22054
22055         * ThemeWin32Classic.cs: remove cache of brush and pens for
22056         specific controls and use the global system, fixes scrollbutton
22057         bugs (for small sizes, disabled, etc)
22058         
22059         * ScrollBar.cs: does not show the thumb for very small controls
22060         (as MS) and allow smaller buttons that the regular size
22061
22062 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
22063
22064         * UpDownBase.cs: Add abstract methods for the interface.
22065         Add new virtual methods (need to be hooked up to TextEntry when it
22066         exists).
22067         Add override methods for most features.
22068         Computes the size, forces the height of the text entry.
22069
22070         * NumericUpDown.cs: Put here the current testing code.
22071
22072         * Set eol-style property on all files that do not have mixed line
22073         endings, to minimize the future problems.  There are still a few
22074         files with mixed endings, and someone should choose whether they
22075         want to move it or not.
22076
22077 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
22078
22079         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
22080         System.Colors
22081         
22082 2004-11-30  Ravindra <rkumar@novell.com>
22083
22084         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
22085         drawing and replaced use of SystemColors by theme colors.
22086         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
22087         * ListView.cs (ListViewItemCollection.Add): Throw exception when
22088         same ListViewItem is being added more than once.
22089
22090 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
22091
22092         * MonthCalendar.cs:
22093           - ControlStyles love to make the control not flicker
22094           
22095 2004-11-30  Peter Bartok  <pbartok@novell.com>
22096
22097         * CharacterCasing.cs: Added
22098
22099 2004-11-29  Peter Bartok  <pbartok@novell.com>
22100
22101         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
22102           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
22103           I am removing these files as they conflict with already completed
22104           work. While it is fantastic to get contributions to MWF, I
22105           respectfully ask that everyone please coordinate their contributions
22106           through mono-winforms-list or #mono-winforms at this time. We're
22107           explicitly avoiding stubbing and don't want controls that don't have
22108           their basic functionality implemented in svn. Please also see
22109           http://www.mono-project.com/contributing/winforms.html
22110
22111
22112 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
22113
22114         * Application.cs (ModalRun): Don't hang after exit.
22115
22116         * Theme.cs: New TreeViewDefaultSize property.
22117
22118         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
22119         with less hardcoded SystemColors constant.
22120         Implemented TreeViewDefaultSize.
22121
22122         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
22123         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
22124
22125
22126 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
22127
22128         * MonthCalendar.cs:
22129           - Fix NextMonthDate and PrevMonthDate click moving calendar
22130
22131 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
22132
22133         * MonthCalendar.cs:
22134           - Fix usage of ScrollChange Property when scrolling months
22135
22136 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
22137
22138         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
22139          - Fixes menu destroying
22140          - Support adding and removing items on already created menus
22141
22142 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
22143
22144         * MonthCalendar.cs:
22145           - Re-worked all bolded dates handling to match win32
22146         * ThemeWin32Classic.cs:
22147           - Fixed rendering with bolded dates
22148
22149 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
22150
22151         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
22152         - Horizontal scroolbar
22153         - Multicolumn
22154         - Fixes
22155
22156
22157 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
22158
22159         * MonthCalendar.cs:
22160           - Fix Usage of MaxSelectionCount from SelectionRange
22161           - Fixed Shift + Cursor Selection
22162           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
22163           - Fixed normal cursor selection to be compat with win32
22164           - Fixed Shift + Mouse Click selection
22165
22166 2004-11-24  Peter Bartok <pbartok@novell.com>
22167
22168         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
22169         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
22170         * XplatUIX11.cs:
22171           - CreatedKeyBoardMsg now updates keystate with Alt key
22172           - Added workaround for timer crash to CheckTimers, Jackson will
22173             develop a proper fix and check in later
22174           - Implemented DispatchMessage
22175           - Removed calling the native window proc from GetMessage (call
22176             now moved to DispatchMessage)
22177
22178         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
22179           the keydata (Fixes bug #69831)
22180
22181         * XplatUIWin32.cs:
22182           - (DispatchMessage): Switched to return IntPtr
22183           - Added DllImport for SetFocus
22184
22185 2004-11-24  Ravindra <rkumar@novell.com>
22186
22187         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
22188         background drawing.
22189         * ListViewItem.cs: Fixed various properties, calculations
22190         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
22191         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
22192         and some internal properties. Fixed MouseDown handler and Paint
22193         method.
22194
22195 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22196
22197         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
22198
22199 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22200
22201         * ContainerControl.cs: correct accidental check in of local changes
22202
22203 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
22204
22205         * ThemeWin32Classic.cs:
22206                 - Fixed Drawing Last month in grid (sometimes not showing)
22207         * MonthCalendar.cs:
22208                 - Fixed title width calculation bug (makeing title small)
22209
22210 2004-11-23  Peter Bartok <pbartok@novell.com>
22211
22212         * XplatUIX11.cs:
22213           - Added generation of WM_MOUSEHOVER event
22214           - Added missing assignment of async_method atom
22215           - Fixed WM_ERASEBKGND; now only redraws the exposed area
22216
22217 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
22218
22219         * ThemeWin32Classic.cs:
22220                 - Fixed Drawing of today circle when showtodaycircle not set
22221                 - fixed drawing of first and last month in the grid (gay dates)
22222         * MonthCalendar.cs:
22223                 - Fixed Drawing of today circle
22224                 - Fixed drawing of grady dates
22225                 - Fixed HitTest for today link when ShowToday set to false
22226                 - Fixed DefaultSize to obey ShowToday
22227
22228 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
22229
22230         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
22231         * System.Windows.Forms/Theme.cs
22232         * MonthCalendar.cs: added for MonthCalendar
22233         * SelectionRange.cs: added for MonthCalendar
22234         * Day.cs: added for MonthCalendar: added for MonthCalendar
22235         * DateRangeEventArgs.cs: added for MonthCalendar
22236         * DateRangeEventHandler.cs: added for MonthCalendar
22237
22238 2004-11-22  Ravindra <rkumar@novell.com>
22239
22240         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
22241         property.
22242
22243 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
22244
22245         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
22246         event handler.
22247         
22248         * NumericUpDown.cs: Added new implementation.
22249         * UpDownBase.cs: Added new implementation.
22250
22251         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
22252         implementations.
22253         
22254         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
22255         implementations.
22256
22257         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
22258         methods.
22259
22260 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
22261
22262         * Timer.cs  (Dispose): Should call the base dispose when
22263         overriding.
22264
22265 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22266
22267         * ScrollBar.cs: updates thumb position when max, min or increment
22268         is changed
22269
22270 2004-11-21  Ravindra <rkumar@novell.com>
22271
22272         * ListView.cs: Implemented item selection, activation and
22273         column header style. Fixed properties to do a redraw, if
22274         required. Added support for MouseHover, DoubleClick, KeyDown
22275         and KeyUp event handling and some minor fixes.
22276         * ListViewItem.cs: Fixed constructor.
22277         * ThemeWin32Classic.cs: Improved drawing for ListView.
22278
22279 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22280
22281         * ThemeWin32Classic.cs: initial listbox drawing code
22282         * DrawMode.cs: new enumerator
22283         * ListControl.cs: stubbed class
22284         * ListBox.cs: initial implementation
22285         * Theme.cs: new methods definitions
22286         * SelectionMode.cs: new enumerator
22287
22288 2004-11-17  Peter Bartok  <pbartok@novell.com>
22289
22290         * XplatUIWin32.cs: Added double-click events to the class style
22291         * Control.cs (WndProc):
22292           - Added handling of click-count to MouseDown/ MouseUp events.
22293           - Added handling of middle and right mouse buttons
22294           - Removed old debug code
22295
22296 2004-11-17  Jackson Harper  <jackson@ximian.com>
22297
22298         * XplatUIX11.cs: Use the new Mono.Unix namespace.
22299
22300 2004-11-17  Ravindra <rkumar@novell.com>
22301
22302         * ListView.cs: Added event handling for MouseMove/Up/Down.
22303         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
22304         * ThemeWin32Classic.cs: We need to clear the graphics context and
22305         draw column header in a proper state.
22306
22307
22308 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
22309
22310         *  Menu.cs: fixes signature
22311
22312 2004-11-16  Peter Bartok  <pbartok@novell.com>
22313
22314         * XplatUIX11.cs (GetMessage): Implemented generation of
22315           double click mouse messages
22316
22317 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
22318
22319         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
22320         not by menu
22321
22322 2004-11-11  Peter Bartok  <pbartok@novell.com>
22323
22324         * HandleData.cs: Added Visible property
22325         * XplatUIX11.cs (IsVisible): Now uses Visible property from
22326           HandleData
22327         * XplatUIX11.cs: Removed old debug leftovers
22328         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
22329         * Control.cs (WndProc): Removed old debug leftovers,
22330           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
22331           needed WM_SIZE handling
22332
22333 2004-11-11  Jackson Harper  <jackson@ximian.com>
22334
22335         * OwnerDrawPropertyBag.cs:
22336         * TreeViewImageIndexConverter.cs: Initial implementation
22337
22338 2004-11-10  Jackson Harper  <jackson@ximian.com>
22339
22340         * ThemeWin32Classic.cs:
22341         * TabControl.cs: instead of moving tabs by the slider pos just
22342         start drawing at the tab that is offset by the slider. This way
22343         scrolling always moves by exactly one tab.
22344
22345 2004-11-10  Jackson Harper  <jackson@ximian.com>
22346
22347         * TabControl.cs: You can only scroll left when the slider has
22348         already ben moved right.
22349         
22350 2004-11-10  Jackson Harper  <jackson@ximian.com>
22351
22352         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
22353         the clip area.
22354         
22355 2004-11-10  Jackson Harper  <jackson@ximian.com>
22356
22357         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
22358         clip area.
22359         
22360 2004-11-09  Jackson Harper  <jackson@ximian.com>
22361
22362         * TabControl.cs (CalcXPos): New helper method so we can determine
22363         the proper place to start drawing vertical tabs.
22364         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
22365         
22366 2004-11-09  Jackson Harper  <jackson@ximian.com>
22367
22368         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
22369         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
22370         and Bottom, left and right are illegal values for this and
22371         multiline is enabled when the alignment is set to left or right.
22372         (DrawTab): Each alignment block should draw the text itself now
22373         because Left requires special love. Also add rendering for Left
22374         aligned tabs.
22375         
22376 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
22377
22378         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
22379         does not destroy the windows, removes debugging messages
22380
22381 2004-11-09  jba  <jba-mono@optusnet.com.au>
22382
22383         * ThemeWin32Classic.cs
22384         (DrawButtonBase): Fix verticle text rect clipping in windows
22385         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22386         rendering and incorrect text rect clipping
22387         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22388         rendering and incorrect text rect clipping
22389         
22390 2004-11-08  Jackson Harper  <jackson@ximian.com>
22391
22392         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
22393         bottom when they are bottom aligned so the bottoms of the tabs get
22394         displayed.
22395         * TabControl.cs (DropRow): Move rows up instead of down when the
22396         tab control is bottom aligned.
22397
22398 2004-11-08 13:59  pbartok
22399
22400         * XplatUIX11.cs:
22401           - Added handling for various window styles
22402           - Added handling for popup windows
22403           - Added SetTopmost handling
22404
22405 2004-11-08 13:55  pbartok
22406
22407         * XplatUIWin32.cs:
22408           - Added argument to SetTopmost method
22409           - Fixed broken ClientToScreen function
22410
22411 2004-11-08 13:53  pbartok
22412
22413         * XplatUIStructs.cs:
22414           - Added missing WS_EX styles
22415
22416 2004-11-08 13:53  pbartok
22417
22418         * XplatUI.cs, XplatUIDriver.cs:
22419           - Added argument to SetTopmost
22420
22421 2004-11-08 13:52  pbartok
22422
22423         * X11Structs.cs:
22424           - Added XSetWindowAttributes structure
22425           - Improved XWindowAttributes structure
22426           - Added SetWindowValuemask enum
22427           - Added window creation arguments enum
22428           - Added gravity enum
22429           - Added Motif hints structure
22430           - Added various Motif flags and enums
22431           - Added PropertyMode enum for property functions
22432
22433 2004-11-08 13:50  pbartok
22434
22435         * Form.cs:
22436           - Fixed arguments for updated SetTopmost method
22437
22438 2004-11-08 13:49  pbartok
22439
22440         * ToolTip.cs:
22441           - Fixed arguments for updated SetTopmost function
22442           - Fixed usage of PointToClient
22443
22444 2004-11-08 13:44  pbartok
22445
22446         * MenuAPI.cs:
22447           - Added Clipping of children and siblings
22448
22449 2004-11-08 13:41  pbartok
22450
22451         * MainMenu.cs:
22452           - Removed SetMenuBarWindow call. We do this in Form.cs
22453
22454 2004-11-08 13:40  jackson
22455
22456         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
22457           scrolling jimmi in the correct location with bottom aligned tabs
22458
22459 2004-11-08 13:36  pbartok
22460
22461         * ContainerControl.cs:
22462           - Implemented BindingContext
22463           - Implemented ParentForm
22464
22465 2004-11-08 12:46  jackson
22466
22467         * TabControl.cs: Put bottom rendered tabs in the right location
22468
22469 2004-11-08 07:15  jordi
22470
22471         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
22472           removes dead code
22473
22474 2004-11-05 17:30  jackson
22475
22476         * TabControl.cs: When selected tabs are expanded make sure they
22477           don't go beyond the edges of the tab control
22478
22479 2004-11-05 14:57  jackson
22480
22481         * TabControl.cs: Reset show_slider so if the control is resized to
22482           a size where it is no longer needed it's not displayed anymore
22483
22484 2004-11-05 13:16  jackson
22485
22486         * TabControl.cs: Make tab pages non visible when added to the
22487           control
22488
22489 2004-11-05 12:42  jackson
22490
22491         * TabControl.cs: Implement SizeMode.FillToRight
22492
22493 2004-11-05 12:16  jackson
22494
22495         * Control.cs: Do not call CreateHandle if the handle is already
22496           created
22497
22498 2004-11-05 11:46  jackson
22499
22500         * TabControl.cs: Remove superflous call to CalcTabRows
22501
22502 2004-11-05 09:07  jackson
22503
22504         * XplatUIX11.cs: Update for Mono.Posix changes
22505
22506 2004-11-05 07:00  ravindra
22507
22508         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
22509           scrolling.
22510
22511 2004-11-04 22:47  jba
22512
22513         * ThemeWin32Classic.cs:
22514           - Fix Button rendering for FlatStyle = Flat or Popup
22515           - Fix RadioButton and CheckBox rendering when Appearance = Button
22516             (normal and flatstyle).
22517           - Correct outer rectangle color when drawing focus rectangle
22518           - Adjust button bounds to be 1 px smaller when focused
22519           - Make button not draw sunken 3d border when pushed (windows compat)
22520           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
22521           - Offset the text in RadioButton and Checkbox when being rendered as
22522           a button.
22523           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
22524           radiobuttons
22525           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
22526           - Fixed disabled text rendering for normally rendered radiobuttons
22527
22528 2004-11-04 10:26  jackson
22529
22530         * TabControl.cs: Recalculate tab rows when resizing
22531
22532 2004-11-04 07:47  jordi
22533
22534         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
22535           collection completion, drawing issues, missing features
22536
22537 2004-11-04 05:03  ravindra
22538
22539         * ScrollBar.cs:
22540                 - We need to recalculate the Thumb area when
22541                 LargeChange/maximum/minimum values are changed.
22542           - We set the 'pos' in UpdatePos() method to minimum, if it's less
22543                 than minimum. This is required to handle the case if large_change is
22544                 more than max, and use LargeChange property instead of large_change
22545                 variable.
22546           - We return max+1 when large_change is more than max, like MS does.
22547
22548 2004-11-04 04:29  ravindra
22549
22550         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
22551                 - Changed default value signatures (prefixed all with ListView).
22552                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
22553                 ListView.
22554           - Fixed calculations for ListViewItem and implemented Clone()
22555           method.
22556
22557 2004-11-04 04:26  ravindra
22558
22559         * Theme.cs, ThemeWin32Classic.cs:
22560                 - Changed default ListView values signatures (prefixed all with
22561                 ListView).
22562           - Fixed default size values for VScrollBar and HScrollBar.
22563                 - Fixed DrawListViewItem method.
22564
22565 2004-11-04 04:05  ravindra
22566
22567         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
22568
22569 2004-11-04 04:04  ravindra
22570
22571         * ImageList.cs: Implemented the missing overload for Draw method.
22572
22573 2004-11-03 19:29  jackson
22574
22575         * TabControl.cs: Handle dropping rows on selection properly
22576
22577 2004-11-03 11:59  jackson
22578
22579         * TabControl.cs: remove debug code
22580
22581 2004-11-03 11:52  jackson
22582
22583         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
22584           the scrolly widgerywoo
22585
22586 2004-11-02 13:52  jackson
22587
22588         * TabControl.cs: Resize the tab pages and tabs when the tab control
22589           is resized
22590
22591 2004-11-02 13:40  jackson
22592
22593         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
22594           selected tab to the bottom
22595
22596 2004-11-02 13:39  jackson
22597
22598         * TabPage.cs: Store the tab pages row
22599
22600 2004-11-02 12:33  jordi
22601
22602         * MenuItem.cs: fixes handle creation
22603
22604 2004-11-02 11:42  jackson
22605
22606         * TabControl.cs: signature fix
22607
22608 2004-11-02 08:56  jackson
22609
22610         * TabControl.cs: Calculate whether the tab is on an edge properly.
22611           Remove top secret debugging code
22612
22613 2004-11-01 19:57  jackson
22614
22615         * TabControl.cs: Add click handling, and proper sizing
22616
22617 2004-11-01 19:47  jackson
22618
22619         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
22620           tab controls
22621
22622 2004-11-01 19:39  jackson
22623
22624         * TabPage.cs: add internal property to store the bounds of a tab
22625           page
22626
22627 2004-10-30 04:23  ravindra
22628
22629         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
22630           values.
22631
22632 2004-10-30 04:21  ravindra
22633
22634         * ListView.cs, ListViewItem.cs: Added support for scrolling and
22635           fixed calculations.
22636
22637 2004-10-30 03:06  pbartok
22638
22639         * XplatUIX11.cs:
22640           - Removed extension of DllImported libs
22641
22642 2004-10-29 09:55  jordi
22643
22644         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
22645           navigation, itemcollection completion, menu fixes
22646
22647 2004-10-27 22:58  pbartok
22648
22649         * XplatUIX11.cs:
22650           - Now throws a nice error message when no X display could be opened
22651
22652 2004-10-26 13:51  jordi
22653
22654         * ListView.cs: removes warning
22655
22656 2004-10-26 03:55  ravindra
22657
22658         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
22659           ThemeWin32Classic.cs: Some formatting for my last checkins.
22660
22661 2004-10-26 03:36  ravindra
22662
22663         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
22664           control and default values.
22665
22666 2004-10-26 03:35  ravindra
22667
22668         * Theme.cs: Added some default values for ListView control.
22669
22670 2004-10-26 03:33  ravindra
22671
22672         * ToolBar.cs: ToolBar should use the user specified button size, if
22673           there is any. Added a size_specified flag for the same.
22674
22675 2004-10-26 03:33  ravindra
22676
22677         * ColumnHeader.cs: Added some internal members and calculations for
22678           ColumnHeader.
22679
22680 2004-10-26 03:32  ravindra
22681
22682         * ListViewItem.cs: Calculations for ListViewItem.
22683
22684 2004-10-26 03:31  ravindra
22685
22686         * ListView.cs: Added some internal members and calculations for
22687           ListView.
22688
22689 2004-10-22 13:31  jordi
22690
22691         * MenuAPI.cs: speedup menus drawing
22692
22693 2004-10-22 13:16  jackson
22694
22695         * XplatUIX11.cs: Make sure to update exposed regions when adding an
22696           expose event
22697
22698 2004-10-22 11:49  jackson
22699
22700         * Control.cs: oops
22701
22702 2004-10-22 11:41  jackson
22703
22704         * Control.cs: Check to see if the window should have its background
22705           repainted by X when drawing.
22706
22707 2004-10-22 11:31  jackson
22708
22709         * XplatUIX11.cs: When invalidating areas only use XClearArea if
22710           clear is true, this way we do not get flicker from X repainting the
22711           background
22712
22713 2004-10-22 11:28  jackson
22714
22715         * XEventQueue.cs: Queue properly
22716
22717 2004-10-21 09:38  jackson
22718
22719         * XEventQueue.cs: Fix access modifier
22720
22721 2004-10-21 09:36  jackson
22722
22723         * XEventQueue.cs: Don't loose messages
22724
22725 2004-10-21 09:22  jackson
22726
22727         * XEventQueue.cs: Don't loose messages
22728
22729 2004-10-20 04:15  jordi
22730
22731         * BootMode.cs: enum need it by SystemInfo
22732
22733 2004-10-19 21:58  pbartok
22734
22735         * XplatUIWin32.cs:
22736           - Small sanity check
22737
22738 2004-10-19 21:56  pbartok
22739
22740         * Form.cs:
22741           - Added private FormParentWindow class which acts as the container
22742             for our form and as the non-client area where menus are drawn
22743           - Added/Moved required tie-ins to Jordi's menus
22744           - Fixed/Implemented the FormStartPosition functionality
22745
22746 2004-10-19 21:52  pbartok
22747
22748         * Control.cs:
22749           - Removed unneeded locals
22750           - Added code to all size and location properties to understand and
22751             deal with the parent container of Form
22752
22753 2004-10-19 21:33  pbartok
22754
22755         * Application.cs:
22756           - Fixed to deal with new Form subclasses for menus
22757
22758 2004-10-19 17:48  jackson
22759
22760         * XEventQueue.cs: commit correct version of file
22761
22762 2004-10-19 16:50  jackson
22763
22764         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
22765
22766 2004-10-19 16:15  jordi
22767
22768         * MenuAPI.cs: MenuBarCalcSize returns the height
22769
22770 2004-10-19 08:31  pbartok
22771
22772         * Control.cs:
22773           - Added missing call to PreProcessMessage before calling OnXXXKey
22774           methods
22775
22776 2004-10-19 00:04  ravindra
22777
22778         * ToolTip.cs: Fixed constructor.
22779
22780 2004-10-18 09:31  jordi
22781
22782         * MenuAPI.cs: menuitems in menubars do not have shortcuts
22783
22784 2004-10-18 09:26  jordi
22785
22786         * MenuItem.cs: fixes MenuItem class signature
22787
22788 2004-10-18 08:56  jordi
22789
22790         * MenuAPI.cs: prevents windows from showing in the taskbar
22791
22792 2004-10-18 00:28  ravindra
22793
22794         * ToolTip.cs: Suppressed a warning message.
22795
22796 2004-10-18 00:27  ravindra
22797
22798         * Control.cs: Default value of visible property must be true.
22799
22800 2004-10-17 23:19  pbartok
22801
22802         * ToolTip.cs:
22803           - Complete implementation
22804
22805 2004-10-17 23:19  pbartok
22806
22807         * XplatUIX11.cs:
22808           - Added EnableWindow method
22809           - Added SetModal stub
22810           - Added generation of WM_ACTIVATE message (still needs testing)
22811           - Added SetTopMost stub
22812           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
22813
22814 2004-10-17 23:17  pbartok
22815
22816         * XplatUIWin32.cs:
22817           - Removed VirtualKeys to XplatUIStructs
22818           - Implemented SetTopMost method
22819           - Implemented EnableWindow method
22820           - Bugfix in ScreenToClient()
22821           - Bugfixes in ClientToScreen()
22822
22823 2004-10-17 22:51  pbartok
22824
22825         * XplatUIStructs.cs:
22826           - Added WS_EX styles to WindowStyles enumeration
22827
22828 2004-10-17 22:50  pbartok
22829
22830         * XplatUI.cs, XplatUIDriver.cs:
22831           - Added method for enabling/disabling windows
22832           - Added method for setting window modality
22833           - Added method for setting topmost window
22834
22835 2004-10-17 22:49  pbartok
22836
22837         * ThemeWin32Classic.cs:
22838           - Added ToolTip drawing code
22839
22840 2004-10-17 22:49  pbartok
22841
22842         * Theme.cs:
22843           - Added ToolTip abstracts
22844
22845 2004-10-17 22:47  pbartok
22846
22847         * Form.cs:
22848           - Fixed Form.ControlCollection to handle owner relations
22849           - Added Owner/OwnedForms handling
22850           - Implemented Z-Ordering for owned forms
22851           - Removed unneeded private overload of ShowDialog
22852           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
22853             so I hope)
22854           - Fixed Close(), had wrong default
22855           - Added firing of OnLoad event
22856           - Added some commented out debug code for Ownership handling
22857
22858 2004-10-17 22:16  pbartok
22859
22860         * Control.cs:
22861           - Fixed/implemented flat list of controls
22862
22863 2004-10-17 22:14  pbartok
22864
22865         * Application.cs:
22866           - Added code to simulate modal dialogs on Win32
22867
22868 2004-10-17 16:11  jordi
22869
22870         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
22871           mouse event
22872
22873 2004-10-17 13:39  jordi
22874
22875         * MenuAPI.cs: menu drawing fixes
22876
22877 2004-10-15 09:10  ravindra
22878
22879         * StructFormat.cs: General Enum.
22880
22881 2004-10-15 09:09  ravindra
22882
22883         * SizeGripStyle.cs: Enum for Form.
22884
22885 2004-10-15 09:08  ravindra
22886
22887         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
22888           in Theme for ListView.
22889
22890 2004-10-15 09:06  ravindra
22891
22892         * ColumnHeader.cs: Flushing some formatting changes.
22893
22894 2004-10-15 09:05  ravindra
22895
22896         * ListViewItem.cs: Implemented GetBounds method and fixed coding
22897           style.
22898
22899 2004-10-15 09:03  ravindra
22900
22901         * ListView.cs: Implemented Paint method and fixed coding style.
22902
22903 2004-10-15 07:34  jordi
22904
22905         * MenuAPI.cs: fix for X11
22906
22907 2004-10-15 07:32  ravindra
22908
22909         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
22910                 - Renamed Paint() method to Draw() for clarity. Also, moved
22911                 DrawImage() to OnPaint().
22912
22913 2004-10-15 07:25  ravindra
22914
22915         * CheckBox.cs, RadioButton.cs:
22916                 - Removed Redraw (), we get it from ButtonBase.
22917                 - Implemented Paint (), to do class specific painting.
22918
22919 2004-10-15 07:16  ravindra
22920
22921         * ButtonBase.cs:
22922                 - Redraw () is not virtual now.
22923                 - Added an internal virtual method Paint (), so that
22924                 derived classes can do their painting on their own.
22925                 - Modified OnPaint () to call Paint ().
22926
22927 2004-10-15 06:43  jordi
22928
22929         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
22930           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
22931
22932 2004-10-15 00:30  ravindra
22933
22934         * MessageBox.cs:
22935                 - MessageBox on windows does not have min/max buttons.
22936                 This change in CreateParams fixes this on Windows. We
22937                 still need to implement this windowstyle behavior in
22938                 our X11 driver.
22939
22940 2004-10-14 05:14  ravindra
22941
22942         * ToolBar.cs:
22943                 - Changed Redraw () to do a Refresh () always.
22944                 - Fixed the MouseMove event handling when mouse is pressed,
22945                 ie drag event handling.
22946                 - Replaced the usage of ToolBarButton.Pressed property to
22947                 ToolBarButton.pressed internal variable.
22948
22949 2004-10-14 05:10  ravindra
22950
22951         * ToolBarButton.cs:
22952                 - Added an internal member 'inside' to handle mouse move
22953                 with mouse pressed ie mouse drag event.
22954                 - Changed 'Pressed' property to return true only when
22955                 'inside' and 'pressed' are both true.
22956                 - Some coding style love.
22957
22958 2004-10-14 00:17  ravindra
22959
22960         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
22961           public method.
22962
22963 2004-10-14 00:15  ravindra
22964
22965         * ButtonBase.cs: Redraw () related improvements.
22966
22967 2004-10-14 00:14  ravindra
22968
22969         * MessageBox.cs: Moved InitFormSize () out of Paint method and
22970           removed unnecessary calls to Button.Show () method.
22971
22972 2004-10-13 17:50  pbartok
22973
22974         * XplatUIX11.cs:
22975           - Formatting fix
22976           - Removed destroying of window until we solve the problem of X
22977             destroying the window before us on shutdown
22978
22979 2004-10-13 16:32  pbartok
22980
22981         * ButtonBase.cs:
22982           - Now Redraws on MouseUp for FlatStyle Flat and Popup
22983
22984 2004-10-13 14:18  pbartok
22985
22986         * XplatUIX11.cs:
22987           - Added code to destroy the X window
22988
22989 2004-10-13 14:18  pbartok
22990
22991         * XplatUIWin32.cs:
22992           - Added code to destroy a window
22993
22994 2004-10-13 14:12  pbartok
22995
22996         * ButtonBase.cs:
22997           - Added the Redraw on Resize that got dropped in the last rev
22998
22999 2004-10-13 09:06  pbartok
23000
23001         * ThemeWin32Classic.cs:
23002           - Path from John BouAntoun:
23003             * Fix check rendering (centre correctly for normal style, offset
23004               correctly for FlatStyle).
23005             * Fix border color usage (use backcolor) for FlatStyle.Popup
23006             * Use checkbox.Capture instead of checkbox.is_pressed when
23007               rendering flatstyle states.
23008
23009 2004-10-12 21:48  pbartok
23010
23011         * ThemeWin32Classic.cs:
23012           - Removed all occurences of SystemColors and replaced them with the
23013             matching theme color
23014
23015 2004-10-12 21:41  pbartok
23016
23017         * ThemeWin32Classic.cs:
23018           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
23019             him using the function for flatstyle drawing
23020           - Changed functions to use the new version of CPDrawBorder3D
23021
23022 2004-10-12 21:15  pbartok
23023
23024         * ControlPaint.cs:
23025           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
23026             match MS documentation. They need to return defined colors if the
23027             passed color matches the configured control color. Thanks to John
23028             BouAntoun for pointing this out.
23029
23030 2004-10-12 20:57  pbartok
23031
23032         * Control.cs:
23033           - Fix from John BouAntoun: Raise ForeColorChanged event when text
23034             color is changed
23035
23036 2004-10-12 20:46  pbartok
23037
23038         * CheckBox.cs:
23039           - Fix from John BouAntoun: Now properly sets the Appearance property
23040
23041 2004-10-12 20:45  pbartok
23042
23043         * ThemeWin32Classic.cs:
23044           - Fixes from John BouAntoun: now handles forecolors and backcolors
23045             for flatstyle rendered controls much better; It also fixes normal
23046             checkbox rendering when pushed or disabled.
23047
23048 2004-10-08 02:50  jordi
23049
23050         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
23051           work
23052
23053 2004-10-07 08:56  jordi
23054
23055         * ThemeWin32Classic.cs: Removes deletion of cached brushes
23056
23057 2004-10-06 03:59  jordi
23058
23059         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
23060           XplatUIWin32.cs: removes warnings from compilation
23061
23062 2004-10-05 12:23  jackson
23063
23064         * RadioButton.cs: Fix ctor
23065
23066 2004-10-05 11:10  pbartok
23067
23068         * MessageBox.cs:
23069           - Partial implementation by Benjamin Dasnois
23070
23071 2004-10-05 10:15  jackson
23072
23073         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
23074           by John BouAntoun
23075
23076 2004-10-05 03:07  ravindra
23077
23078         * ToolBar.cs:
23079                 - Removed a private method, Draw ().
23080                 - Fixed the ButtonDropDown event handling.
23081                 - Fixed MouseMove event handling.
23082
23083 2004-10-05 03:04  ravindra
23084
23085         * ThemeWin32Classic.cs:
23086                 - Added DrawListView method and ListViewDefaultSize property.
23087                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
23088                 - Changed DOS style CRLF to Unix format (dos2unix).
23089
23090 2004-10-05 03:03  ravindra
23091
23092         * Theme.cs:
23093                 - Added DrawListView method and ListViewDefaultSize property.
23094
23095 2004-10-05 02:42  ravindra
23096
23097         * ToolBarButton.cs: Added an internal member dd_pressed to handle
23098           clicks on DropDown arrow.
23099
23100 2004-10-04 22:56  jackson
23101
23102         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
23103           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
23104           Control handle the buffers, derived classes should not have to
23105           CreateBuffers themselves.
23106
23107 2004-10-04 21:20  jackson
23108
23109         * StatusBar.cs: The control handles resizing the buffers now.
23110
23111 2004-10-04 21:18  jackson
23112
23113         * Control.cs: When resizing the buffers should be invalidated. This
23114           should be handled in Control not in derived classes.
23115
23116 2004-10-04 14:45  jackson
23117
23118         * TabPage.cs: oops
23119
23120 2004-10-04 02:14  pbartok
23121
23122         * LeftRightAlignment.cs:
23123           - Initial check-in
23124
23125 2004-10-04 01:09  jordi
23126
23127         * ThemeWin32Classic.cs: fixes right button position causing right
23128           button not showing on horizontal scrollbars
23129
23130 2004-10-02 13:12  pbartok
23131
23132         * XplatUIX11.cs:
23133           - Simplified the Invalidate method by using an X call instead of
23134             generating the expose ourselves
23135           - Added an expose when the window background is changed
23136           - Implemented ClientToScreen method
23137
23138 2004-10-02 13:08  pbartok
23139
23140         * XplatUIWin32.cs:
23141           - Added Win32EnableWindow method (test for implementing modal
23142           dialogs)
23143           - Added ClientToScreen method and imports
23144
23145 2004-10-02 13:07  pbartok
23146
23147         * XplatUI.cs, XplatUIDriver.cs:
23148           - Added ClientToScreen coordinate translation method
23149
23150 2004-10-02 13:06  pbartok
23151
23152         * KeyPressEventArgs.cs:
23153           - Fixed access level for constructor
23154
23155 2004-10-02 13:06  pbartok
23156
23157         * NativeWindow.cs:
23158           - Changed access level for the window_collection hash table
23159
23160 2004-10-02 13:05  pbartok
23161
23162         * Form.cs:
23163           - Added KeyPreview property
23164           - Added Menu property (still incomplete, pending Jordi's menu work)
23165           - Implemented ProcessCmdKey
23166           - Implemented ProcessDialogKey
23167           - Implemented ProcessKeyPreview
23168
23169 2004-10-02 13:02  pbartok
23170
23171         * Control.cs:
23172           - Added private method to get the Control object from the window
23173           handle
23174           - Implemented ContextMenu property
23175           - Implemented PointToScreen
23176           - Implemented PreProcessMessage
23177           - Implemented IsInputChar
23178           - Implemented IsInputKey
23179           - Implemented ProcessCmdKey
23180           - Completed ProcessKeyEventArgs
23181           - Fixed message loop to call the proper chain of functions on key
23182           events
23183           - Implemented ProcessDialogChar
23184           - Implemented ProcessDialogKey
23185           - Implemented ProcessKeyMessage
23186           - Implemented ProcessKeyPreview
23187           - Added RaiseDragEvent stub (MS internal method)
23188           - Added RaiseKeyEvent stub (MS internal method)
23189           - Added RaiseMouseEvent stub (MS Internal method)
23190           - Added RaisePaintEvent stub (MS Internal method)
23191           - Added ResetMouseEventArgs stub (MS Internal method)
23192           - Implemented RtlTranslateAlignment
23193           - Implemented RtlTranslateContent
23194           - Implemented RtlTranslateHorizontal
23195           - Implemented RtlTranslateLeftRight
23196           - Added generation of KeyPress event
23197
23198 2004-10-02 05:57  ravindra
23199
23200         * ListViewItem.cs: Added attributes.
23201
23202 2004-10-02 05:32  ravindra
23203
23204         * ListView.cs: Added attributes.
23205
23206 2004-10-01 11:53  jackson
23207
23208         * Form.cs: Implement the Close method so work on MessageBox can
23209           continue.
23210
23211 2004-09-30 14:06  pbartok
23212
23213         * XplatUIX11.cs:
23214           - Bug fixes
23215
23216 2004-09-30 11:34  jackson
23217
23218         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
23219
23220 2004-09-30 07:26  ravindra
23221
23222         * ListViewItemConverter.cs: Converter for ListViewItem.
23223
23224 2004-09-30 07:26  ravindra
23225
23226         * SortOrder.cs: Enum for ListView control.
23227
23228 2004-09-30 07:25  ravindra
23229
23230         * ColumnHeader.cs: Supporting class for ListView control.
23231
23232 2004-09-30 07:24  ravindra
23233
23234         * ListView.cs, ListViewItem.cs: Initial implementation.
23235
23236 2004-09-30 07:20  ravindra
23237
23238         * ItemActivation.cs: Enum for ListView Control.
23239
23240 2004-09-29 20:29  pbartok
23241
23242         * XplatUIX11.cs:
23243           - Added lookup of pixel value for background color; tries to get a
23244             color 'close' to the requested color, it avoids having to create a
23245             colormap.  Depending on the display this could mean the used color
23246             is slightly off the desired color. Might have to change it to a more
23247             resource intensive colormap approach, but it will work as a
23248           workaround to avoid red screens.
23249
23250 2004-09-29 14:27  jackson
23251
23252         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
23253
23254 2004-09-28 12:44  pbartok
23255
23256         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
23257           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
23258           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
23259           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
23260           TrackBar.cs, VScrollBar.cs:
23261           - Streamlined Theme interfaces:
23262             * Each DrawXXX method for a control now is passed the object for
23263               the control to be drawn in order to allow accessing any state the
23264               theme might require
23265
23266             * ControlPaint methods for the theme now have a CP prefix to avoid
23267               name clashes with the Draw methods for controls
23268
23269             * Every control now retrieves it's DefaultSize from the current
23270             theme
23271
23272 2004-09-28 12:17  jackson
23273
23274         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
23275           drawing
23276
23277 2004-09-24 14:57  jackson
23278
23279         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
23280           Gives us a nice little performance boost.
23281
23282 2004-09-24 12:02  jackson
23283
23284         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
23285           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
23286           Control and supporting classes. Initial checkin
23287
23288 2004-09-23 13:08  jackson
23289
23290         * Form.cs: Temp build fixage
23291
23292 2004-09-23 01:39  ravindra
23293
23294         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
23295           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
23296           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
23297           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
23298           EventHandlers needed by ListView Control.
23299
23300 2004-09-22 14:12  pbartok
23301
23302         * ScrollableControl.cs:
23303           - Implemented DockPadding property
23304           - Implemented AutoScroll property
23305           - Implemented AutoScrollMargin property
23306           - Implemented AutoScrollMinSize property
23307           - Implemented AutoScrollPosition property
23308           - Implemented DisplayRectangle property (still incomplete)
23309           - Implemented CreateParams property
23310           - Implemented HScroll property
23311           - Implemented VScroll property
23312           - Implemented OnVisibleChanged property
23313
23314 2004-09-22 14:09  pbartok
23315
23316         * Form.cs:
23317           - Added Form.ControllCollection class
23318           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
23319             RemoveOwnedForm (still incomplete, missing on-top and common
23320             minimize/maximize behaviour)
23321           - Added StartPosition property (still incomplete, does not use when
23322             creating the form)
23323           - Added ShowDialog() methods (still incomplete, missing forcing the
23324             dialog modal)
23325
23326 2004-09-22 14:05  pbartok
23327
23328         * Application.cs:
23329           - Added message loop for modal dialogs
23330
23331 2004-09-22 14:02  pbartok
23332
23333         * GroupBox.cs:
23334           - Fixed wrong types for events
23335
23336 2004-09-22 14:00  pbartok
23337
23338         * Shortcut.cs, FormWindowState.cs:
23339           - Fixed wrong values
23340
23341 2004-09-22 12:01  jackson
23342
23343         * Control.cs: Text is never null
23344
23345 2004-09-20 22:14  pbartok
23346
23347         * XplatUIWin32.cs:
23348           - Fixed accessibility level for Idle handler
23349
23350 2004-09-20 18:54  jackson
23351
23352         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23353           XplatUIX11.cs: New message loop that uses poll so we don't get a
23354           busy loop
23355
23356 2004-09-17 10:43  pbartok
23357
23358         * ScrollBar.cs:
23359           - Fixed behaviour of arrow buttons. Now properly behaves like
23360             Buttons (and like Microsoft's scrollbar arrow buttons)
23361
23362 2004-09-17 10:14  pbartok
23363
23364         * ScrollBar.cs:
23365           - Added missing release of keyboard/mouse capture
23366
23367 2004-09-17 06:18  jordi
23368
23369         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
23370           Theme.cs: Very early menu support
23371
23372 2004-09-16 17:45  pbartok
23373
23374         * XplatUIWin32.cs:
23375           - Fixed sending a window to the front
23376           - Added overload for SetWindowPos to avoid casting
23377
23378 2004-09-16 17:44  pbartok
23379
23380         * Control.cs:
23381           - Added SendToBack and BringToFront methods
23382
23383 2004-09-16 07:00  ravindra
23384
23385         * Copyright: Added Novell URL.
23386
23387 2004-09-16 07:00  ravindra
23388
23389         * ToolBar.cs: Invalidate should be done before redrawing.
23390
23391 2004-09-15 21:19  ravindra
23392
23393         * ColumnHeaderStyle.cs: Enum for ListView Control.
23394
23395 2004-09-15 21:18  ravindra
23396
23397         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
23398           ListView Control.
23399
23400 2004-09-13 18:26  jackson
23401
23402         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
23403           properly
23404
23405 2004-09-13 18:13  jackson
23406
23407         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
23408           a second thread and post messages into the main threads message
23409           queue. This makes timing much more consistent. Both win2K and XP
23410           have a minimum timer value of 15 milliseconds, so we now do this
23411           too.
23412
23413 2004-09-13 15:18  pbartok
23414
23415         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23416           XplatUIX11.cs:
23417           - Added Z-Ordering methods
23418
23419 2004-09-13 10:56  pbartok
23420
23421         * Form.cs:
23422           - Fixed #region names
23423           - Moved properties and methods into their proper #regions
23424
23425 2004-09-13 10:51  pbartok
23426
23427         * Form.cs:
23428           - Added Accept and CancelButton properties
23429           - Added ProcessDialogKey() method
23430
23431 2004-09-13 08:18  pbartok
23432
23433         * IWindowTarget.cs:
23434           - Initial check-in
23435
23436 2004-09-10 21:50  pbartok
23437
23438         * Control.cs:
23439           - Added DoDragDrop() [incomplete]
23440           - Properly implemented 'Visible' handling
23441           - Added SetVisibleCore()
23442           - Implemented FindChildAtPoint()
23443           - Implemented GetContainerControl()
23444           - Implemented Hide()
23445
23446 2004-09-10 19:28  pbartok
23447
23448         * Control.cs:
23449           - Moved methods into their appropriate #regions
23450           - Reordered methods within regions alphabetically
23451
23452 2004-09-10 18:57  pbartok
23453
23454         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23455           - Added method to retrieve text from window
23456
23457 2004-09-10 18:56  pbartok
23458
23459         * Control.cs:
23460           - Moved some internal functions into the internal region
23461           - Implemented FontHeight
23462           - Implemented RenderRightToLeft
23463           - Implemented ResizeRedraw
23464           - Implemented ShowFocusCues
23465           - Implemented ShowKeyboardCues
23466           - Implemented FromChildHandle
23467           - Implemented FromHandle
23468           - Implemented IsMnemonic
23469           - Implemented ReflectMessage
23470           - All public and protected Static Methods are now complete
23471
23472 2004-09-10 16:54  pbartok
23473
23474         * Control.cs:
23475           - Implemented remaining missing public instance properties
23476           - Alphabetized some out of order properties
23477
23478 2004-09-10 05:51  ravindra
23479
23480         * PictureBox.cs: Added a check for null image.
23481
23482 2004-09-10 00:59  jordi
23483
23484         * GroupBox.cs: remove cvs tag
23485
23486 2004-09-09 05:25  ravindra
23487
23488         * ToolBar.cs: Make redraw accessible from ToolBarButton.
23489
23490 2004-09-09 05:23  ravindra
23491
23492         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
23493           parent redraw.
23494
23495 2004-09-09 02:28  pbartok
23496
23497         * ThemeWin32Classic.cs:
23498           - Improve disabled string look
23499
23500 2004-09-09 01:15  jordi
23501
23502         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
23503           args and handler
23504
23505 2004-09-08 23:56  ravindra
23506
23507         * ItemBoundsPortion.cs: It's enum, not a class!
23508
23509 2004-09-08 23:47  ravindra
23510
23511         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
23512           Enums for Form.
23513
23514 2004-09-08 21:13  ravindra
23515
23516         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
23517           ListView control.
23518
23519 2004-09-08 21:03  ravindra
23520
23521         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
23522           avoid crash.
23523
23524 2004-09-08 21:01  ravindra
23525
23526         * ScrollableControl.cs: Removed unreachable code.
23527
23528 2004-09-08 06:45  jordi
23529
23530         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
23531
23532 2004-09-08 01:00  jackson
23533
23534         * XplatUIX11.cs: Only run the timers when updating the message
23535           queue. This effectively gives X messages a higher priority then
23536           timer messages. Timers still need love though
23537
23538 2004-09-07 14:01  jackson
23539
23540         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
23541           this for us and the handle is no longer valid.
23542
23543 2004-09-07 13:59  jackson
23544
23545         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
23546           loop that manages to not crash. TODO: Add poll and cleanup timers
23547
23548 2004-09-07 11:12  jordi
23549
23550         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
23551
23552 2004-09-07 03:40  jordi
23553
23554         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
23555           fixes, methods, multiple links
23556
23557 2004-09-06 06:55  jordi
23558
23559         * Control.cs: Caches ClientRectangle rectangle value
23560
23561 2004-09-05 02:03  jordi
23562
23563         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
23564           certain situations
23565
23566 2004-09-04 11:10  jordi
23567
23568         * Label.cs: Refresh when font changed
23569
23570 2004-09-02 16:24  pbartok
23571
23572         * Control.cs:
23573           - Added sanity check to creation of double buffer bitmap
23574
23575 2004-09-02 16:24  pbartok
23576
23577         * ButtonBase.cs:
23578           - Fixed selection of text color
23579           - Fixed handling of resize event; now properly recreates double
23580             buffering bitmap
23581           - Added missing assignment of TextAlignment
23582           - Added proper default for TextAlignment
23583
23584 2004-09-02 14:26  pbartok
23585
23586         * RadioButton.cs:
23587           - Added missing RadioButton.RadioButtonAccessibleObject class
23588
23589 2004-09-02 14:26  pbartok
23590
23591         * Control.cs:
23592           - Added missing Control.ControlAccessibleObject class
23593           - Started to implement Select()ion mechanisms, still very incomplete
23594
23595 2004-09-02 14:25  pbartok
23596
23597         * AccessibleObject.cs:
23598           - Added missing methods
23599
23600 2004-09-02 14:23  pbartok
23601
23602         * AccessibleNavigation.cs, AccessibleSelection.cs:
23603           - Initial check-in
23604
23605 2004-09-02 10:32  jordi
23606
23607         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
23608           pool for pens, brushes, and hatchbruses
23609
23610 2004-09-01 15:30  jackson
23611
23612         * StatusBar.cs: Fix typo
23613
23614 2004-09-01 14:44  pbartok
23615
23616         * RadioButton.cs:
23617           - Fixed state
23618
23619 2004-09-01 14:39  pbartok
23620
23621         * Button.cs, RadioButton.cs:
23622           - Functional initial check-in
23623
23624 2004-09-01 14:01  pbartok
23625
23626         * CheckBox.cs:
23627           - Added missing default
23628           - Added missing region mark
23629
23630 2004-09-01 09:10  jordi
23631
23632         * Label.cs: fixes method signatures, new methods, events, fixes
23633           autosize
23634
23635 2004-09-01 07:19  jordi
23636
23637         * Control.cs: Init string variables with an empty object
23638
23639 2004-09-01 04:20  jordi
23640
23641         * Control.cs: fires OnFontChanged event
23642
23643 2004-08-31 20:07  pbartok
23644
23645         * ButtonBase.cs:
23646           - Enabled display of strings
23647
23648 2004-08-31 20:05  pbartok
23649
23650         * Form.cs:
23651           - Added (partial) implementation of DialogResult; rest needs to be
23652             implemented when the modal loop code is done
23653
23654 2004-08-31 19:55  pbartok
23655
23656         * CheckBox.cs:
23657           - Fixed to match the removal of the needs_redraw concept
23658
23659 2004-08-31 19:55  pbartok
23660
23661         * ButtonBase.cs:
23662           - Removed the rather odd split between 'needs redraw' and redrawing
23663           - Now handles the events that require regeneration (ambient
23664             properties and size)
23665
23666 2004-08-31 19:41  pbartok
23667
23668         * Control.cs:
23669           - Added firing of BackColorChanged event
23670           - Added TopLevelControl property
23671           - Fixed handling of WM_ERASEBKGRND message
23672
23673 2004-08-31 12:49  pbartok
23674
23675         * ButtonBase.cs:
23676           - Removed debug
23677           - Minor fixes
23678
23679 2004-08-31 12:48  pbartok
23680
23681         * CheckBox.cs:
23682           - Finished (famous last words)
23683
23684 2004-08-31 04:35  jordi
23685
23686         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
23687           scrolling bugs, adds new methods
23688
23689 2004-08-30 14:42  pbartok
23690
23691         * CheckBox.cs:
23692           - Implemented CheckBox drawing code
23693
23694 2004-08-30 14:42  pbartok
23695
23696         * ButtonBase.cs:
23697           - Made Redraw() and CheckRedraw() virtual
23698           - Improved mouse up/down/move logic to properly track buttons
23699
23700 2004-08-30 09:44  pbartok
23701
23702         * CheckBox.cs:
23703           - Updated to fix broken build. Not complete yet.
23704
23705 2004-08-30 09:28  pbartok
23706
23707         * CheckState.cs:
23708           - Initial checkin
23709
23710 2004-08-30 09:17  pbartok
23711
23712         * Appearance.cs:
23713           - Initial check-in
23714
23715 2004-08-27 16:12  ravindra
23716
23717         * ToolBarButton.cs: Added TypeConverter attribute.
23718
23719 2004-08-27 16:07  ravindra
23720
23721         * ImageIndexConverter.cs: Implemented.
23722
23723 2004-08-27 14:17  pbartok
23724
23725         * Control.cs:
23726           - Removed unneeded stack vars
23727           - First attempt to fix sizing issues when layout is suspended
23728
23729 2004-08-25 15:35  jordi
23730
23731         * ScrollBar.cs: more fixes to scrollbar
23732
23733 2004-08-25 14:04  ravindra
23734
23735         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
23736           Added the missing divider code and grip for ToolBar Control.
23737
23738 2004-08-25 13:20  pbartok
23739
23740         * Control.cs:
23741           - Control now properly passes the ambient background color to child
23742             controls
23743
23744 2004-08-25 13:20  jordi
23745
23746         * ScrollBar.cs: small bug fix regarding bar position
23747
23748 2004-08-25 12:33  pbartok
23749
23750         * Timer.cs:
23751           - Now only calls SetTimer or KillTimer if the enabled state has
23752           changed
23753
23754 2004-08-25 12:33  pbartok
23755
23756         * XplatUIWin32.cs:
23757           - Fixed timer handling, now seems to work
23758           - Improved error message for window creation
23759
23760 2004-08-25 12:32  pbartok
23761
23762         * Control.cs:
23763           - Fixed generation of MouseUp message
23764
23765 2004-08-25 12:29  jordi
23766
23767         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
23768           and fixes for progressbar
23769
23770 2004-08-24 18:43  ravindra
23771
23772         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
23773           in ToolBar control.
23774
23775 2004-08-24 17:15  pbartok
23776
23777         * Panel.cs:
23778           - Added #region
23779           - Added missing events
23780           - Alphabetized
23781
23782 2004-08-24 17:14  pbartok
23783
23784         * StatusBar.cs, PictureBox.cs:
23785           - Now uses Control's CreateParams
23786
23787 2004-08-24 16:36  pbartok
23788
23789         * XplatUIX11.cs:
23790           - Fixed background color handling
23791           - Fixed sending of enter/leave events on a grab
23792
23793 2004-08-24 16:35  pbartok
23794
23795         * X11Structs.cs:
23796           - Refined definitions for CrossingEvent
23797
23798 2004-08-24 12:37  jordi
23799
23800         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
23801           formmating, methods signature, and adds missing events
23802
23803 2004-08-24 12:24  jordi
23804
23805         * Control.cs: fire OnEnabledChanged event
23806
23807 2004-08-24 11:17  pbartok
23808
23809         * XplatUIWin32.cs:
23810           - Implemented SetTimer() and KillTimer()
23811
23812 2004-08-24 11:16  pbartok
23813
23814         * XplatUIX11.cs:
23815           - Now uses Remove instead of Add to kill the timer
23816
23817 2004-08-24 10:16  jackson
23818
23819         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
23820           picture boxes in the theme now. Draw picture box borders and obey
23821           sizing modes
23822
23823 2004-08-24 05:49  jackson
23824
23825         * Timer.cs: Remove top secret debugging code
23826
23827 2004-08-24 05:34  jackson
23828
23829         * PictureBox.cs: Temp hack to make picture boxes draw their full
23830           image
23831
23832 2004-08-24 05:29  jackson
23833
23834         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23835           XplatUIX11.cs: Move timers to the driver level. On X they are
23836           queued by the driver and checked on idle.
23837
23838 2004-08-24 01:07  jackson
23839
23840         * XplatUIX11.cs: Use a queue for async messages instead of passing
23841           them as ClientMessages since that was totally broken. Also simply
23842           check for events and return an idle message if none are found. This
23843           gives us an idle handler, and prevents deadlocking when no messages
23844           are in the queue.
23845
23846 2004-08-23 18:19  ravindra
23847
23848         * XplatUIWin32.cs: Removed the unwanted destructor.
23849
23850 2004-08-23 17:27  pbartok
23851
23852         * ButtonBase.cs:
23853           - Finishing touches. Works now, just needs some optimizations.
23854
23855 2004-08-23 16:53  jordi
23856
23857         * ScrollBar.cs: small fix
23858
23859 2004-08-23 16:45  pbartok
23860
23861         * Application.cs:
23862           - Removed debug output
23863           - Simplifications
23864
23865 2004-08-23 16:43  jordi
23866
23867         * ScrollBar.cs: [no log message]
23868
23869 2004-08-23 16:10  pbartok
23870
23871         * Form.cs:
23872           - Fixed handling of WM_CLOSE message
23873           - Removed debug output
23874
23875 2004-08-23 16:09  pbartok
23876
23877         * Application.cs:
23878           - Added handling of Idle event
23879           - Added handling of form closing
23880           - Fixed reporting of MessageLoop property
23881           - Removed some unneeded code, should provide a bit of a speedup
23882
23883 2004-08-23 15:22  pbartok
23884
23885         * Control.cs:
23886           - Added InitLayout() method
23887           - Added code to properly perform layout when Anchor or Dock property
23888             is changed
23889           - Changed 'interpretation' of ResumeLayout. MS seems to have a
23890             LAMESPEC, tried to do it in a way that makes sense
23891
23892 2004-08-23 14:10  jordi
23893
23894         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
23895           properties and methods
23896
23897 2004-08-23 13:55  pbartok
23898
23899         * Control.cs:
23900           - Properly fixed Jordi's last fix
23901           - Now uses Cursor's Position property instead of calling XplatUI
23902           directly
23903
23904 2004-08-23 13:44  jordi
23905
23906         * PaintEventHandler.cs: Adding missing attribute
23907
23908 2004-08-23 13:39  pbartok
23909
23910         * Cursor.cs:
23911           - Implemented Position property
23912
23913 2004-08-23 13:39  pbartok
23914
23915         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23916           - Added method to move mouse cursor
23917
23918 2004-08-23 13:39  pbartok
23919
23920         * XplatUIX11.cs:
23921           - Fixed setting of background color
23922           - Added method to move mouse cursor
23923
23924 2004-08-23 13:16  jordi
23925
23926         * Control.cs: avoids null exception
23927
23928 2004-08-22 17:46  jackson
23929
23930         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
23931           PictureBox
23932
23933 2004-08-22 17:40  jackson
23934
23935         * XplatUIX11.cs: Add some missing locks
23936
23937 2004-08-22 15:10  pbartok
23938
23939         * Control.cs, Form.cs:
23940           - Removed OverlappedWindow style from Control, instead it's default
23941             now is child
23942           - Made form windows OverlappedWindow by default
23943
23944 2004-08-22 13:34  jackson
23945
23946         * ScrollBar.cs: Update the position through the Value property so
23947           the OnValueChanged event is raised.
23948
23949 2004-08-22 12:04  pbartok
23950
23951         * SWF.csproj:
23952           - Added Cursor.cs and UserControl.cs
23953
23954 2004-08-22 12:03  pbartok
23955
23956         * Cursor.cs:
23957           - Started implementation, not usable yet
23958
23959 2004-08-22 12:00  pbartok
23960
23961         * UserControl.cs:
23962           - Implemented UserControl (complete)
23963
23964 2004-08-21 19:20  ravindra
23965
23966         * ToolBar.cs: Correcting the formatting mess of VS.NET.
23967
23968 2004-08-21 18:49  ravindra
23969
23970         * ToolBar.cs: Probably this completes the missing attributes in
23971           toolbar control.
23972
23973 2004-08-21 18:03  ravindra
23974
23975         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
23976           Fixed toolbar control signatures.
23977
23978 2004-08-21 16:32  pbartok
23979
23980         * LinkLabel.cs:
23981           - Signature Fixes
23982
23983 2004-08-21 16:30  pbartok
23984
23985         * Label.cs:
23986           - Signature fixes
23987
23988 2004-08-21 16:19  pbartok
23989
23990         * Control.cs, Label.cs:
23991           - Signature fixes
23992
23993 2004-08-21 15:57  pbartok
23994
23995         * ButtonBase.cs:
23996           - Added loads of debug output for development
23997           - Fixed typo in method name
23998
23999 2004-08-21 15:52  pbartok
24000
24001         * ToolBarButtonClickEventArgs.cs:
24002           - Added missing base class
24003
24004 2004-08-21 14:53  pbartok
24005
24006         * Control.cs:
24007           - Updated to match new GrabWindow signature
24008
24009 2004-08-21 14:51  pbartok
24010
24011         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24012           - Added method to get default display size
24013
24014 2004-08-21 14:23  pbartok
24015
24016         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24017           - Added method to query current grab state
24018           - Added argument to allow confining a grab to a window
24019
24020 2004-08-21 14:22  pbartok
24021
24022         * Keys.cs:
24023           - Added [Flags] attribute so that modifiers can be used in bitwise
24024           ops
24025
24026 2004-08-21 14:21  pbartok
24027
24028         * TrackBar.cs, ScrollBar.cs:
24029           - Replaced direct XplatUI calls with their Control counterpart
24030
24031 2004-08-21 13:32  pbartok
24032
24033         * Control.cs:
24034           - Implemented Created property
24035
24036 2004-08-21 13:28  pbartok
24037
24038         * Control.cs:
24039           - Implemented ContainsFocus
24040
24041 2004-08-21 13:26  pbartok
24042
24043         * Control.cs:
24044           - Implemented CausesValidation
24045
24046 2004-08-21 13:21  pbartok
24047
24048         * Control.cs:
24049           - Implemented CanFocus
24050           - Implemented CanSelect
24051           - Implemented Capture
24052
24053 2004-08-21 12:35  pbartok
24054
24055         * XplatUIWin32.cs:
24056           - Fixed bug with Async message handling
24057           - Implemented getting the ModifierKeys
24058
24059 2004-08-21 12:32  jackson
24060
24061         * AsyncMethodResult.cs: Make sure we have the mutex before we
24062           release it. Fixes BeginInvoke on windows
24063
24064 2004-08-21 11:31  pbartok
24065
24066         * XplatUIWin32.cs, XplatUIX11.cs:
24067           - Drivers now return proper mouse state
24068
24069 2004-08-21 10:54  jackson
24070
24071         * Control.cs: Implement EndInvoke
24072
24073 2004-08-21 10:48  jackson
24074
24075         * Timer.cs: Remove unneeded finalizer
24076
24077 2004-08-20 19:52  ravindra
24078
24079         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
24080           in mouse event handling in the ToolBar control.
24081
24082 2004-08-20 19:50  ravindra
24083
24084         * ImageList.cs: Changed draw method to use the arguments passed in
24085           to draw the image.
24086
24087 2004-08-20 18:58  pbartok
24088
24089         * XplatUIStructs.cs:
24090           - Added private message for async communication
24091
24092 2004-08-20 17:38  ravindra
24093
24094         * Control.cs: Made RightToLeft property virtual and removed a
24095           Console.WriteLine.
24096
24097 2004-08-20 14:39  jordi
24098
24099         * ThemeGtk.cs: use style_attach
24100
24101 2004-08-20 14:39  pbartok
24102
24103         * XplatUIWin32.cs:
24104           - Added jackson's Async code from X11 to Win32
24105
24106 2004-08-20 14:09  pbartok
24107
24108         * SWF.csproj:
24109           - Added all new files
24110
24111 2004-08-20 14:09  pbartok
24112
24113         * Control.cs:
24114           - Added call to set window background color
24115
24116 2004-08-20 14:03  pbartok
24117
24118         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24119           - Added method for setting the window background
24120
24121 2004-08-20 14:02  pbartok
24122
24123         * XplatUIWin32.cs:
24124           - Added method for setting the background color
24125           - Added handling for erasing the window background
24126
24127 2004-08-20 13:45  jordi
24128
24129         * TrackBar.cs: fixes timer, new properties and methods
24130
24131 2004-08-20 13:34  jackson
24132
24133         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
24134           correct thread
24135
24136 2004-08-20 13:22  jackson
24137
24138         * Timer.cs: Timer Tick events are now handed through Controls Async
24139           mechanism so the callbacks are executed in the same thread as X
24140
24141 2004-08-20 13:19  jackson
24142
24143         * XplatUIDriver.cs: Expose functionality to send async messages
24144           through the driver
24145
24146 2004-08-20 13:18  jackson
24147
24148         * Control.cs: Implement Begininvoke
24149
24150 2004-08-20 13:14  jackson
24151
24152         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
24153           messages through the driver
24154
24155 2004-08-20 13:12  jackson
24156
24157         * XplatUIX11.cs: Lock before all X operations. Also added Async
24158           method functionality through XSendEvent
24159
24160 2004-08-20 13:11  jackson
24161
24162         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
24163           This will screw up on 64 bit systems)
24164
24165 2004-08-20 13:10  jackson
24166
24167         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
24168           Async messages through X/Win32
24169
24170 2004-08-19 19:39  pbartok
24171
24172         * XplatUIX11.cs:
24173           - Updated code to match new HandleData.DeviceContext type
24174
24175 2004-08-19 19:38  pbartok
24176
24177         * HandleData.cs:
24178           - Made DeviceContext a generic object to allow usage from various
24179           drivers
24180           - Added support for queueing Windows messages
24181
24182 2004-08-19 19:37  pbartok
24183
24184         * XplatUIWin32.cs:
24185           - Added generation of MouseEnter, MouseLeave and MouseHover events
24186           - Added cleanup on EndPaint
24187
24188 2004-08-19 19:17  pbartok
24189
24190         * Control.cs:
24191           - Added handling of WM_MOUSEHOVER
24192           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
24193           code
24194
24195 2004-08-19 18:55  jordi
24196
24197         * ThemeGtk.cs: fixes button order
24198
24199 2004-08-19 18:12  jordi
24200
24201         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
24202
24203 2004-08-19 17:09  pbartok
24204
24205         * Control.cs:
24206           - Added Right property
24207           - Added RightToLeft property
24208
24209 2004-08-19 16:27  jordi
24210
24211         * ThemeGtk.cs: experimental GTK theme support
24212
24213 2004-08-19 16:26  jordi
24214
24215         * ITheme.cs, Theme.cs: move themes from an interface to a class
24216
24217 2004-08-19 16:25  jordi
24218
24219         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
24220           theme enhancaments
24221
24222 2004-08-19 16:04  pbartok
24223
24224         * XplatUIX11.cs:
24225           - Added colormap basics
24226           - Added a way to re-initialize with a different display handle
24227           - Fixed setting of the window background color
24228           - Added various X11 imports related to colors and colormaps
24229
24230 2004-08-19 15:51  pbartok
24231
24232         * X11Structs.cs:
24233           - Removed packing hints (Paolo suggested this a while back)
24234           - fixed colormap type
24235           - Added default Atom types
24236           - Added Screen and color structs and enums
24237
24238 2004-08-19 15:39  pbartok
24239
24240         * ImageList.cs:
24241           - Added missing Draw() method
24242           - Added missing RecreateHandle event
24243
24244 2004-08-19 15:30  pbartok
24245
24246         * Form.cs:
24247           - Added handling of WM_CLOSE
24248
24249 2004-08-18 13:16  jordi
24250
24251         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
24252           a table
24253
24254 2004-08-18 09:56  jordi
24255
24256         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
24257
24258 2004-08-17 15:31  ravindra
24259
24260         * SWF.csproj: Updated project.
24261
24262 2004-08-17 15:25  pbartok
24263
24264         * Control.cs:
24265           - Drawing improvement; don't call UpdateBounds if we are not visible
24266             (or have been minimized)
24267
24268 2004-08-17 15:24  pbartok
24269
24270         * XplatUIWin32.cs:
24271           - Finished IsVisible
24272           - Added Win32GetWindowPlacement
24273
24274 2004-08-17 15:08  jackson
24275
24276         * Panel.cs: Initial checkin of the Panel
24277
24278 2004-08-17 14:25  pbartok
24279
24280         * Control.cs:
24281           - Fixed broken handling of default window sizes
24282
24283 2004-08-17 13:29  jackson
24284
24285         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
24286           has a large startup time.
24287
24288 2004-08-17 10:25  jackson
24289
24290         * HandleData.cs: union areas properly
24291
24292 2004-08-17 10:12  jackson
24293
24294         * HandleData.cs: union areas properly
24295
24296 2004-08-16 20:00  ravindra
24297
24298         * ToolBar.cs, ToolBarButton.cs: Added attributes.
24299
24300 2004-08-16 18:48  ravindra
24301
24302         * ToolBar.cs: Added attributes.
24303
24304 2004-08-16 17:17  ravindra
24305
24306         * SWF.csproj: Updated project.
24307
24308 2004-08-16 17:16  jackson
24309
24310         * XplatUIX11.cs: Check for more expose events before sending a
24311           WM_PAINT so they can all be grouped together. This makes dragging a
24312           window across another window redraw in a sane way.
24313
24314 2004-08-16 15:47  pbartok
24315
24316         * Control.cs:
24317           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
24318             support OnMouseEnter/Leave()
24319           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
24320             exposure handling
24321
24322 2004-08-16 15:46  pbartok
24323
24324         * XplatUIStructs.cs, XplatUIX11.cs:
24325           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
24326           OnMouseEnter/Leave()
24327
24328 2004-08-16 15:34  jackson
24329
24330         * XplatUIX11.cs: Group multiple expose events in HandleData, make
24331           sure messages get the message field set to WM_NULL if they are not
24332           handled.
24333
24334 2004-08-16 15:24  jackson
24335
24336         * HandleData.cs: HandleData is used for storing message information
24337           for window handles
24338
24339 2004-08-15 17:23  ravindra
24340
24341         * ColorDepth.cs: Added attribute.
24342
24343 2004-08-15 17:23  ravindra
24344
24345         * SWF.csproj: Updated project for ToolBar Control.
24346
24347 2004-08-15 17:20  ravindra
24348
24349         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
24350           control and also dos2unix format.
24351
24352 2004-08-15 17:13  ravindra
24353
24354         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
24355           ToolBarButtonClickEventArgs.cs,
24356           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
24357           ToolBarTextAlign.cs: First Implementation of ToolBar control.
24358
24359 2004-08-15 15:31  pbartok
24360
24361         * ButtonBase.cs:
24362           - First (mostly) working version
24363
24364 2004-08-13 16:15  pbartok
24365
24366         * Control.cs:
24367           - Fixed Anchor default
24368
24369 2004-08-13 15:43  pbartok
24370
24371         * Control.cs:
24372           - Changed GetCursorPos signature
24373
24374 2004-08-13 15:42  pbartok
24375
24376         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24377           - Changed signature for GetCursorPos
24378
24379 2004-08-13 15:25  pbartok
24380
24381         * XplatUIX11.cs:
24382           - Cleanup
24383           - Fixed resizing/exposure handling
24384
24385 2004-08-13 15:22  jordi
24386
24387         * ThemeWin32Classic.cs: removes redundant code and fixes issues
24388           with tickposition
24389
24390 2004-08-13 14:55  jordi
24391
24392         * TrackBar.cs: change from wndproc to events
24393
24394 2004-08-13 13:00  jordi
24395
24396         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24397           XplatUIX11.cs: implements PointToClient (ScreenToClient)
24398
24399 2004-08-13 12:53  pbartok
24400
24401         * XplatUIWin32.cs:
24402           - Changed GetWindowPos to also provide client area size
24403           - Fixed broken prototypes for several win32 functions
24404
24405 2004-08-13 12:53  pbartok
24406
24407         * XplatUI.cs, XplatUIDriver.cs:
24408           - Changed GetWindowPos to also provide client area size
24409
24410 2004-08-13 12:52  pbartok
24411
24412         * XplatUIX11.cs:
24413           - Added generation of WM_POSCHANGED
24414           - Changed GetWindowPos to also provide client area size
24415
24416 2004-08-13 12:52  pbartok
24417
24418         * Control.cs:
24419           - Added Dispose() and destructor
24420           - Fixed resizing and bounds calculation
24421           - Fixed Layout
24422           - Added memory savings for invisible windows
24423
24424 2004-08-13 12:46  jordi
24425
24426         * TrackBar.cs: adds timer and grap window
24427
24428 2004-08-13 10:25  jackson
24429
24430         * Timer.cs: SWF Timer
24431
24432 2004-08-12 16:59  pbartok
24433
24434         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24435           - Implemented method to get current mouse position
24436
24437 2004-08-12 14:29  jordi
24438
24439         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
24440           enhancement, fix mouse problems, highli thumb, etc
24441
24442 2004-08-12 13:31  pbartok
24443
24444         * Control.cs:
24445           - Fixed Anchoring bugs
24446
24447 2004-08-12 13:01  jackson
24448
24449         * StatusBar.cs: Don't forget things
24450
24451 2004-08-12 12:54  jackson
24452
24453         * ThemeWin32Classic.cs: Handle owner draw status bars
24454
24455 2004-08-12 12:54  jackson
24456
24457         * StatusBar.cs: Implement missing properties, events, and methods.
24458           Handle mouse clicking
24459
24460 2004-08-12 10:19  jackson
24461
24462         * StatusBarPanelClickEventArgs.cs,
24463           StatusBarPanelClickEventHandler.cs: Classes for handling status
24464           bar panel click events
24465
24466 2004-08-12 10:10  jackson
24467
24468         * Control.cs: Add missing properties
24469
24470 2004-08-12 09:46  pbartok
24471
24472         * BindingsManagerBase.cs:
24473           - Name changed to BindingManagerBase.cs
24474
24475 2004-08-12 09:25  jordi
24476
24477         * ScrollableControl.cs: calls ctrlbase instead of exeception
24478
24479 2004-08-11 16:28  pbartok
24480
24481         * InputLanguageChangingEventArgs.cs:
24482           - Never check in before compiling. Fixes the last check-in
24483
24484 2004-08-11 16:26  pbartok
24485
24486         * InputLanguageChangingEventArgs.cs:
24487           - More signature fixes
24488
24489 2004-08-11 16:20  pbartok
24490
24491         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
24492           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
24493           ImageListStreamer.cs, InputLanguage.cs,
24494           InputLanguageChangedEventArgs.cs,
24495           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
24496           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
24497           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
24498           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24499           - Signature fixes
24500
24501 2004-08-11 16:16  pbartok
24502
24503         * Application.cs:
24504           - Fixed Signature
24505           - Added .Net 1.1 method
24506
24507 2004-08-11 15:25  pbartok
24508
24509         * SWF.csproj:
24510           - Fixed BindingManagerBase.cs filename
24511
24512 2004-08-11 15:22  pbartok
24513
24514         * BindingManagerBase.cs:
24515           - Was checked in with wrong filename
24516
24517 2004-08-11 14:50  pbartok
24518
24519         * SWF.csproj:
24520           - Updated
24521
24522 2004-08-11 13:41  jordi
24523
24524         * XplatUIWin32.cs: Fixes ClientRect
24525
24526 2004-08-11 13:19  pbartok
24527
24528         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24529           XplatUIX11.cs:
24530           - We had SetWindowPos and MoveWindow to set window positions and
24531             size, removed MoveWindow. We have GetWindowPos, so it made sense to
24532             keep SetWindowPos as matching counterpart
24533           - Added some X11 sanity checking
24534
24535 2004-08-11 12:59  pbartok
24536
24537         * Control.cs:
24538           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
24539             (It seems that SetBounds is just a front for SetBoundsCore and
24540              SetBoundsCore updates the underlying window system and
24541              UpdateBounds is responsible for updating the variables associated
24542              with the Control and sending the events)
24543           - Major cleanup of Size handling; we now have two sizes, client_size
24544             and bounds. Bounds defines the window with decorations, client_size
24545             without them.
24546
24547 2004-08-11 12:55  pbartok
24548
24549         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24550           - Added method to calculate difference between decorated window and
24551             raw client area
24552
24553 2004-08-11 12:54  pbartok
24554
24555         * Label.cs:
24556           - Forcing redraw on resize
24557
24558 2004-08-11 11:43  pbartok
24559
24560         * ImageList.cs:
24561           - Removed disposing of the actual images when the list is disposed
24562
24563 2004-08-11 09:13  pbartok
24564
24565         * Control.cs:
24566           - Now properly reparents windows
24567
24568 2004-08-11 08:37  pbartok
24569
24570         * Control.cs:
24571           - Duh!
24572
24573 2004-08-11 07:47  pbartok
24574
24575         * Control.cs:
24576           - Rewrote the collection stuff. Might not be as fast now, not
24577             keeping the number of children around and accessible directly, but
24578             it's more straightforward
24579
24580 2004-08-11 07:44  pbartok
24581
24582         * AccessibleObject.cs:
24583           - Fixed to match ControlCollection rewrite
24584
24585 2004-08-11 07:43  pbartok
24586
24587         * ImageList.cs:
24588           - Added missing creation of the collection list
24589
24590 2004-08-10 20:08  jackson
24591
24592         * StatusBar.cs: Get the paint message from WndProc
24593
24594 2004-08-10 19:31  jackson
24595
24596         * ThemeWin32Classic.cs: Create Brushes as little as possible
24597
24598 2004-08-10 19:20  jackson
24599
24600         * UICues.cs: Add Flags attribute
24601
24602 2004-08-10 19:19  jackson
24603
24604         * StatusBarPanel.cs: Signature cleanup
24605
24606 2004-08-10 19:10  jackson
24607
24608         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
24609           Initial implementation of status bar item drawing
24610
24611 2004-08-10 17:27  jordi
24612
24613         * TrackBar.cs: add missing methods, properties, and restructure to
24614           hide extra ones
24615
24616 2004-08-10 16:24  jackson
24617
24618         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
24619           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
24620           attribute
24621
24622 2004-08-10 13:21  jordi
24623
24624         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
24625           enhancements and standarize on win colors defaults
24626
24627 2004-08-10 12:52  jackson
24628
24629         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
24630           ThemeWin32Classic.cs: Implement DrawItem functionality
24631
24632 2004-08-10 12:47  jordi
24633
24634         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
24635
24636 2004-08-10 12:32  jordi
24637
24638         * Control.cs: throw ontextchange event
24639
24640 2004-08-10 11:43  pbartok
24641
24642         * Control.cs:
24643           - Added more to the still unfinished Dock/Anchor layout code
24644
24645 2004-08-10 11:39  pbartok
24646
24647         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24648           - Added GetWindowPos method
24649
24650 2004-08-10 11:36  pbartok
24651
24652         * XplatUIWin32.cs:
24653           - Implemented several methods
24654
24655 2004-08-10 09:47  jackson
24656
24657         * TrackBar.cs: Allow control to handle buffering
24658
24659 2004-08-10 09:41  jackson
24660
24661         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
24662
24663 2004-08-10 09:24  jackson
24664
24665         * Label.cs, LinkLabel.cs: Let Control handle buffering.
24666
24667 2004-08-10 09:09  jackson
24668
24669         * StatusBar.cs: Let Control handle all the buffering.
24670
24671 2004-08-10 09:08  jackson
24672
24673         * Control.cs: Control will now handle the buffering code, so each
24674           control does not have to implement this.
24675
24676 2004-08-10 08:34  jackson
24677
24678         * XplatUIDriver.cs: Use default colors from the theme
24679
24680 2004-08-09 17:12  pbartok
24681
24682         * ImageList.cs:
24683           - Fixed several bugs Ravindra pointed out
24684
24685 2004-08-09 16:11  pbartok
24686
24687         * Control.cs:
24688           - Added incomplete dock layout code
24689           - Added support for mouse wheel
24690
24691 2004-08-09 16:09  pbartok
24692
24693         * XplatUIX11.cs:
24694           - Added handling for middle and right mousebutton
24695           - Added handling for mouse wheel
24696           - Added handling for key state and mouse state and position
24697           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
24698           messages
24699
24700 2004-08-09 15:40  jackson
24701
24702         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
24703           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
24704           checkin
24705
24706 2004-08-09 15:37  jackson
24707
24708         * StatusBar.cs: Initial implementation of StatusBar
24709
24710 2004-08-09 15:36  jackson
24711
24712         * ITheme.cs: Add support for drawing status bar and getting status
24713           bar item sizes
24714
24715 2004-08-09 15:35  pbartok
24716
24717         * MouseButtons.cs:
24718           - Fixed values
24719
24720 2004-08-09 15:34  jackson
24721
24722         * ThemeWin32Classic.cs: Add support for drawing status bar and get
24723           status bar item sizes
24724
24725 2004-08-09 15:21  jackson
24726
24727         * ThemeWin32Classic.cs: Use known colors for default control
24728           colours
24729
24730 2004-08-09 15:12  jackson
24731
24732         * ThemeWin32Classic.cs: Make the default font static, it is static
24733           in control so this doesn't change functionality and creating fonts
24734           is sloooooow.
24735
24736 2004-08-09 14:56  pbartok
24737
24738         * X11Structs.cs:
24739           - Added GrabMode enum
24740
24741 2004-08-09 14:55  pbartok
24742
24743         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24744           - Removed Run method, was only required for initial development
24745
24746 2004-08-09 14:51  pbartok
24747
24748         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24749           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
24750           capture
24751
24752 2004-08-09 13:48  pbartok
24753
24754         * XplatUIX11.cs:
24755           - Fixed default sizing for child windows
24756
24757 2004-08-09 12:56  pbartok
24758
24759         * XplatUIX11.cs:
24760           - Added generation of WM_DESTROY message
24761           - Added handling of window manager induced shutdown
24762
24763 2004-08-09 11:31  jackson
24764
24765         * ThemeWin32Classic.cs: New names for control properties
24766
24767 2004-08-09 11:25  jackson
24768
24769         * Control.cs: Use new color names
24770
24771 2004-08-09 11:02  jackson
24772
24773         * XplatUI.cs: Get default window properties from the theme
24774
24775 2004-08-09 11:01  jackson
24776
24777         * ITheme.cs: The theme engine now controls default window
24778           properties
24779
24780 2004-08-09 11:00  jackson
24781
24782         * ThemeWin32Classic.cs: Add default window color properties
24783
24784 2004-08-09 10:17  jackson
24785
24786         * ThemeWin32Classic.cs: Use correct default back color
24787
24788 2004-08-09 10:05  jackson
24789
24790         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
24791           the theme now.
24792
24793 2004-08-09 09:56  jackson
24794
24795         * XplatUI.cs: Remove defaults, these are handled by the theme now.
24796
24797 2004-08-09 09:54  jackson
24798
24799         * Control.cs: Get default properties from the theme.
24800
24801 2004-08-09 09:53  jackson
24802
24803         * ITheme.cs: Themes now handle default control properties
24804
24805 2004-08-09 09:53  jackson
24806
24807         * ThemeWin32Classic.cs: Themes now handle default control
24808           properties so coloring will be consistent
24809
24810 2004-08-08 16:54  jordi
24811
24812         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
24813
24814 2004-08-08 15:08  jordi
24815
24816         * XplatUIX11.cs: fixes keyboard crash
24817
24818 2004-08-08 13:47  jordi
24819
24820         * Label.cs: add cvs header info
24821
24822 2004-08-08 12:09  jackson
24823
24824         * ThemeWin32Classic.cs: Add pen_buttonface
24825
24826 2004-08-08 11:52  jordi
24827
24828         * Label.cs, LinkLabel.cs: [no log message]
24829
24830 2004-08-08 11:34  jordi
24831
24832         * ThemeWin32Classic.cs: Use Windows Standard Colours
24833
24834 2004-08-07 17:32  jordi
24835
24836         * TrackBar.cs: throw exceptions of invalid enums values
24837
24838 2004-08-07 17:31  jordi
24839
24840         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
24841           draw method name
24842
24843 2004-08-07 16:56  jackson
24844
24845         * HorizontalAlignment.cs: Initial checkin
24846
24847 2004-08-07 13:16  jordi
24848
24849         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
24850           methods
24851
24852 2004-08-07 13:05  jordi
24853
24854         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
24855           GetSysColor defines
24856
24857 2004-08-06 18:01  pbartok
24858
24859         * ThemeWin32Classic.cs:
24860           - Fixed some rounding issues with float/int
24861
24862 2004-08-06 18:00  jackson
24863
24864         * DockStyle.cs, AnchorStyles.cs:
24865
24866                   Add flags and serializable attributes.
24867
24868 2004-08-06 17:46  pbartok
24869
24870         * XplatUIX11.cs:
24871           - Implemented GetParent
24872
24873 2004-08-06 17:18  pbartok
24874
24875         * TrackBar.cs:
24876           - Fixed some rounding issues with float/int
24877
24878 2004-08-06 17:17  pbartok
24879
24880         * X11Structs.cs, XplatUIX11.cs:
24881           - Fixed Refresh and Invalidate
24882
24883 2004-08-06 15:30  pbartok
24884
24885         * Control.cs, X11Structs.cs, XplatUIX11.cs:
24886           - Fixed recursive loop when resizing
24887           - Improved/fixed redrawing on expose messages
24888
24889 2004-08-06 09:53  jordi
24890
24891         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
24892           keyboard navigation
24893
24894 2004-08-06 08:02  pbartok
24895
24896         * X11Structs.cs, XplatUIX11.cs:
24897           - Fixed reparenting
24898           - Fixed window border creation
24899
24900 2004-08-05 15:38  pbartok
24901
24902         * XplatUIX11.cs:
24903           - Attempted fix for reparenting problems
24904
24905 2004-08-04 15:14  pbartok
24906
24907         * Control.cs:
24908           - Fixed Invalidation bug (calculated wrong client area)
24909           - Added ClientSize setter
24910
24911 2004-08-04 15:13  pbartok
24912
24913         * Form.cs:
24914           - Added AutoScale properties
24915
24916 2004-08-04 15:13  pbartok
24917
24918         * SWF.csproj:
24919           - Added latest files
24920
24921 2004-08-04 14:11  pbartok
24922
24923         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24924           XplatUIX11.cs:
24925           - Added Invalidate handling
24926
24927 2004-08-03 17:09  jordi
24928
24929         * XplatUIDriver.cs: fixes spelling mistake
24930
24931 2004-07-27 09:53  jordi
24932
24933         * TrackBar.cs: fixes trackbar events, def classname, methods
24934           signature
24935
24936 2004-07-27 09:29  jordi
24937
24938         * ScrollBar.cs: fixes scrollbar events
24939
24940 2004-07-27 04:38  jordi
24941
24942         * Control.cs: changes to be able to run winforms samples
24943
24944 2004-07-26 11:42  jordi
24945
24946         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
24947           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
24948
24949 2004-07-26 05:41  jordi
24950
24951         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
24952           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
24953           implementation
24954
24955 2004-07-22 09:22  jordi
24956
24957         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
24958           check link overlapping, implement events, and fixes
24959
24960 2004-07-21 10:28  jordi
24961
24962         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
24963
24964 2004-07-21 10:19  jordi
24965
24966         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
24967           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
24968           LinkLabelLinkClickedEventArgs.cs,
24969           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
24970           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
24971           implementation
24972
24973 2004-07-19 13:09  jordi
24974
24975         * Control.cs, Label.cs: label control re-written: added missing
24976           functionlity, events, and properties
24977
24978 2004-07-19 10:49  jordi
24979
24980         * Control.cs: fixes SetBounds logic
24981
24982 2004-07-19 01:29  jordi
24983
24984         * Control.cs: Call RefreshWindow only if the window has created
24985
24986 2004-07-15 14:05  pbartok
24987
24988         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
24989           - Implemented ImageList and ImageList.ImageCollection classes
24990           - Added ColorDepth enumeration
24991           - Updated SWF VS.Net project
24992
24993 2004-07-15 11:06  jordi
24994
24995         * XplatUIStructs.cs: added MsgButons enum
24996
24997 2004-07-15 11:03  jordi
24998
24999         * Control.cs: added basic mouse handeling events
25000
25001 2004-07-15 03:38  jordi
25002
25003         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
25004           Vertical TrackBar control implementation
25005
25006 2004-07-13 09:33  jordi
25007
25008         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
25009
25010 2004-07-13 09:31  jordi
25011
25012         * Control.cs, Form.cs: commit: new properties and fixes form size
25013           problems
25014
25015 2004-07-09 14:13  miguel
25016
25017         * ProgressBar.cs: Spelling
25018
25019 2004-07-09 11:25  pbartok
25020
25021         * ProgressBar.cs:
25022           - Removed usage of Rectangle for drawing. Miguel pointed out it's
25023           faster
25024
25025 2004-07-09 11:17  miguel
25026
25027         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25028
25029                 * ProgressBar.cs: Fixed spelling for `block'
25030
25031                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
25032                 style guidelines.
25033
25034                 Avoid using the += on rect.X, that exposed a bug in the compiler.
25035
25036 2004-07-08 23:21  pbartok
25037
25038         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
25039           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
25040           BaseCollection.cs, Binding.cs, BindingContext.cs,
25041           BindingMemberInfo.cs, BindingsCollection.cs,
25042           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
25043           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
25044           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
25045           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
25046           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
25047           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
25048           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
25049           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
25050           FrameStyle.cs, GiveFeedbackEventArgs.cs,
25051           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
25052           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
25053           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
25054           InputLanguageChangedEventArgs.cs,
25055           InputLanguageChangedEventHandler.cs,
25056           InputLanguageChangingEventArgs.cs,
25057           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
25058           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
25059           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
25060           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
25061           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
25062           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
25063           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
25064           QueryAccessibilityHelpEventArgs.cs,
25065           QueryAccessibilityHelpEventHandler.cs,
25066           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
25067           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
25068           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
25069           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
25070           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
25071           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
25072           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
25073           XplatUIX11.cs, lang.cs:
25074           - Initial check-in
25075