2007-03-26 Everaldo Canuto <everaldo@simios.org>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
2
3         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
4         needed to implement Balloon.
5
6 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7
8         * ListViewItem.cs: In the constructors that take
9         an array of strings, don't use ListViewSubItemCollection.AddRange
10         method to add items, since we need to have a different behaviour (in
11         the constructors we add an item for each null string, opposed to
12         the behaviour of AddRange, which adds nothing).
13
14 2007-03-26  Andreia Gaita  <avidigal@novell.com>
15
16         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
17
18 2007-03-26  Jackson Harper  <jackson@ximian.com>
19
20         * TextControl.cs: Draw and measure line endings when in non
21         multiline mode.
22         - When searching the text, count the end of the last line as a
23         word boundary.
24
25 2007-03-26  Jackson Harper  <jackson@ximian.com>
26
27         * RichTextBox.cs: The selection_start and selection_end don't
28         really track the correct tags for the selection. So we'll manually
29         compute the correct tag here.
30
31 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
32
33         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
34           and Continuous styles. Fixes #79469.
35
36 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
37
38         * ToolStrip.cs: Implement Tooltips.
39         * ToolStripItem.cs: Create internal method for determining tooltip.
40
41 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
42
43         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
44
45 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
46
47         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
48         it prevents a problem thak keeps icon visible after application 
49         closes on win32.
50
51 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
52
53         * NotifyIcon.cs: Balloon properties and methods created.
54
55         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
56         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
57
58 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
59
60         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
61
62 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
63
64         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
65         parameter indicates which aspects were explicit/user-set.
66         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
67
68 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
69
70         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
71         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
72         SmallChange, and Value (2.0).
73         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
74
75 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
76
77         * ListView.cs: Always set item_control.Width in LayoutDetails
78         if View is Details. Setting it later in CalculateScrollBars
79         in a not-so-corner scenario (the sum of columns width is
80         not bigger than the ListView width when handle is created, and then
81         that sum gets bigger by increasing the width of the columns)
82         causes a very weird recursion path (which shouldn't be happening,
83         since header_control sets it in CalculateScrollBars too). This bug
84         appeared after Chris' fixes for handle created issues, so probably
85         it's related to some handle-creation time.
86
87 2007-03-23  Chris Toshok  <toshok@ximian.com>
88
89         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
90         case where there's an add row, just so we don't end up in a case
91         where it's not displayed (this happens when the row is partially
92         obscured).  Fixes bug #79574.
93
94 2007-03-23  Jackson Harper  <jackson@ximian.com>
95
96         * TextControl.cs:
97         * TextBoxBase.cs:
98         * RichTextBox.cs: Preserve line endings in the lines text buffer,
99         also added an enum that represents the line ending type. 
100
101 2007-03-23  Andreia Gaita  <avidigal@novell.com>
102
103         * NumericUpDown.cs: Fix logic so Text and Value properties are not
104         messed with in every method call, but only from DownButton, 
105         UpButton, UpdateEditText() and ValidateText. Fixes #80346
106
107 2007-03-23  Chris Toshok  <toshok@ximian.com>
108
109         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
110         format objects if the format spec is "".  Fixes bug #80889.
111
112 2007-03-22  Miguel de Icaza  <miguel@novell.com>
113
114         * ToolStripPanel.cs (Join): added stubs to build PDN3
115
116         * Control.cs (AutoScrollOffset): Add.
117
118         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
119         property, its only implemented for Win32, on X11 it defaults to
120         some hardcoded value.
121
122         * ToolStripItem.cs (AllowDrop): Add property
123
124 2007-03-22  Mike Kestner  <mkestner@novell.com>
125
126         * ListView.cs : in FullRowSelect Details mode, only enable box
127         selection if the user clicks over the "item" column outside of the
128         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
129
130 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
131
132         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
133           handle is not created yet.
134         * Form.cs: Select: Don't call CreateHandle if the handle is already
135           created, avoids a stack overflow on Windows when we are recreating
136           controls.
137         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
138           they are made visible, and override AfterTopMostControl to keep
139           them on top when other controls are brought to front.
140           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
141           or force_*scroll_visible is true (old implementation always shows
142           scrollbars when needed, no matter what auto_scroll was set to).
143         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
144           IsHandleCreated check.
145
146 2007-03-22  Andreia Gaita  <avidigal@novell.com>
147
148         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
149         row or col separator.
150         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
151
152 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
153
154         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
155
156 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
157
158         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
159         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
160         every time. Fixes #80410.
161
162 2007-03-22  Chris Toshok  <toshok@ximian.com>
163
164         * BindingSource.cs (AddNew): partially implement.
165
166         remove a couple of NotImplementedException's
167         to get bug #81148 closed.
168
169 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
170
171         [Fixes #80380]
172         
173         * Control.cs:
174         - UpdateCursor method added to update the screen cursor.
175         - GetAvailableCursor method added to return cursor for enabled tree,
176         it searches for cursor on control and it's parent's for enabled control.
177         - Call UpdateCursor method on setter of Cursor property.
178         - On setter of Enabled call UpdateCursor when it is false, we need to
179         change cursor to normal (or to this parent cursor) because cursor 
180         setting theres no effect to disabled controls.
181         - Some minor source changes to follow the coding style guidelines.
182
183         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
184         controls.
185
186 2007-03-22  Chris Toshok  <toshok@ximian.com>
187
188         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
189         generates.
190
191 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
192
193         * XplatUIX11.cs: Implement default locations for forms.
194         * Form.cs: Completely rework startup location for forms. Fixes #79964.
195         * Hwnd.cs: Add previous_child_startup_location (to track the current
196           startup location for any child forms of the current form) and
197           previous_main_startup_location (to track the startup location for
198           the current toplevel form).
199
200 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
201
202         * Control.cs: Don't trigger a layout if an implicit control is added
203         that isn't visible.  Also, don't notify the owner when an implicit control
204         is added.  (Owners shouldn't even know about their implicit controls.)
205
206 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
207
208         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
209         to save some re-layouts.
210
211 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
212
213         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
214         [Fixes #81203]
215
216 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
217
218         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
219         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
220
221 2007-03-21  Mike Kestner  <mkestner@novell.com>
222
223         * ListView.cs : disable selection update for non-left button clicks
224         with mods and over selected items.  [Fixes #80524]
225
226 2007-03-20  Jackson Harper  <jackson@ximian.com>
227
228         * TextControl.cs:
229         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
230         \r\r\n, \n.
231
232 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
233
234         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
235           very probably a more complicated calculation there. Update the
236           textbox' ForeColor and BackColor when the ComboBox' colors are
237           changed. Change the border change in LayoutComboBox to only affect
238           the textbox, not all the calculations there. Seems to fix most of
239           #79436.
240
241 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
242
243         * ComboBox.cs: Handle Home and End keys as well as all combinations of
244           modifiers + navigation keys as input keys, enables advanced text
245           selection in the combobox (like Shift+Left Arrow for instance).
246           ComboTextBox now overrides Focused and returns whatever
247           ComboBox.Focused returns, since it really should be focused
248           whenever the ComboBox is. Fixes #80795. Also make the border around
249           the text box one pixel bigger, as mentioned in #79436.
250
251 2007-03-20  Jackson Harper  <jackson@ximian.com>
252
253         * TreeView.cs: Don't offset the images, this was causing some
254         artifacts when expanding/collapsing with images that were the
255         exact height of the treenode.
256
257 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
258
259         * TrackBar.cs: Query the theme for the correct value when the mouse
260           moves and the thumb is pressed. 
261         * Theme.cs: Added TrackBarValueFromMousePosition
262         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
263           implementation was updating the trackbar value when drawing, now
264           the drawing methods only draw. Fixes #80900. Refactored the
265           calculations out to TrackBarValueFromMousePosition and
266           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
267           according to the mouse position whenever it wants to. Changed the
268           light coloured pen when drawing the thumb from ControlLight to
269           ControlLightLight, because the ControlLight is the same colour as
270           the background so the 3D effect is lost. 
271
272 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
273
274         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
275         defined. Fixes #80784.
276
277 2007-03-20  Marek Habersack  <mhabersack@novell.com>
278
279         * ContextMenuStrip.cs: align with the change introduced in
280         revision 74664.
281
282 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
283
284         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
285         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
286         in SetTopmost.
287
288 2007-03-19  Chris Toshok  <toshok@ximian.com>
289
290         * Control.cs (WmPaint): don't make use of the Handle property
291         after an event is emitted, as the user could have closed the
292         form/destroyed the control.  Store the Handle in a local variable
293         and make use of that.  Fixes bug #80768.
294
295 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
296
297         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
298         behavior in X11 environments.
299
300 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
301
302         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
303         because on setter of topmost we dont call SetTopmost when handle is not
304         created.
305
306 2007-03-20  Jackson Harper  <jackson@ximian.com>
307
308         * TextControl.cs: Need to use SelectionLength () not
309         selection_length, since that var is reset to -1.
310         - Draw the caret when we don't have focus.
311         * TextBox.cs: The selectall actually doesn't occur until the first
312         focus.
313         * TextBoxBase.cs: Need to update the caret position after a
314         selectall.
315         
316 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
317
318         * ListView.cs: Enable scrolling when using Tile view.
319
320 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
321
322         [Fixes #80902]
323
324         * XplatUIDriver.cs: Abstract SetOwner method created.
325
326         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
327         must be implemented and was masked as todo.
328
329         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
330         GWL_HWNDPARENT.
331
332         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
333         cheking for null owner to remove transient. The SetTopmost will be change
334         on a decond step.
335
336         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
337         SetTopmost. Now owned forms will work properly in win32 and X11.
338
339 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
340
341         * MdiWindowManager.cs: Update function name.
342         * Form.cs: After closing a form MdiParent is always null.
343         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
344           better what it should do: necessary book-keeping when the form is
345           closed, it should not close the form itself.
346
347 2007-03-19  Andreia Gaita  <avidigal@novell.com>
348
349         * ListViewItem.cs: Fix back and fore color. The subitems only
350         use their own colors if they are set, otherwise use the listview's
351         colors. Don't set default colors on constructor for subitem.
352         Fixes #79315.
353
354 2007-03-19  Mike Kestner  <mkestner@novell.com>
355
356         * ListView.cs : make box selection for Details views with 
357         FullRowSelect conform to MS behavior when clicking in the "item" 
358         column and clicking outside the defined columns.
359         [Fixes case 5-6 of #80374]
360
361 2007-03-19  Chris Toshok  <toshok@ximian.com>
362
363         * ScrollableControl.cs: create the controls from within the ctor,
364         but don't actually add them until our handle is created.  this
365         fixes a NRE possibility jpobst found (if you override OnLayout in
366         a subclass, it's called before your ctor).  Also, add a
367         IsHandleCreated guard to UpdateSizeGripVisibility as well.
368
369 2007-03-19  Jackson Harper  <jackson@ximian.com>
370
371         * TextBox.cs: Reduce the amount of invalidation we do.
372         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
373         some of them are true by default on MS.
374         - Add some functions to reduce the amount of invalidates we do.
375         * TextControl.cs: Less invalidation.
376
377 2007-03-19  Chris Toshok  <toshok@ximian.com>
378
379         [ Fixes #81773, and *seems* to fix #81553 as well ]
380
381         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
382         AccumulateDestroyedHandles.  We need to do it *after* we send
383         WM_DESTROY, as the user's code can access Control.Handle in
384         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
385         move the WM_DESTROY/zombie handling to before the call to
386         XDestroyWindow.  For some reason without this ordering
387         FormTest.RecreateHandle hangs.  This ordering is semantically
388         equivalent, however, as XDestroyWindow is async anyway.
389
390 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
391
392         * RichTextBox.cs: Reset backcolor_set after setting default.
393
394 2007-03-19  Chris Toshok  <toshok@ximian.com>
395
396         * ScrollableControl.cs: the scroll position should not effect the
397         canvas size.  commit patch from georgegiolfan@yahoo.com, which
398         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
399         
400 2007-03-19  Chris Toshok  <toshok@ximian.com>
401
402         * ScrollableControl.cs: clean this up a bit.  create the
403         scrollbars in the ctor and just show/hide them as needed.  Also,
404         make hscroll_visible/vscroll_visible internal to Recalculate, and
405         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
406         everywhere else.  This seems to fix the scrollbars appearing
407         beneath the content for me (i have *no* idea why that is,
408         however.)
409
410 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
411
412         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
413         some redundacy for stuff in Anchor and Dock that base will take care of.
414         [Fixes #80762]
415
416 2007-03-19  Mike Kestner  <mkestner@novell.com>
417
418         * ListView.cs : make box selection for Details views without 
419         FullRowSelect dependent on the text bounds, not item bounds.
420         * ListViewItem.cs : add an internal property to obtain the TextBounds
421         in Details view.  [Fixes case 1-4 of #80374]
422
423 2007-03-19  Andreia Gaita  <avidigal@novell.com>
424
425         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
426         we're < 2.0. #78448 && #80316
427
428 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
429
430         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
431         have the same style available as the previously selected one.  Also,
432         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
433
434 2007-03-19  Jackson Harper  <jackson@ximian.com>
435
436         * TextControl.cs: Add an alignment property that all new lines
437         will be given.
438         - Make sure to use the align shift when calculating the line's X
439         position.
440         * TextBox.cs: Set the alignment on the document as well as on all
441         the document lines.
442
443 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
444
445         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
446           throw if setting the parent of an mdichild that already has an
447           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
448           AssemblyProductAttribute in the assembly, use the type's namespace (as
449           MS seems to do). CreateControl: don't create the handle if the control
450           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
451           create handle if the control is not a form. Change FocusInternal to
452           virtual so that it can be overriden by Form.
453         * TextBox.cs: Update call to FocusInternal.
454         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
455           form is not a toplevel form when it's a mdi child, so update is_toplevel
456           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
457           hasn't been created. Show (IWin32Window): Don't allow this overload for
458           toplevel windows. CenterToParent/CenterToScreen/Select: create the
459           handle as MS does. SetVisibleCore: if called on a MdiChild and the
460           parent isn't visible yet, save the visibility and restore it when the
461           parent is made visible.
462         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
463           methods, since the visibility of the scrollbars can be changed from
464           several places, not only from AutoScroll.
465           [Fixes #81179]
466
467 2007-03-19  Jackson Harper  <jackson@ximian.com>
468
469         * RichTextBox.cs: Enable shortcuts by default.
470         * TextBoxBase.cs: Add conditional shortcuts.  
471
472 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
473
474         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
475
476 2007-03-19  Chris Toshok  <toshok@ximian.com>
477
478         [ Fixes bug #80604]
479         
480         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
481         swallow the message we're waiting on, instead of delivering it, as
482         this is only used for the WM_SHOWWINDOW raised from
483         MapWindow/UnmapWindow, and the message needs to be generated
484         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
485         before doing the Map/Unmap.  Also make sure that the Hwnd is still
486         alive after the message has been handled.
487
488         *before* the window is shown.
489
490         * Control.cs (CreateControl): guard a few more things inside the
491         if (!is_created) block, as we might end up being called again -
492         yay .net.
493         (WmShowWindow): call CreateControl if we're showing the control.
494
495 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
496
497         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
498           controls without a handle if they have any parent with a handle. In
499           Dispose add a check whether the handle is created or not before
500           calling BeginInvoke, this removes the need of the extra disposing
501           parameter (which was bogus anyway since it didn't prevent the
502           invoke from happening, it only skipped the check for an existing
503           handle, meaning that the invoke would call on an inexistent
504           handle).
505
506 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
507
508         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
509         appears in taskbar.
510
511 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
512
513         * MessageBox.cs:
514         - Fixed a problem that dont show help button for messages with 3 buttons.
515         - Refactory button size and position calculations, now dont use fixed 
516         values, also fixed button sizes (#80043) and form's border space.
517         - AddButton method created, now all other AddButton methods call this one.
518         - Some other source code cosmetic changes.
519
520 2007-03-18  Jackson Harper  <jackson@ximian.com>
521
522         * RichTextBox.cs: Don't do this all fonts must match check if
523         there is only one char selected.
524
525 2007-03-18  Jackson Harper  <jackson@ximian.com>
526
527         * TreeView.cs: ScrollWindow works properly now, so we don't need
528         to screw around with the scroll area.  This fixes some artifacts
529         when expanding and collapsing.
530
531 2007-03-18  Jackson Harper  <jackson@ximian.com>
532
533         * TextBoxBase.cs: Allow updating the selection position when the
534         cursor is outside the textarea, but we have a capture.
535         * TextControl.cs: A special case for when the cursor is outside
536         the bounds of the TB.
537         
538 2007-03-18  Jackson Harper  <jackson@ximian.com>
539
540         * TextBoxBase.cs: Remove image pasting code for now.  There is no
541         way to get an image on the clipboard right now anyways.
542         * TextControl.cs:
543         * RichTextBox.cs: Use the new RTF Picture class for pictures.
544
545 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
546
547         * MessageBox.cs:
548         - Set window properties in constructor intead of on CreateParams.
549         - Remove topmost from Window ExStyle.
550         - Set ShowInTaskbar to false.
551         - Set form border to FixedDialog.
552         - Some cosmetic changes and remove unneeded comments.
553         - It fixes itens 2,3 and 4 of bug #80043.
554
555 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
556
557         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
558         none was explicitly set. Fixes part of bug #79949.
559
560 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
561
562         * ToolStripComboBox.cs: Add AutoComplete*.
563
564 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
565
566         * ToolStripComboBox.cs: Add FlatStyle.
567
568 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
569
570         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
571         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
572
573 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
574
575         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
576           CheckBox.cs, RadioButton.cs, BindingSource.cs,
577           DataGridColumnStyle.cs: Remove warnings.
578
579 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
580
581         * Menu.cs: MergeMenu: Check menu argument for null before looping over
582           it.
583         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
584           visibility of mdi child forms. FormSizeChangedHandler: update the
585           maximized size if size has changed while maximized.
586         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
587           creating the handle.
588         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
589           avoid creating the handle if not created.
590         * XplatUI.cs: Update debug output.
591         * XplatUIStructs.cs: Added ToString's for a couple of structs.
592
593 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
594
595         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
596         ProcessCmdKey().
597         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
598         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
599         Implement keyboard shortcuts.
600
601 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
602
603         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
604         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
605         ColorDialog and all derived classes.
606
607 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
608
609         [ Fixes bug #79828 ]
610
611         * ToolBar.cs:
612         - Rename ToolBarButtonInfor to ToolBarItem.
613         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
614         - Maintain an array of ToolBarItem, used instead of ToolBarButton
615         collection to be able add same button more than one time on a toolbar.
616         - Refactory all properties and methods to use ToolBarItem. 
617
618         * ToolBarButton.cs: 
619         - Remove all propeties and methods that is now in ToolBarItem.
620         - Rectangle propery now gets the rectangle from first ToolBarItem to
621         mimic win32 behavior.
622         - Size calculation and layout methods also removed.
623
624         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
625         ToolBarItem instead of ToolBarButton to right drawing buttons when
626         same button/separator was added more than one time to ToolBar.
627
628         * ThemeNice.cs: Same as above. 
629
630 2007-03-15  Andreia Gaita  <avidigal@novell.com>
631
632         * XplatUIX11.cs: Fire extra MouseMove events right after
633         MouseDown and MouseUp, emulating win32's <censored> behaviour
634         for apps that rely on it.
635
636 2007-03-15  Jackson Harper  <jackson@ximian.com>
637
638         * TextControl.cs:
639         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
640         it is drawn on the controls client window and there is no NC
641         area.
642         - Set the background color to gray on 2.0 when we are readonly.
643
644 2007-03-15  Chris Toshok  <toshok@ximian.com>
645
646         [ Fixes bug #81144 ]
647         
648         * XplatUIX11.cs: implement VirtualScreen independently of
649         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
650         property.
651
652 2007-03-15  Chris Toshok  <toshok@ximian.com>
653
654         * Hwnd.cs: add an internal field for the cached_window_state.
655
656         * XplatUIX11.cs: cache the window state, invalidating the cache
657         (and thus re-querying the X server) only when we see an update to
658         the _NET_WM_STATE property.
659
660 2007-03-15  Chris Toshok  <toshok@ximian.com>
661
662         * BindingSource.cs: get a lot of the unit tests working.
663
664 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
665
666         * Control.cs: Modify UpdateStyles to store distances when bounds >=
667         0 instead of just bounds > 0.  [Fixes bug #80912]
668
669 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
670
671         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
672         and methods.
673
674 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
675         
676         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
677         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
678         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
679         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
680
681 2007-03-15  Chris Toshok  <toshok@ximian.com>
682
683         [ Fixes #81101 ]
684         
685         * Control.cs: add Ivan's fix for 81101, with a slight modification
686         - you can set control.Target to null.
687
688 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
689
690         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
691         HideDropDown, use Hide instead to prevent an NRE.
692         [Fixes bug #81147]
693
694 2007-03-14  Jackson Harper  <jackson@ximian.com>
695
696         * TextBoxBase.cs: Mess with the creation stuff a little. We need
697         to calculate the document before the handle is created, in some
698         cases. (Actually just one case).
699
700 2007-03-14  Jackson Harper  <jackson@ximian.com>
701
702         * TextBoxBase.cs: Need to display the caret after letting the base
703         wndproc handle the focus methods, because the caret display
704         methods check the focus state.
705         - Try to display the caret after updating it's position with SelectWord.
706         - Don't need to do an immediate update on this recalc, since there
707         will be an invalidate anyways.
708
709 2007-03-14  Jackson Harper  <jackson@ximian.com>
710
711         * TreeView.cs: Some workarounds so that we can match event order a
712         little better.
713
714 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
715
716         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
717         #80803. Avoid NullReferenceException when Control does not have
718         parent. Fixed different blinkstyle issues. Only subscribe to Tick
719         event a single time. Only draw error icon when control is created and
720         visible. Fixes failing unit tests.
721
722 2007-03-14  Andreia Gaita  <avidigal@novell.com>
723
724         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
725         Selecting events. Fire Leave and Enter events when changing tabs.
726
727 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
728
729         * TreeView.cs: Add TreeViewNodeSorter.
730         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
731
732 2007-03-14  Chris Toshok  <toshok@ximian.com>
733
734         * Form.cs: go ahead and remove the RecreateHandles that jpobst
735         removed earlier and I had him add back it.  It turns out metacity
736         *does* in fact handle the MOTIF_WM_HINTS property changing, it
737         just doesn't redraw the window titlebar until you resize the
738         window.  This also means we aren't recreating the entire window
739         hierarchy on X when you change this property.  And it looks better
740         on windows, too.
741
742 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
743
744         * ListViewItem.cs:
745         * ListView.cs: Collecting selection information
746         is now done in SelectedIndexCollection rather than in
747         SelectedListViewItemCollection. This is done so we can
748         have the selection information code in one single place
749         (virtual mode selection information entirely depends on
750         SelectedIndexCollection).
751
752 2007-03-13  Miguel de Icaza  <miguel@novell.com>
753
754         * ErrorProvider.cs: Add stubs for ISupportInitialize
755
756 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
757
758         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
759         in the right order with the right values, from the Checked property, 
760         just as MS does (instead of triggering them from ListView).
761
762         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
763
764 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
765
766         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
767         the correct handler in OnItemCheck method (ItemCheckEventHandler 
768         instead of EventHandler). This used to throw an InvalidCastException.
769
770 2007-03-13  Jackson Harper  <jackson@ximian.com>
771
772         * TextBoxBase.cs: Calculate the document before the handle is
773         created, so there isn't an extra invalidate called.
774
775 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
776
777         * Form.cs: Don't set owner in ShowDialog until we are sure
778         that we aren't going to throw an exception.  [Fixes bug #80773]
779
780 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
781
782         * TreeView.cs: Make it compile.
783
784 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
785
786         * Control.cs: Another place we don't call SizeFromClientSize.
787         * Form.cs: Another place we don't call SizeFromClientSize.
788         [Fixes bug #81125]
789
790 2007-03-12  Jackson Harper  <jackson@ximian.com>
791
792         * TreeView.cs: Basically emulating some strangness here with
793         exanding nodes and setting node positions when windows aren't
794         created.
795         - Also attempting to walk the node tree less than previously, and
796         just use visible order calculations for determining offsets.
797         - oops made scrolling backwards.
798         * TreeNode.cs: We need to start nodes with a zero visible order,
799         because the order calcs are based on the first nodes order.
800
801 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
802
803         * Form.cs: Don't exit the program if RecreateHandle is called on
804         the main form.
805
806 2007-03-12  Chris Toshok  <toshok@ximian.com>
807
808         * XEventQueue.cs: remove the use of PostQuitState.
809
810         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
811         WM_QUIT message in GetMessage, return false (and if we're in the
812         nested WaitForHwndMessage, repost the WM_QUIT message).
813
814 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
815
816         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
817         or the MaximizeBox properties.  [Part of bug #80640]
818
819 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
820
821         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
822         no links.
823
824 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
825
826         * ToolStripItem.cs: Fix some tests I broke by checking Visible
827         instead of visible.
828
829 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
830
831         * FileDialog.cs: Use text of File name combobox to determine what
832         files the user selected. Added tokenizer to parse the file names.
833         Fixes bug #81123.
834
835 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
836
837         * Control.cs: We can't call SizeFromClientSize in the constructor,
838         but we still need to do the same work, so make an internal version.
839         [Fixes bug #80621]
840
841 2007-03-12  Jackson Harper  <jackson@ximian.com>
842
843         * TreeView.cs:
844         * TreeNode.cs:
845         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
846         IsExpanded.
847
848 2007-03-12  Jackson Harper  <jackson@ximian.com>
849
850         * TextBoxBase.cs: Now that the handles are being created a little
851         later, we need to make sure that the document is recalculated when
852         the handle is created.
853
854 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
855
856         * Theme.cs: GetLinkFont abstract method added.
857         
858         * LinkLabel.cs: 
859         - Remove CalcTrimRectangle, no longer needed.
860         - Factor also remove, position issues must be fixed in libgdiplus.
861         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
862         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
863         care about font used to draw links.
864         - Set TabStop to true when control is "Selectable", control is selectable
865         when have one or more links. Fixes #80501 (test case is also added).
866         - Set the LinkArea values after links change, LinkArea values must be
867         based in first link position and size, a test case was created.
868         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
869         the attribute must be true LinkArea.Length > 0. The same was applied to
870         TabStop.
871         
872         * ThemeWin32Classic.cs: 
873         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
874         in draw method.
875         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
876         color change.
877         - Draw focus rectangle for every parts focused, including parts that 
878         is on another line, its because regions returns various rectangles
879         and not only one. Needed to mimic W32 look.
880         - Uses Graphics.Clip to delimite region painted, it mean that now 
881         complete text is passed to DrawString, with this we solve layout
882         issues without create another text renderer.
883         - Uses Region.Intersect to fix some flickers problems, now only needed
884         parts will redrawed.
885         - This changes fixes #79614 and some other unreported issues, on Linux 
886         some layout problems still remain, the problem is under 
887         MeasureCharacterRanges but it is an libgdiplus bug.
888
889 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
890
891         * TextBox.cs: Set for foreground color.
892         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
893         this is already done in Control.
894
895 2007-03-10  Jackson Harper  <jackson@ximian.com>
896
897         * TextBox.cs: Set the background color, but reset the
898         backcolor_set flag which is just for the user setting the
899         background color.
900
901 2007-03-09  Chris Toshok  <toshok@ximian.com>
902
903         * Control.cs: really remove the call to XplatUI.SetVisible from
904         CreateHandle(), like I said I did when I merged the branch.
905
906         * BindingSource.cs: implement some more of this stuff.
907
908 2007-03-09  Jackson Harper  <jackson@ximian.com>
909
910         * TextBox.cs: Don't explicitly set our background colors.
911         * TextControl.cs:
912         * TextBoxBase.cs: Draw readonly text.
913         - Need to invalidate when backcolor or readonly are changed.
914         
915 2007-03-09  Jackson Harper  <jackson@ximian.com>
916
917         * TextBoxBase.cs: Don't set the forecolor until the handle is
918         created.
919         - Do not raise OnPaint, and removed some old debug code.
920
921 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
922
923         * ScrollableControl.cs: Fix mouse wheel scrolling.
924
925 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
926
927         * Control.cs: Wire up MouseDoubleClick event.
928
929 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
930
931         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
932         top or bottom.
933         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
934         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
935         item is added.  This logic was moved to ToolStrip.OnItemAdded.
936         [Fixes bug #81090]
937
938 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
939
940         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
941
942 2007-03-08  Jackson Harper  <jackson@ximian.com>
943
944         * TreeView.cs: Show the correct image for selected node (this used
945         to work, not sure how the code got deleted). Also implemented 2.0 feature
946         SelectedImageKey.
947
948 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
949
950         * ListView.cs:
951         * ListViewItem.cs: Cache index in items when retrieving them
952         in VirtualMode.
953
954 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
955
956         * ToolStripItem.cs: Don't return the explicit_size if we are using 
957         AutoSize.  Fixes invalidation issue when user has explicitly set a
958         size and has AutoSize = true.
959
960 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
961
962         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
963
964 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
965
966         * DataGridView.cs: Remove event handler from DataView when a
967         DataTable is used as DataSource.
968
969 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
970
971         * Control.cs: Create internal setter for client_size to allow it to be
972         set without triggering resizing code.
973         * Form.cs: Calculate client_size in constructor, only change client_size
974         in FormBorderStyle property if Handle has been created.
975         [Fixes #80574, #80791]
976
977 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
978
979         * SystemInformation.cs: Add TerminalServerSession.
980
981 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
982
983         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
984         TreeView code.
985
986 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
987
988         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
989         Handle before we were supposed to.  Now checks ActivateOnShow property
990         in Control.
991         * Control.cs: Add internal ActivateOnShow property.
992         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
993         for ActivateOnShow.
994         * Hwnd.cs Remove no longer needed no_activate field.
995
996 2007-03-07  Jackson Harper  <jackson@ximian.com>
997
998         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
999         2.0 properties
1000         * DrawTreeNodeEventHandler.cs: Add
1001         * DrawTreeNodeEventArgs.cs: Correct default value.
1002         
1003 2007-03-07  Chris Toshok  <toshok@ximian.com>
1004
1005         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
1006         to be called before NativeWindow.WndProc.  Put the HwndCreating
1007         magic there to hook up our Hwnd's to handles.
1008
1009 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
1010
1011         * DataGridView.cs: Comment out debug code.
1012
1013 2007-03-07  Chris Toshok  <toshok@ximian.com>
1014
1015         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
1016         to make the rest of the world happy]
1017
1018         * Control.cs (CreateHandle): there's no need to call
1019         XplatUI.SetVisible here, it's effectively done by
1020         XplatUI.CreateWindow on X now, and always was on windows.
1021
1022         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
1023         shortcircuit out of the loop if we have a message loop running on
1024         this thread.
1025
1026         [Changelog from merge]
1027
1028         2007-03-05  Chris Toshok  <toshok@ximian.com>
1029
1030                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
1031                 causes handle creation.
1032
1033         2007-02-28  Chris Toshok  <toshok@ximian.com>
1034
1035                 * ApplicationContext.cs: Add a flag to make sure we only raise the
1036                 ThreadExit event once (ExitThreadCore can be indirectly called
1037                 from a few places.)  I don't like the additional flag, but it
1038                 makes the event ordering/count correct.
1039
1040                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
1041                 without locking the collection.  An enumerator doesn't give us any
1042                 protection from modification anyway.  Lock the thread hash and
1043                 replace the complicated enumerator loop with a foreach.
1044                 (Application.CloseForms): make internal so it can be called from
1045                 ApplicationContext.  This should probably be moved to MWFThread.
1046                 (Application.ExitThread): don't call MWFThread.Current.Exit()
1047                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
1048                 when the runloop exits (in response to WM_QUIT.)
1049                 (Application.RunLoop): add a comment (and check) for
1050                 context.MainForm being null after setting context.MainForm.Visible
1051                 = true.  This is because you're perfectly free to dispose of a
1052                 form in VisibilityChanged.  Chalk this up to another case where we
1053                 need to synchronously generate WM_ACTIVATE from Control.Show.
1054                 Also, add handling for WM_QUIT here so we'll exit the loop.
1055                 
1056                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
1057                 fact that we don't wait if we're only unmapping the whole_window
1058                 makes me a bit nervous, but it doesn't seem to cause any problems
1059                 yet.
1060
1061                 also, add a comment about the stupid, broken and wrong resetting
1062                 of PostQuitState to false in GetMessage().
1063
1064                 In PostQuitMessage, we need to add a WM_QUIT message to the
1065                 thread's queue.  We use the FosterParent to get the right
1066                 handle/hwnd/queue.
1067
1068                 Lastly, in SetVisible, we need to unmap both windows, since the
1069                 waiting only happens when we're unmapping the client window.  So
1070                 now, the *only* time we unmap just the whole_window is in the hack
1071                 for resizing a control to 0,0.
1072                 
1073         2007-02-21  Chris Toshok  <toshok@ximian.com>
1074
1075                 * Application.cs (CloseForms): rewrite this so that we don't
1076                 modify the list while we're traversing it.
1077
1078         2007-02-20  Chris Toshok  <toshok@ximian.com>
1079
1080                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
1081                 of OnHandleCreated.
1082                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
1083                 handle is created.  otherwise we'll create it here.
1084                 (VerticalScrollEvent): same here.
1085
1086                 * Application.cs (CloseForms): call Form.Dispose, don't post
1087                 WM_CLOSE_INTERNAL.
1088
1089                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
1090                 here. Application should Dispose() of the Form's.
1091
1092                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
1093                 WM_DESTROY as well.
1094                 (MapWindow,UnmapWindow): only actually do the waiting for
1095                 SHOWWINDOW if the control we're dealing with is a Form.
1096                 (CreateWindow): if the control isn't a form, SendMessage
1097                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
1098
1099                 * Control.cs (SetVisibleCore): always use is_visible here, not
1100                 value.  If we use value, we can end up re-setting something
1101                 visible if, for instance, you do Control.Hide() in a delegate
1102                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
1103
1104         2007-02-20  Chris Toshok  <toshok@ximian.com>
1105
1106                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
1107                 the message we need.  PeekMessage returning false should not be a
1108                 condition under which we exit the loop.
1109
1110         2007-02-15  Chris Toshok  <toshok@ximian.com>
1111
1112                 * Control.cs (Refresh): only refresh if we've got a handle and are
1113                 visible.
1114                 (CreateAccessibilityInstance): CreateControl() here.
1115                 (UpdateChildrenZOrder): complicate the code loop even more by
1116                 taking into account controls that haven't had their handle
1117                 created, and those that aren't visible.  But on the flip side,
1118                 simplify the code by splitting it into two loops.  one which
1119                 builds up the list of child controls we're interested in, and the
1120                 other that sets the z order of those children.
1121
1122         2007-02-14  Chris Toshok  <toshok@ximian.com>
1123
1124                 * Control.cs: Control.AccessibilityObject causes the control to be
1125                 created, not just the handle.
1126
1127         2007-02-14  Chris Toshok  <toshok@ximian.com>
1128
1129                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
1130                 problem on X where a window might have its handle created (and be
1131                 visible) while the window is unmapped.  calling XConfigureWindow
1132                 on an unmapped window is bad, and generates X errors.
1133
1134         2007-02-13  Chris Toshok  <toshok@ximian.com>
1135
1136                 * Control.cs (CreateHandle): don't loop over our children setting
1137                 their parent here.  do it when in WndProc when we're shown.
1138                 (UpdateChildrenZOrder): make this internal so we can call it from
1139                 ScrollableControl.
1140                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
1141                 creating its handle.  Also, remove the calls to PerformLayout from
1142                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
1143                 OnVisibleChanged only seems to be called directly here for the
1144                 toplevel control.  It's propagated down the window hierarchy by
1145                 calls to child.OnParentVisibleChanged.
1146                 (OnVisibleChanged): don't do layout here - it's done (oddly
1147                 enough, according to a glance at stack traces on ms.net..) in
1148                 ScrollableControl.
1149                 
1150                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
1151                 z order of our children before calling PerformLayout.
1152
1153         2007-02-12  Chris Toshok  <toshok@ximian.com>
1154
1155                 [big change, fixes #80020]
1156                 
1157                 * AccessibleObject.cs: we need to make owner internal again to fix
1158                 some of ControlAccessibleObject.
1159
1160                 * Control.cs: lots of changes here.  add support for WM_CREATE,
1161                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
1162                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
1163                 we create child controls.  leave the MonoTODO's for the
1164                 accessibility calls, but fix the exceptions so the tests pass.
1165
1166                 Add the InvalidOperationExceptions to Invoke methods, and remove a
1167                 couple of InvokeInternal methods we aren't using.
1168                 
1169                 Also, add a couple of CreateHandle calls in places where we know
1170                 the handles are being created but our code doesn't reference
1171                 .Handle.
1172
1173                 Make SetVisibleCore call OnVisibleChange if the handle isn't
1174                 created.  If the handle is created, we rely on XplatUI.SetVisible
1175                 generating the event synchronously.
1176                 
1177                 Lastly, make sure we don't use this.Handle inside CreateHandle,
1178                 because we can call back into client (and that code can dispose of
1179                 the control).
1180
1181                 * XplatUIStructs.cs: misc/cleanup.
1182
1183                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
1184                 although we don't populate the wParam properly.
1185                 (CreateWindow): generate WM_CREATE.
1186                 (MapWindow,UnmapWindow): make these calls synchronous, at great
1187                 performance expense (particularly in the unmap case), to match
1188                 win32 behavior.
1189
1190                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
1191                 to call it.
1192                 (set_MdiParent): don't recreate the handle unless it's been
1193                 created already.
1194                 
1195                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
1196                 it's created.
1197
1198                 * NativeWindow.cs: this is probably the weirdest part of the
1199                 patch.  We need a way to link up the window being created to the
1200                 WM_CREATE message.  Since we can only be creating one window at a
1201                 time on a given thread, we keep track of a per-thread reference so
1202                 we can dispatch it properly.  We also need to keep track of the
1203                 Hwnd currently being created so that the win32 backend doesn't
1204                 have problems.
1205                 
1206                 * XplatUIWin32.cs: a similar change to the one we made in
1207                 NativeWindow.cs.
1208
1209 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
1210
1211         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
1212         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
1213         to draw the menu shortcut string.
1214
1215 2007-03-07  Jackson Harper  <jackson@ximian.com>
1216
1217         * TreeNode.cs: Add the 2.0 collapse method.
1218
1219 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1220
1221         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
1222
1223 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1224
1225         * DataGridView.cs: Change DataSource will clear column and row
1226         lists. Call Invalidate() to reflect DataSource change.
1227
1228 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1229
1230         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
1231         and a new row is added to it.
1232
1233 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
1234
1235         * DataGridView.cs: Add columns when DataSource is en empty list but
1236         is a System.Data.DataView (from a System.Data.DataTable).
1237
1238 2007-03-06  Andreia Gaita  <avidigal@novell.com>
1239
1240         * Label.cs: Implement AutoEllipsis (2.0)
1241
1242 2007-03-06  Jackson Harper  <jackson@ximian.com>
1243
1244         * TreeView.cs: Implement 2.0 TopNode setter property.
1245         - Use a local var instead of the skipped_nodes field for computing
1246         how many nodes to skip.  Otherwise we won't scroll because the
1247         valuechanged handler checks if skipped_nodes is equal to the new
1248         value.
1249         - Implement 2.0 Sort method.
1250         - Add useless 2.0 DoubleBuffer property
1251         - Implement 2.0 LineColors property.  Lets you change the color of
1252         the lines in the tree. Terribly useful for creating non cohesive
1253         desktops.
1254         - Implement 2.0 image key feature.
1255
1256 2007-03-06  Jackson Harper  <jackson@ximian.com>
1257
1258         * TreeView.cs: We can't get the bounds of the nodes before raising
1259         the AfterSelect event, because that event could change the node's
1260         bounds (scrolling, font change, etc).
1261
1262 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1263
1264         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
1265         * Form.cs: Don't recreate handle when creating FormWindowManager, just
1266           update window styles. In CreateParams us VisibleInternal instead of
1267           VIsible to get the actual visible flag set for this form.
1268         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
1269           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
1270           handle the case when the form is already maximized, in which case
1271           it should be restored. Fixes #81043.
1272
1273 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1274
1275         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
1276
1277 2007-03-05  Jackson Harper  <jackson@ximian.com>
1278
1279         * TreeViewHitTestInfo.cs: implement.
1280
1281 2007-03-05  Jackson Harper  <jackson@ximian.com>
1282
1283         * InternalWindowManager.cs: class status fix.
1284
1285 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1286
1287         * InternalWindowManager.cs: All windows that have a parent
1288         are confined to their parent when they're being moved.
1289         Fixes #80822.
1290
1291 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
1292
1293         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
1294         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
1295
1296 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1297
1298         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
1299           buttons invisible before deciding which ones should be visible
1300           (fixes minimize/maximize buttons showing up in toolwindows). Remove
1301           an unused variable.
1302         * InternalWindowManager.cs: Remove warning.
1303
1304 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1305
1306         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
1307         to throw an InvalidOperationException is virtual mode is being used.
1308
1309 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1310
1311         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
1312         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
1313         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
1314         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
1315         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
1316         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
1317
1318 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1319
1320         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
1321           driver.KeyboardDelay from XplatUI.KeyboardDelay 
1322         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
1323           (patch by Sergey Volk)
1324
1325 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1326
1327         * ToolWindowManager.cs: Added, contains logic for
1328           tool windows.
1329         * CreateParams.cs: Add a few helper methods and an
1330           internal variable to know which control the CreateParams belongs
1331           to.
1332         * Control.cs: Call Form.ChangingParent when the
1333           parent is about to be changed.
1334         * XplatUIX11.cs: DeriveStyles (): Set
1335           caption_height for all windows that have captions and are children.
1336           Update to use ToolWindowManager instead of InternalWindowManager
1337           for ToolWindows.
1338         * XplatUIWin32.cs: Set fake window styles for all
1339           windows that have window managers.
1340         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
1341           now duplicated for mdi windows when they are
1342           maximized, first for the buttons the window itself has, then for
1343           the buttons that appear in the menu bar. Makes things a little
1344           easier). Updated UpdateWindowDecorations, SetWindowState and the
1345           mouse eventhandlers accordingly.
1346         * Form.cs: Add ChangingParent (), contains the
1347           logic of what should happen when the parent changes. In MdiParent
1348           don't set things that ChangingParent () is doing. When handling
1349           WM_CLOSE, we can close the form if there are any other modal forms
1350           and the current form is a descendent of the modal form.
1351         * InternalWindowManager.cs: A lot of refactoring,
1352           the title buttons are now extracted to a separate container class
1353           that takes care of all button code (clicks, tooltips, etc). Moved
1354           Iconic|Maximized|Normal Bounds properties to this class from
1355           MdiWindowManager, so that the window state logic can succeed for
1356           other than mdi wm's. Implemented general window state change logic.
1357           Moved CreateButtons to ThemeWin32Classic, since the theme might
1358           override which buttons are available when as well as the exact
1359           location.
1360         * FormWindowManager.cs: Added, contains logic for
1361           normal forms.
1362         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
1363           which buttons go where (and if they are at all visible). 
1364           Removed special handling of maximized windows, since they aren't special. 
1365           In DrawManagedWindowDecorations don't try to draw the text if it is
1366           empty.
1367         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
1368           use whatever the wm gives us.
1369
1370 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
1371
1372         * ButtonBase.cs: Add 2.0 properties.
1373         * Button.cs: Override Draw for 2.0.
1374         * Control.cs: Add Entered and Selected properties.
1375         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
1376         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
1377         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
1378         buttons.
1379         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
1380
1381 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1382
1383         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
1384
1385 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
1386
1387         * XplatUIWin32.cs: Register a new class with Windows each time we get
1388         a new ClassStyle.  [Fixes bugs #79432, #80817]
1389         * Controls.cs: Set the correct ClassStyle in CreateParams.
1390         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
1391
1392 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
1393
1394         * ListView.cs: Add fireEvent argument to ReorderColumn since the
1395         ColumnReordered event must not be signaled when modifying DisplayIndex
1396         of a ColumnHeader. Added internal ReorderColumns method which takes
1397         care of drawing, and updating the internal DisplayIndex of the
1398         ColumnHeader. Added AddColumn method which is invoked from
1399         ColumnHeaderCollection when adding or inserting columns, and which
1400         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
1401         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
1402         Recalculated dispay indices after removing a ColumnHeader.
1403         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
1404         match MS. Allows last display index to be returned after ListView
1405         is disposed. Update actual location of ColumnHeader when DisplayIndex
1406         is modified.
1407
1408 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
1409
1410         * LinkLabel.cs: Improve CalcTrimRectangle.
1411         
1412         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
1413
1414 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1415
1416         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
1417         get rectangle as a result value.
1418
1419 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
1420
1421         * LinkLabel.cs: Theres some diferences between rectangle return from 
1422         MeasureCharacterRanges and the area used for DrawString to fix this 
1423         CalcMeasurementFactor method was created, it calcules the diferences
1424         to be use later to adjust rectangle in draw operations. Fixes #80473.
1425         
1426         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
1427         to adjust draw rectangle.
1428
1429 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1430
1431         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
1432         text and some other changes to reduce and optimize source code.
1433
1434 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1435
1436         * RadioButton.cs: Implement 2.0 event.
1437         * RelatedImageListAttribute.cs: Implement new class.
1438
1439 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
1440
1441         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
1442
1443 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
1444
1445         * CheckBox.cs: Implement 2.0 functionality.
1446
1447 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1448
1449         * ListView.cs: Refactor Add and AddRange methods of
1450         ListViewItemCollection, to not update the ListView
1451         everytime an item is added in AddRange. Also move the update
1452         code to a new CollectionChanged method, and call it
1453         from other methods that need it as well (this should also fix some
1454         bugs when Sorting is used).
1455
1456 2007-02-27  Jackson Harper  <jackson@ximian.com>
1457
1458         * TextControl.cs: Try to never let the caret stay in a non-text
1459         tag.
1460         * TextBoxBase.cs: Update the caret.
1461
1462 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
1463
1464         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
1465         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
1466         delete POINT structure, duplicate of one in XplatUIStructs.
1467         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
1468
1469 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
1470
1471         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
1472         edit box since otherwise the Label would immediately be set (even if
1473         the user did not modify the label). In OnKeyDown set Handled to true
1474         if Return or Escape was pressed. In ColumnHeaderCollection unlink
1475         columns that are to be removed. In ListViewItemCollection unlink items
1476         that are to be removed.
1477
1478 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
1479
1480         * TextRenderer.cs: If we set a GDI clip region, we need to clear
1481         it when we are done.  [Fixes bug #80949]
1482
1483 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1484
1485         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
1486
1487 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1488
1489         * ListView.cs: I forgot to commit the changes for ListView 
1490         in my previous patch.
1491
1492 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1493
1494         * Clipboard.cs: Partially implement an overload of SetDataObject.
1495         * Form.cs: Implement ShowWithoutActivation.
1496         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
1497
1498 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1499
1500         This is a first set of changes to make the Virtual mode works,
1501         by avoiding the retrieval of ListViewItem instances until
1502         draw time.
1503
1504         * ListView.cs: Store item position in the ListView instead of the
1505         ListViewItem, this way we don't request the Bounds property of
1506         ListViewItem inside the ListView calculations, as well as cache the item
1507         size in item_size field. Store indexes instead of ListViewItem
1508         instances in the matrix used by icon view. Add a ItemMatrixLocation
1509         struct to hold the row and col info of the matrix info.
1510
1511         * ListViewItem.cs: Don't store the location anymore, and only cache
1512         the rectangles for GetBounds. Use the ListView.GetItemLocation
1513         method to retrieve the actual location.
1514
1515 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1516
1517         * TextRenderer.cs: Add clipping support, thanks to George.
1518         [Fixes bug #80949]
1519
1520 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1521
1522         * ListViewItem.cs: Cancel label edit when item is removed from 
1523         ListView.
1524         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
1525         event before the edit textbox is displayed.  Added CancelEdit method
1526         which is used end to editing while ignoring the value set by the
1527         user. In EndEdit, set focus to ListView to avoid losing focus to
1528         other controls. In ListViewItemCollection.Clear, cancel editing of
1529         any of the items.  In Remove, cancel editing of item being removed.
1530         Avoid udplicate code by modifing RemoveAt to invoke Remove.
1531
1532 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1533
1534         * FileDialog.cs: Update FSEntry when move is successful. Fixes
1535         bug #80948.  
1536
1537 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1538
1539         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
1540         compatible with non X11 systems. Fixes #80901.
1541
1542 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
1543
1544         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
1545         whether the item should be unselected and reselect. We do no want this
1546         when we're starting to edit the label. Do not fire the 
1547         SelectedIndexChanged event from ListView when its already been fired
1548         by modifying ListViewItem.Selected. Fixes bug #80943.
1549
1550 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1551
1552         * TextRenderer.cs: Previos commit logic was backwards.
1553
1554 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
1555
1556         * TextRenderer.cs: Don't add padding on MeasureText if we were
1557         sent the NoPadding flag.
1558
1559 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1560
1561         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
1562         after DrawButton. To prevent image overlaps button borders SetClip and 
1563         ResetClip added before and after draw image. Fixes #79129.
1564
1565 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
1566
1567         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
1568         window size, it fix problem when you run under win32 that theres
1569         Size diferent than ClientSize. Also fix controls size and positions
1570         to mimic Win32. Fixes #80837.
1571
1572 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
1573
1574         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
1575         menu area to fix some problems for non X11 systems. Fixes #80613.
1576
1577 2007-02-22  Jackson Harper  <jackson@ximian.com>
1578
1579         * TreeNode.cs: When a node is expanded, set its is_expanded flag
1580         even if it doesn't have any children.
1581
1582 2007-02-22  Jackson Harper  <jackson@ximian.com>
1583
1584         * TreeView.cs: Calculate the top node 'on the fly', this
1585         eliminates issues where you need to click on the tree before
1586         scrolling it to get the top node computed correctly.
1587         * TreeNodeCollection.cs: We don't need to mess with the top node
1588         anymore.
1589
1590 2007-02-22  Jackson Harper  <jackson@ximian.com>
1591
1592         * DataGridViewRow.cs: Fix typo so height can actually be set.
1593         Patch by Peter Grimm.
1594
1595 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1596
1597         * FileDialog.cs: Fixed support for renaming files and directories.
1598         * ListView.cs: Do not lose focus when edit is canceled. Process
1599         Escape as regular key (to prevent closing of dialogs).
1600
1601 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1602
1603         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
1604         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
1605
1606 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
1607
1608         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
1609         did not modify label.
1610         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
1611         modified the text. Reset Label when user presses Escape in edit mode.
1612         Move focus to ListView after having cancelled or finished editing the
1613         label.
1614
1615 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
1616
1617         * ComboBox.cs: Removed unnecessary initializations. Marked items field
1618         private. Clear textbox when Text is set to null and SelectedIndex is
1619         already -1.
1620         * FileDialog.cs: Removed unnecessary initializations. Removed 
1621         workarounds for ComboBox bugs that are now fixed. Modified
1622         DefaultExt, InitialDirectory and Title property to change null to
1623         zero-length string in getters. Avoid directly accessing fields.
1624
1625 2007-02-20  Jackson Harper  <jackson@ximian.com>
1626
1627         * TextControl.cs: Remove RecalAlignments call, that was some
1628         debugging leftovers.
1629         - Don't use the line indent when we shouldn't.
1630         * RichTextBox.cs: Add support for paragraph left indents.
1631
1632 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1633
1634         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
1635         Seems like the class status pages doesn't catch params differences.
1636
1637 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
1638
1639         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
1640
1641 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
1642
1643         * ComboBox.cs: Setting Text should have no effect if item text of
1644         selected item exactly matches value. First lookup text using
1645         case-sensitive comparison, and fallback to case-insensitive comparison.
1646         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
1647         allow startIndex to be last index. Changed ArgumentOutOfRangeException
1648         paramname to match MS. Restart from first item if string is not found
1649         after startIndex. Fixed paramname of ArgumentNullException that is
1650         thrown for null value in ObjectCollection.Contains.
1651
1652 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
1653
1654         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
1655
1656 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1657
1658         * ListControl.cs: In SelectedValue use value.Equals to compare for
1659         equality instead of ==, otherwise it will fail for strings.
1660         Fixes #80794.
1661
1662 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1663         
1664         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
1665         since the caret won't show up unless ShowSelection is true. 
1666         Fixes #80795.
1667
1668 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1669
1670         * Application.cs: When disabling all forms but the main form, do not
1671           disable any descendants of the main form (such as mdi children or
1672           other parented forms). Fixes #80822 on Windows.
1673         * Form.cs: If we have a parent, set the WS_CHILD style.
1674         * Control.cs: Update the window styles if the control whose parent has
1675           changed is a form (the WS_CHILD style has to be switched).
1676
1677 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
1678
1679         * XplatUIStructs.cs: MsgUIState structure added.
1680
1681 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1682
1683         * FileDialog.cs: Removed need for separate fileName field. On 2.0
1684         profile, do not check filename(s) for illegal character if filename(s)
1685         were set non-interactively but always check on 1.0 profile. Fixed NRE
1686          in DefaultExt and only strip off first leading dot. Improve exception
1687         message when invalid Filter is set. Do not ignore InitialDirectory if
1688         it does no exist. Store specified Title, and if empty use default
1689         title (depending on type of dialog). Added an internal DialogTitle 
1690         property for retrieving dialog title. Fixed logic of displayed dir to
1691         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
1692         string as its buggy.
1693         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
1694         FileName is a zero-length string (it can never be null). Override 
1695         DialogTitle property to set default title of dialog box.
1696         * SaveFileDialog.cs: Override DialogTitle property to set default
1697         title of dialog box.
1698
1699 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
1700
1701         * FileDialog.cs: Modify default text of filename and filetype labels
1702         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
1703         after we've updated the SelectedIndex. Fixes part of bug #80887.
1704         * SaveFileDialog.cs: Set text of filetype label.
1705
1706 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1707
1708         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
1709         label field. Needed by latest Jackson's fixes for ListView.
1710
1711 2007-02-16  Andreia Gaita  <avidigal@novell.com>
1712
1713         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
1714         print preview images.
1715
1716 2007-02-16  Jackson Harper  <jackson@ximian.com>
1717
1718         * ListView.cs: Make AfterLabelEdit work correctly.
1719         * FileDialog.cs: After changing the name of the folder, we have to
1720         make sure that it is created, or that we pop up an error because
1721         it already exists.
1722
1723 2007-02-16  Jackson Harper  <jackson@ximian.com>
1724
1725         * X11Dnd.cs: Implement aliases on mime handlers, so things like
1726         System.String are mapped to text.
1727         - Handle dataobjects, getting all the possible formats out of them
1728         - We dont need the drag event args before we give feedback. This
1729         allows feedback cursors to be immediate before selections have
1730         been converted.
1731
1732 2007-02-16  Jackson Harper  <jackson@ximian.com>
1733
1734         * TextBoxBase.cs: Modified the method for inserting images to
1735         taking a line and position instead of tag and position.
1736         * RichTextBox.cs: Handle PngBlip data by inserting the png image
1737         into the RTF file.
1738         * TextControl.cs: Allow images to be inserted as the first tag of
1739         a line.
1740         - Fix some off by one issues when we assume the first tag is a
1741         text tag, not an image tag.
1742
1743 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1744
1745         * ListView.cs: Set focus to ListView when ItemControl gets a
1746         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
1747         Fixes part of #80467.
1748
1749 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1750
1751         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
1752           validate Text input (if null or empty string reset Value to default
1753           value). Fixes #80830.
1754
1755 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1756
1757         * ListView.cs: Set owner as null for columns and items when
1758         Dispose is invoked. Fixes #80607.
1759
1760 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
1761
1762         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
1763         showing DropDowns, don't show a Grip when doing Flow layout.
1764         [This fixes the toolbox in PDN 2.72.]
1765         * ToolStripItem.cs: Add Anchor property and some internal properties to
1766         reduces needed changes to FlowLayout.
1767         * ToolStripOverflow.cs: Remove unused variable.
1768         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
1769         use it in the layout calculations.
1770
1771 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1772
1773         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
1774         reported in #79640.
1775         
1776         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
1777         size calculation.
1778
1779 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1780
1781         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
1782         MeasureString format, it can make button very large in some cases, it is
1783         strange but is what win32 do.
1784
1785 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1786
1787         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
1788         size calculation.
1789
1790         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
1791         rendering, the value is based on MenuAccessKeysUnderlined.
1792
1793 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
1794
1795         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
1796         for most themes.
1797         
1798         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
1799         
1800         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
1801         and use MenuAccessKeysUnderlined instead.
1802
1803 2007-02-13  Andreia Gaita  <avidigal@novell.com>
1804
1805         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
1806         A selected control would not get a Focus call if:
1807                 - the default active control of the container is the same as
1808                   the one that was selected
1809                 - we are switching from one container to another
1810         Under these conditions, the container being selected already has
1811         an active_control, which is the same as the one being activated, 
1812         so set_ActiveControl would always return and not send the Focus
1813         call. Fix to check if the currently active control of the container
1814         is actually focused.
1815
1816 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
1817
1818         * StatusStrip.cs: Implement the spring layout.
1819         * ToolStripControlHost.cs: Make sure the hosted control's visibility
1820         always matches the host.
1821         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
1822         and TextAfterImage.
1823
1824 2007-02-13  Andreia Gaita  <avidigal@novell.com>
1825
1826         * Control.cs: Code reorganization only.
1827           - Reorganize the WndProc cases so that each case has it's own handling method, 
1828           to help with the no-line-numbering stack traces.
1829           - Formatting changes (it's vstudio's fault, really :p)
1830
1831 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1832
1833         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
1834           Thread.CurrentUICulture to match DateTimePicker's (and MS)
1835           behaviour.
1836
1837 2007-02-12  Jackson Harper  <jackson@ximian.com>
1838
1839         * RichTextBox.cs:
1840         * TextBox.cs: By default we have a non multiline document
1841         - use the multiline property instead of the internal variable
1842         * TextBoxBase.cs: Treat multiline and non multiline the same in
1843         most places.
1844         - Use the documents multiline flag instead of tracking it ourself
1845         * TextControl.cs: Attempt at getting multiline to match MS
1846         behavior.  Lines now track an offset, which is either their X or Y
1847         offset depending on whether or not we are in multiline mode.
1848         - Update all the methods to understand that lines have an X value.
1849         - Fix crash in Undo::Duplicate when empty lines are deleted.
1850
1851 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1852
1853         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
1854         code moved to properties PreferredHeight and PreferredWidth. It solve the
1855         all problems when preferred sizes must be recalculated. Fixes #80801.
1856
1857 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1858
1859         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
1860         font height when compatible_text_rendering is false. Partially fix #80801.
1861
1862 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1863
1864         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
1865
1866 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1867
1868         * Form.cs: Improved exception messages in ShowDialog.
1869
1870 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1871
1872         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
1873         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
1874         if not set. Fixes bug #80764. Avoid accessing current_settings field
1875         directly.
1876
1877 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
1878
1879         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
1880         false.
1881
1882         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
1883         public in 2.0 and for easy maintenance and dont break compatibility it is 
1884         internal in 1.1.
1885         
1886 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1887
1888         * ToolStripItem.cs: Implement using images from ImageList.
1889
1890 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1891
1892         * DateTimePicker.cs: Change default date-formatting culture from
1893           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
1894           seems to be the way MS does it.
1895
1896 2007-02-08  Andreia Gaita  <avidigal@novell.com>
1897
1898         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
1899         (the 6 was cut off on the right side)
1900
1901 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1902
1903         * Form.cs: Tell MenuStrips to close when the form is clicked.
1904         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
1905         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
1906         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
1907         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
1908         support for Overflow, where items that do not fit are automatically
1909         reparented to a drop down menu.
1910         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
1911         Also: fixes bug #80747.
1912
1913 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1914
1915         * ComboBox.cs: Remove warning (unused code).
1916         * ScrollableControl.cs: Remove warning for 1.1 profile.
1917
1918 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1919
1920         * Form.cs: Remove a warning.
1921
1922 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1923
1924         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
1925           'g' specifier, not documented anywhere, but seems to always show up
1926           as a single space (might have something to do with the DateTime 'g'
1927           specifier, which is the era format, but since DateTimePicker can't
1928           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
1929           won't crash if the format has an unmatched quote. Now shows
1930           single-character formats correctly. Fixes #80744.
1931
1932 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1933
1934         * StatusStrip.cs: Stretch property needs to call base.Stretch,
1935         not this.Stretch to fix stack overflow. [Fixes bug #80760]
1936
1937 2007-02-07  Chris Toshok  <toshok@ximian.com>
1938
1939         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
1940         background color.  it overwrites the background image we've
1941         already painted.  Fixes #80599.
1942
1943 2007-02-07  Chris Toshok  <toshok@ximian.com>
1944
1945         * DataGrid.cs: return immediately from Edit() when there are no
1946         columns.  Fixes #80662.
1947
1948 2007-02-07  Chris Toshok  <toshok@ximian.com>
1949
1950         * MessageBox.cs: fix #80625.  don't always show the Help button in
1951         2.0.  use the displayHelpButton parameter to determine if we
1952         should show it. Also, make the internal show_help field private.
1953
1954 2007-02-07  Chris Toshok  <toshok@ximian.com>
1955
1956         * Control.cs (SetVisibleCore): check in the proposed patch for
1957         80604, and set is_visible before calling CreateControl.
1958
1959 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
1960
1961         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
1962         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
1963         on it.
1964
1965 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
1966
1967         * MenuAPI.cs: hotkey_active internal field added, it is required because
1968         we need to know when hotkeys must be draw, before this change a keystate
1969         Navigating was used but we can have menu in navigating state without
1970         hotkeys. Fixes #80694.
1971         
1972         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
1973
1974 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1975
1976         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
1977           corresponding events and methods to be internal for 1.1 profile and
1978           public for 2.0 profile (required by SizeGrip).
1979         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
1980           implicit control list). Don't set the size nor the location of the
1981           SizeGrip anymore as it's not needed.
1982         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
1983           draw directly on the captured control (fixes #80656). Removed
1984           ShowGrip (it wasn't used anywhere), redraw (always true), added
1985           GetDefaultSize and GetDefaultRectangle to calculate defaults.
1986         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
1987           be called from SizeGrip.
1988
1989 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1990
1991         * Timer.cs: Throw ArgumentException if Interval <= 0.
1992
1993 2007-02-05  Jackson Harper  <jackson@ximian.com>
1994
1995         * TreeView.cs: We need to check scrollbar visibility when window
1996         visibility is updated, because non visible trees don't ever add
1997         scrollbars.
1998         * Cursor.cs: We want the override cursor to be reset to NULL when
1999         we set current cursor to the default cursor.
2000
2001 2007-02-05  Jackson Harper  <jackson@ximian.com>
2002
2003         * TextControl.cs: Don't have crlfs when we are non multiline.
2004         - Consolidate the line position.
2005
2006 2007-02-05  Jackson Harper  <jackson@ximian.com>
2007
2008         * X11Keyboard.cs: BACK+CTRL gets a special char code.
2009
2010 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2011
2012         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
2013           handling LeaveNotify->NotifyUngrab in order to send
2014           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
2015           after calling XUngrabPointer, so we call WindowUngrabbed directly
2016           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
2017         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
2018           MouseCaptureChanged correctly. Also create handles if changing
2019           Capture (matches MS behaviour).
2020
2021 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2022
2023         * SizeGrip.cs: Make the last change 2.0 only.
2024
2025 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2026
2027         * SizeGrip.cs: If resizing and the capture is lost, revert any size
2028           changes to initial size (fixes #80597).
2029
2030 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2031
2032         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
2033
2034 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2035
2036         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
2037           background) and only allow dragging if enabled. This way the
2038           sizegrip can be used to fill the open square that otherwise would
2039           have been shown in the bottom right corner of ScrollableControl
2040           when ScrollableControl is not suppose to support sizing.
2041         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
2042           sizegrip is shown and enabled, and hook up with necessary events.
2043
2044 2007-02-01  Chris Toshok  <toshok@ximian.com>
2045
2046         * DataGridTextBoxColumn.cs: clean up the
2047         GetFormattedString/GetColumnValueAtRow combination of functions.
2048         Also fix UpdateUI, and the initial state of
2049         IsInEditOrNavigateMode.
2050
2051         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
2052         aren't supposed to scroll the textbox here, we're supposed to
2053         scroll the datagrid.
2054
2055 2007-02-01  Chris Toshok  <toshok@ximian.com>
2056
2057         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
2058         setting the position.
2059
2060 2007-02-01  Chris Toshok  <toshok@ximian.com>
2061
2062         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
2063         here, since the most recent focus fixes keep us from generating
2064         the Leave event when our textbox gets focus.
2065         (Edit): we should be passing null for the column style's
2066         instantText parameter.
2067         
2068 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
2069
2070         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
2071         raised.  Fixes menu text/icons not showing up in PDN.
2072
2073 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2074
2075         * Control.cs: Remove code in constructor that makes every
2076         control with WS_CHILD set have initial location -1, -1.
2077
2078 2007-01-31  Jackson Harper  <jackson@ximian.com>
2079
2080         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
2081         XplatUIX11.
2082         * XplatUIX11.cs: Give teh keyboard to teh dnd.
2083
2084 2007-01-31  Jackson Harper  <jackson@ximian.com>
2085
2086         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
2087         - Remove some debug code.
2088
2089 2007-01-31  Jackson Harper  <jackson@ximian.com>
2090
2091         * XplatUIX11.cs: If you set the override cursor during a grab, it
2092         should actually override the grab cursor.  This comes into play
2093         when you are setting custom cursors in a DND feedback method.
2094
2095 2007-01-31  Jackson Harper  <jackson@ximian.com>
2096
2097         * X11Dnd.cs: Add support for handling the QueryContinue and
2098         GiveFeedback events.
2099         - Cancel drag and drop actions when the escape key is clicked.
2100         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
2101         can handle the ESCAPE key.
2102         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
2103         done when dnd events are continued after the button is released.
2104         - Add a new helper method so that dnd can translate key events.
2105
2106 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
2107
2108         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
2109         make it more obvious what is happening.
2110
2111 2007-01-30  Jackson Harper  <jackson@ximian.com>
2112
2113         * XplatUIX11.cs: Don't break when handling button release in drag
2114         and drop operations. We need that BUTTONUP message to get through
2115         so capture is released.
2116         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
2117         this is handled automatically when the mouse is down.
2118
2119 2007-01-30  Jackson Harper  <jackson@ximian.com>
2120
2121         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
2122         is closed, so we need to make sure that we aren't changing the
2123         dialog result when the OK (Open or Save) button has been clicked
2124         and we are closing the window ourselves.  Note we don't need to
2125         worry about the cache being written in this case, because it was
2126         already done in the previous FilOk call.
2127
2128 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2129         
2130         * DateTimePicker.cs: Remove a warning.
2131         * ComboBox.cs: Remove a couple of warnings.
2132
2133 2007-01-29  Chris Toshok  <toshok@ximian.com>
2134
2135         * XplatUIX11.cs: don't crash, and remove the icon if the user has
2136         set one, if SetIcon is passed a null icon.
2137
2138 2007-01-29  Andreia Gaita  <avidigal@novell.com>
2139
2140         * TextBox.cs: Redraw when the password characters changes
2141         * TextControl.cs: Check if textbox has a password char and draw 
2142         a line of password chars instead of the text in the line. LineTag gets 
2143         an extra Draw() method which allows document.Draw to override the text 
2144         that will be drawn. Removes 1024 char limitation on length of passworded 
2145         lines.
2146
2147 2007-01-29  Jackson Harper  <jackson@ximian.com>
2148
2149         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
2150         single chars is not.
2151
2152 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
2153
2154         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
2155         one pixel.  Fix a StackOverflowException caused by an overload wrongly
2156         calling itself.
2157
2158 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
2159
2160         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
2161         also remove ProcessArrowKey and put the code inside ProcessKeys.
2162
2163 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
2164
2165         * PaddingConverter.cs: Added.
2166
2167 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2168         
2169         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
2170         ShowPanels is false (fixes #80600). Only draw up to 127 characters
2171         of text (fixes #80601). For panels clip the text to draw to the
2172         panel (fixes #80603).
2173
2174 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2175
2176         * ComboBox.cs: Fixed implementation of ResetText.
2177
2178 2007-01-25  Jackson Harper  <jackson@ximian.com>
2179
2180         * TextControl.cs: For the last char of a line we need to use the
2181         line size, not that chars width, since it won't actually be
2182         computed since the right side of a char is based on the start of
2183         the left side of the next char, and the next char does not exist.
2184
2185 2007-01-25  Chris Toshok  <toshok@ximian.com>
2186
2187         * Splitter.cs: fix the new unit tests, and reindent some switch
2188         statements.
2189
2190 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2191
2192         * ComboBox.cs: Implemented 2.0 methods and events.
2193         * TextBoxBase.cs: Added OnTextUpdate, so that
2194         ComboBox.ComboTextBox can inform ComboBox of it.
2195
2196 2007-01-25  Jackson Harper  <jackson@ximian.com>
2197
2198         * TextControl.cs: Respect ShowSelection when deciding whether or
2199         not to display the caret, this allows comboboxes to have carets
2200         when the combotextbox does not have focus.
2201
2202 2007-01-25  Jackson Harper  <jackson@ximian.com>
2203
2204         * TextControl.cs: Add a Suspend/Resume for updating, basically the
2205         same as the Suspend/Resume for recalc, except this will do actual
2206         Invalidates.
2207         - New Undo manager, works much like the MS version.
2208         - Implemented Redo
2209         * TextBoxBase.cs: The Cut operation is undoable.
2210
2211 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2212         
2213         * TextBoxBase.cs: Don't antialias text. Makes it look way better
2214         on Windows (no difference on Linux).    
2215
2216 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2217
2218         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
2219         we don't want to activate any windows. Fixes #79433.
2220
2221 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
2222
2223         - ButtonBase.cs: Fix capitalization of parameter: disposing.
2224         [Fixes bug #80609]
2225
2226 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
2227
2228         * FileDialog.cs:
2229         - Move to using System.ComponentModel.EventHandlerList
2230         - Replace Refresh with Invalidate
2231         - Clear the mime filecache on closing
2232         - Some other memory reducing work. After beeing closed FD now uses
2233           only about 300 KB for the fdo mime stuff plus the memory of the
2234           cached icons.
2235         * Mime.cs: Changed coding style and removed unnecessary commented
2236         code. Some more memory memory reducing work.
2237
2238 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2239
2240         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
2241         a few other missing 2.0 properties.
2242         * Theme.cs: Added DrawFlatStyleComboBox.
2243         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
2244
2245 2007-01-24  Chris Toshok  <toshok@ximian.com>
2246
2247         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
2248         wake_waiting flag, not just when there's data to be read.  if we
2249         don't, then future wakeup's won't reach us and we'll be doomed to
2250         wait for the entire 1 second timeout forever (unless there are X
2251         events to be had).
2252
2253 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2254
2255         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
2256         until you pass Items.Count, not Items.Count - 1 like 1.1.
2257
2258 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
2259
2260         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
2261
2262 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
2263
2264         * ToolStripContainer.cs: The recent Dock fix exposed that I was
2265         adding the panels in the wrong order.
2266
2267 2007-01-24  Jackson Harper  <jackson@ximian.com>
2268
2269         * TextBoxBase.cs: When we move the caret we also need to move the
2270         selection, this fixes some random crashing after doing select
2271         text, unselect, delete a char, paste.
2272
2273 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2274
2275         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
2276
2277 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2278
2279         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
2280         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
2281         * ToolBar.cs: Force redraw in BackgroundImageChanged.
2282
2283 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2284
2285         * ToolBar.cs:
2286         - Implement support for vertical toolbars. Fixes #80539;
2287         - Call LayoutToolBar when resize, it fix some other problems in layout.
2288         - Rename requested_height to requested_size, as we can have width on it
2289         when toolbar is vertical.
2290         - Create a private property "Vertical" that uses Dock to verify when 
2291         toolbar is vertical or not.
2292         - Set ControlStyles when change Dock property.
2293         - Refactory in LayoutToolBar to have better variables names and to support
2294         vertical toolbars.
2295         - Fixes default value for ButtonSize when button count is equal zero, size
2296         must be (39, 36) test case writed.
2297
2298 2007-01-23  Chris Toshok  <toshok@ximian.com>
2299
2300         * Control.cs: fix the checks so that they work correctly for mdi
2301         parents/children.
2302
2303 2007-01-23  Chris Toshok  <toshok@ximian.com>
2304
2305         * Control.cs: ControlCollection seems to have super-secret
2306         abstraction breaking knowledge of Mdi containers.  allow MdiClient
2307         to add toplevel controls.
2308
2309 2007-01-23  Chris Toshok  <toshok@ximian.com>
2310
2311         * Control.cs: throw an ArgumentException if a toplevel control is
2312         added to our control collection from ControlCollection.Add, as
2313         well as from ControlCollection.IList.Add.  This fixes the
2314         ControlSetTopLevelTest.TestTopLevelAdd unit test.
2315
2316         Also, in ControlCollection.IList.Add, don't through an
2317         ArgumentNullException, throw an ArgumentException, when value ==
2318         null.  This matches MS.
2319
2320 2007-01-23  Chris Toshok  <toshok@ximian.com>
2321
2322         * BindingSource.cs: initial, incomplete, implementation of
2323         BindingSource.
2324
2325 2007-01-23  Jackson Harper  <jackson@ximian.com>
2326
2327         * TextControl.cs:
2328         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
2329         that I can fix a broken unit test (TextBoxTest::ClearUndo)
2330         
2331 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
2332
2333         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
2334
2335 2007-01-23  Andreia Gaita  <avidigal@novell.com>
2336
2337         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
2338         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
2339         IndexOfKey() for 2.0
2340
2341 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2342
2343         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
2344         to prevent it from changing z-order.
2345         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
2346         leave UI updates in MdiWindowManager.
2347         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
2348         1 sized (NC handling goes weird on Linux otherwise).
2349         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
2350         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
2351         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
2352         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
2353         and SetWindowState(s) to allow for changing the size of an activated child
2354         before activating it (reduces a lot of flicker).
2355
2356 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2357
2358         * Form.cs: Changing FormBorderStyle has different semantics based
2359         on whether the Form is visible or not.  If not visible, don't change
2360         the Size.  But InvalidateNC needs to be called to force the window
2361         to pick up the changes and redraw itself.  [Fixes bug #80574]
2362
2363 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
2364
2365         [Moma work]
2366         * ContainerControl.cs: ProcessCmdKey.
2367         * ErrorProvider.cs: new constructor.
2368         * Form.cs: fix AutoValidateEvent compiler warning.
2369         * Label.cs: fix OnAutoSizeChanged compiler warning.
2370         * MenuStrip.cs: fix CanOverflow compiler warning.
2371         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
2372         * TextBox.cs: Dispose.
2373         * ToolStrip.cs: CanOverflow, re-enable double buffering.
2374         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
2375         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
2376         * ToolStripItem.cs: Overflow, RightToLeft properties.
2377
2378 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2379
2380         * Form.cs: Move the layout of the main form to MdiWindowManager.
2381         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
2382         do a layout of the main window to update MdiClient's client area to
2383         the right area. Fixes #80533. Remove the calculation of nc size, 
2384         it was just wrong and the correct one is the same as for 
2385         InternalWindowManager. 
2386
2387 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
2388
2389         * Control.cs: Setting Anchor or Dock needs to reset the other
2390         to its default.  [Fixes bug #80556]
2391
2392 2007-01-20  Chris Toshok  <toshok@ximian.com>
2393
2394         * CheckedListBox.cs: class status changes.
2395
2396         * ScrollableControl.cs: same.
2397
2398         * RichTextBox.cs: same.
2399
2400         * ContainerControl.cs: same.
2401
2402         * ListView.cs: same.
2403
2404         * NotifyIcon.cs: same.
2405
2406         * MenuStrip.cs: same.
2407
2408         * RadioButton.cs: same.
2409
2410         * CheckBox.cs: same.
2411
2412         * PrintPreviewDialog.cs: same.
2413
2414         * Form.cs: same.
2415
2416 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
2417
2418         * TreeNode.cs: Apply Alan's patch for Name property.
2419
2420 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2421         
2422         * Form.cs: Implemented SizeGripStyle.
2423         * SizeGrip.cs: Check for minimum and maximum size for the
2424         control being resized and only resize if size has actually
2425         changed.
2426
2427 2007-01-19  Chris Toshok  <toshok@ximian.com>
2428
2429         * DataGridColumnStyle.cs: stop setting _readonly in the
2430         PropertyDescriptor setter.  fixes a unit test failure.
2431
2432         also, rename ParentReadOnly to TableStyleReadOnly, and have it
2433         just consult our table style (if we have one).  We don't need to
2434         consult the datagrid readonly attribute because that's passed in
2435         as the _ro arg to Edit.  this simplifies things a little.
2436         
2437         * DataGrid.cs: use CurrentColumn instead of
2438         current_cell.ColumnNumber just to simplify some of the code.
2439
2440         switch the order of some things in the CurrentCell setter to keep
2441         the previous cell from getting a textbox again -
2442         EnsureCellVisibility causes scrolling to happen, which calls Edit.
2443         So we need to set the new cell before calling it.
2444         
2445         call Edit in OnEnter, as does Microsoft.
2446         
2447         also, make sure the current table style isn't the one we create
2448         initially when checking to see if it's different than the one
2449         we're setting it to in BindColumns (this fixes #80421).
2450
2451         * GridTableStylesCollection.cs: table styles can have "" for a
2452         mapping name.  part of the fix for #80421.
2453
2454         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
2455         Edit significantly.
2456
2457 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2458
2459         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
2460         and less GDI object leaky-er.
2461
2462 2007-01-18  Andreia Gaita  <avidigal@novell.com>
2463
2464         * LinkLabel.cs: Add opaque control style
2465
2466 2007-01-18  Jackson Harper  <jackson@ximian.com>
2467
2468         * TextControl.cs: Calculate width properly.
2469         - Don't store the tag's X offset, this can be figured out very
2470         easily.
2471         - When getting the caret tag make sure to get the last empty tag.
2472
2473 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2474
2475         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
2476         [Fixes bug #79959]
2477
2478         * Control.cs: Color.Empty shouldn't count for previous transparent
2479         redraw changes.
2480
2481 2007-01-18  Jackson Harper  <jackson@ximian.com>
2482
2483         * TextBox.cs:
2484         * RichTextBox.cs:
2485         * TextControl.cs: Starting to merge in some pieces of my older
2486         undo work.  Basically just some slight cleanup of the undo API.
2487
2488 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2489
2490         * TrackBar.cs: Fix signature of RightToLeftLayout.
2491         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
2492         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
2493         * Application.cs: Implemented UseWaitCursor.
2494
2495 2007-01-18  Jackson Harper  <jackson@ximian.com>
2496
2497         * TextControl.cs: We can't skip tags if any part of the tag is
2498         visible.
2499
2500 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2501
2502         * ContainerControl.cs: Override OnLayout.
2503
2504 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2505
2506         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
2507
2508         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
2509         everything else.
2510
2511 2007-01-18  Chris Toshok  <toshok@ximian.com>
2512
2513         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
2514         (leftover from the container_selected days, I'd wager).  fixes bug
2515         #80546.
2516
2517 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2518
2519         * Control.cs: Apply patch from George to fix the new testcase on
2520         bug #80451.  We can't just check for Color.Transparent, we need 
2521         to check if the back color's alpha channel is < 255.
2522
2523 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
2524
2525         * Form.cs: Move setting show_icon = true to before the constructor
2526         so that the base constructor has that information when it calculates
2527         the form's size.  Was causing forms to be (6, 6) bigger than they
2528         were supposed to be.  Thanks for catching this Rolf!
2529
2530 2007-01-18  Jackson Harper  <jackson@ximian.com>
2531
2532         * TextControl.cs: When replacing a selection we need to invalidate
2533         from the initial selection start, because selection start is moved
2534         to the end of the replacement.
2535
2536 2007-01-18  Andreia Gaita  <avidigal@novell.com>
2537
2538         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
2539
2540 2007-01-18  Chris Toshok  <toshok@ximian.com>
2541
2542         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
2543         I just added.
2544
2545 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
2546
2547         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
2548         layout methods and properties from ToolBarButton must be available
2549         into ToolBarButtonInfo.
2550
2551 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2552
2553         * Control.cs: If the control has a transparent background, we
2554         need to refresh it when it moves and when it's parent's background
2555         image changes.  [Fixes bug #80451]
2556
2557 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2558
2559         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
2560
2561 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
2562
2563         * XplatUIWin32.cs: Implement proper double buffering for Windows.
2564         [Fixes bug #80447, and probably speeds up things as well]
2565
2566 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2567
2568         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
2569         * XplatUIWin32.cs: We need to recalculate NC size after changing 
2570         window style to toolwindow (otherwise the client rectangle will be
2571         3 pixels to small for some reason).
2572         * MdiWindowManager.cs: Revert NC size calculations to match how
2573         they are calculated only based on window styles (to match
2574         Win32AdjustWindowRectEx, since otherwise when setting size or 
2575         location, Control will call Win32AdjustWindowRectEx to update client 
2576         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
2577         calculate a different value of client size causing another paint 
2578         (and flickering))
2579         * InternalWindowManager.cs: When moving or resizing a window only
2580         update size or location if they actually changed.
2581         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
2582         (seems to match Windows behaviour better). Cleaned up 
2583         ManagedWindowDecorations to draw what's needed and nothing else
2584         (was drawing borders and lines where they shouldn't be)
2585         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
2586         (style = 0xFFFF) and takes into account caption height when 
2587         calculating window rectangle.   
2588
2589 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
2590
2591         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
2592         can be added to toolbar multiple times, we need to maintain a list of 
2593         button information for each positions.
2594
2595 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
2596
2597         * ToolBar.cs: Some small stetic changes.
2598
2599 2007-01-16  Jackson Harper  <jackson@ximian.com>
2600
2601         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
2602         that allow us to have nested recalc = false blocks.
2603         - Add paste support for images in the RichTextBox
2604         * RichTextBox.cs: flush the text after the color is changed, so
2605         the change takes effect.
2606         - Use SuspendRecalc
2607         - Some extra debugging info
2608         * TextControl.cs: Tags no longer track their length, it is just
2609         computed from the next tags length, this makes things a little
2610         simpler and reduces places that we have to track length changes.
2611         - Refactored the linetag class a little so we could make it
2612         a base class for different kinds of tags
2613         - Created a image tag, a tag that can have a single image inserted
2614         into it
2615         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
2616         that we can call suspend multiple times.
2617         - Add some debugging methods
2618
2619 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2620
2621         * MdiClient.cs: Add ActivatePreviousChild for 
2622         mdi child window navigation.
2623         * Form.cs: Use MdiClient.ActivateNextChild/
2624         ActivatePreviousChild instead of Form.SelectNextControl
2625         to select the next/previous child since 
2626         SelectNextControl doesn't do it in the same order
2627         as mdi children should do it.
2628
2629 2007-01-16  Chris Toshok  <toshok@ximian.com>
2630
2631         * Control.cs: remove container_selected field.
2632
2633 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2634
2635         * MdiClient.cs: Update main form's ActiveChild when
2636         updating keyboard focus for the mdi child.
2637
2638 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
2639
2640         * Control.cs: PreferredSize fix.
2641
2642         * Form.cs: Add several 2.0 events, properties, and methods.
2643
2644 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
2645
2646         * Form.cs: Provide meaningful message when MdiParent is assigned a
2647         Form that is not an MdiContainer.
2648
2649 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2650
2651         * MdiClient.cs: Update main form's ActiveChild when
2652         activating a mdi child.
2653
2654 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2655
2656         * MdiWindowManager.cs: Fix NRE when merging menus and main form
2657         doesn't have a menu.
2658
2659         * Form.cs: Request NCRecalc after creating a mdi child window.
2660         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
2661         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
2662         
2663         * MdiClient.cs: Add new method SendFocusToActiveChild that either
2664         sends keyboard focus to the active child, or to the MdiClient
2665         if there are no child forms.
2666         
2667 2007-01-15  Chris Toshok  <toshok@ximian.com>
2668
2669         * ListView.cs: drop the *Internal overrides, just do our work in
2670         ItemControl's WndProc instead.
2671
2672         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
2673         of the various controls, and forward the events properly (in the
2674         same manner as MS) from the textbox to the UpDown.  Also the
2675         ActiveControl of the UpDownBase gets set properly now.  Finally,
2676         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
2677
2678         * NumericUpDown.cs: set Text in the ctor.
2679
2680         * DomainUpDown.cs: call UpdateEditText in the ctor.
2681         
2682         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
2683         so even a Selectable = false textbox can be focused if you click
2684         in it.  Go figure.
2685
2686         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
2687         just add their handling in their respective WndProc's.  Also add
2688         an explicit FocusInternal method that doesn't consult CanFocus
2689         before calling Select(this).
2690
2691         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
2692         do our work in WndProc instead.
2693
2694         * TabControl.cs: same.
2695
2696         * ComboBox.cs: same.
2697
2698 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2699
2700         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
2701         Fixes #80006.
2702
2703 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
2704
2705         * ListViewItem.cs:
2706         * ThemeWin32Classic.cs: Don't draw the item text outside
2707         item bounds in Details view, as well as use trimming.
2708         Fixes bug #80376.
2709
2710 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2711
2712         * Form.cs: Implement Form.ShowIcon.
2713         
2714         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
2715         null, which when combined with the DlgModalFrame window style removes
2716         the icon from the title bar.
2717
2718 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2719
2720         * Control.cs: Call OnMouseClick after OnClick. (2.0)
2721
2722 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2723
2724         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
2725         menu when mdi child windows theres a menu, uses insert to get icon
2726         at first position. Partially fix #80006.
2727
2728 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
2729
2730         * Clipboard.cs: Implement 2.0 methods.
2731
2732 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
2733
2734         * Menu.cs: Implement Insert method of MenuItemCollection class
2735         to fix MenuMerge.
2736
2737 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2738
2739         * ListView.cs: Implement 2.0 FindItemWithText method.
2740
2741 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2742
2743         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
2744         to calculate menu bar size. Fixes #80290.
2745
2746 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
2747
2748         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
2749
2750 2007-01-11  Chris Toshok  <toshok@ximian.com>
2751
2752         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
2753         initial form.
2754
2755 2007-01-11  Chris Toshok  <toshok@ximian.com>
2756
2757         * LinkLabel.cs: make sure to call base.Select in our Select method
2758         if it turns out we're going to be selected (i.e. if we have a link
2759         that is going to receive focus).  That way our container's
2760         ActiveControl is updated properly.
2761
2762 2007-01-11  Chris Toshok  <toshok@ximian.com>
2763
2764         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
2765         they have 1 or more links.  this fixes the crash gert reported.
2766
2767 2007-01-11  Andreia Gaita  <avidigal@novell.com>
2768
2769         * ContainerControl.cs: Remove ContainerSelected flag, not needed
2770         anymore.
2771
2772         * Control.cs (Controls.Add): Check if control to be added to the collection
2773         is a top level control, and throw an ArgumentException if it is.
2774         Remove ContainerSelectedFlag, not needed anymore.
2775
2776         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
2777         top most control doesn't activate the form. This fixes a problem in the
2778         MessageBox, where the default button wouldn't get focus because the form
2779         was activated before being Loaded - when the Owner is set, SetTopMost is
2780         called, and it would activate it.
2781
2782 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
2783
2784         * Button.cs: When clicked and setting the parent form's DialogResult,
2785         use FindForm instead of Parent, since parent could be a container
2786         control and not the Form.  Fixes bug #80495.
2787
2788 2007-01-10  Chris Toshok  <toshok@ximian.com>
2789
2790         * Form.cs: move the call to SendControlFocus into the same
2791         is_loaded check.
2792
2793 2007-01-10  Chris Toshok  <toshok@ximian.com>
2794
2795         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
2796         It breaks in the face of the new ActiveControl stuff, and should
2797         be unnecessary.
2798
2799         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
2800         activecontrol's focus if it's not already set, after we set
2801         ActiveControl, but before we call OnActivated.  Re-fixes #79667
2802         after the previous focus/active control fixes regressed it.
2803
2804         * Control.cs: reindent some code.
2805         
2806 2007-01-10  Chris Toshok  <toshok@ximian.com>
2807
2808         * Splitter.cs: clearing some outstanding changes from my tree.
2809         Replace all accesses (not writes) to the internal dock_style field
2810         with the Dock property.
2811
2812 2007-01-10  Chris Toshok  <toshok@ximian.com>
2813
2814         * Control.cs: make FireEnter, FireLeave, FireValidating, and
2815         FireValidated virtual.
2816
2817         * Form.cs: override and don't chain up calls to FireEnter and
2818         FireLeave.
2819
2820 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2821
2822         * ListView.cs: Add more text padding space when using
2823         auto resize for columns (the previous value didn't work fine).
2824
2825         * ThemeWin32Classic.cs: Update text position inside columns,
2826         to match the appeareance of .Net.
2827
2828         * ColumnHeader.cs: When using auto resize, only the Width should
2829         depend on the sub items, not the Height. Also, set width after
2830         auto resizing (the value of Width should never remain as -1 or -2).
2831
2832 2007-01-10  Chris Toshok  <toshok@ximian.com>
2833
2834         * Application.cs: fix compilation errors when debug is enabled.
2835
2836 2007-01-10  Chris Toshok  <toshok@ximian.com>
2837
2838         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
2839         add some nice ascii art pictures and explanation of the process).
2840         (GetMostDeeplyNestedActiveControl): new utility function we need
2841         because our ActiveControl can refer to a child container with its
2842         own ActiveControl.
2843
2844         * Form.cs (OnActivated): remove the call to SelectActiveControl
2845         from here, since you can override this method and not chain up,
2846         and winforms still sets the active control.
2847         (OnCreateControl): also remove the unnecessary SelectActiveControl
2848         call from here.
2849         (WndProc): it's actually called from the WM_ACTIVATE block, just
2850         before calling OnActivated.
2851
2852         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
2853         inside the else.  the ActiveControl setter will end up setting
2854         focus on @control.  This keeps us from setting it again (and
2855         generating an extra LostFocus/GotFocus pair).
2856         (Select (bool, bool)): reindent.
2857
2858 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
2859
2860         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
2861         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
2862         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
2863         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2864         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
2865         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
2866         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
2867         ToolStripTextBox.cs: Another wave of corcompare work.
2868
2869 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2870
2871         * ColumnHeader.cs: Implement 2.0 AutoResize method using
2872         the Width property.
2873
2874         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
2875         methods by callling Column.AutoResize method on columns.
2876
2877 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2878
2879         * Control.cs: Provide proper implementations of PreferredSize
2880         and GetPreferredSize (2.0).
2881
2882 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2883
2884         * Form.cs: Remove one character (!) to make my previous OnClosing
2885         stuff work for modal windows like MessageBox.
2886
2887 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2888
2889         * ListView.cs:
2890         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
2891         ListView.Columns to get the last displayed column. Fixes #80452.
2892
2893 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
2894
2895         * Label.cs, LinkLabel.cs: Source code identation fixes.
2896
2897 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
2898
2899         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
2900         we dont need to invalidate only borders because when we invalidate four
2901         border lines the invalidate's generates a complete redraw of button, 
2902         because it now invalidate a complete rect some other redraws operations
2903         are fixed. Fixes #80196.
2904         
2905         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
2906         Remove ToolBarInvalidateEntireButton as it is not used.
2907
2908 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2909         
2910         * Form.cs: Make sure that both OnClosing and OnFormClosing are
2911         called for 2.0 profile.
2912         * CloseReason.cs: Make class internal for 1.1.
2913
2914 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2915
2916         * ToolStripManager.cs: Implement FindToolStrip functionality.
2917         * ToolStrip.cs: Register and unregister with ToolStripManager.
2918
2919 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2920
2921         * Control.cs: This was messy.  2.0 moves much of ControlCollection
2922         to ArrangedElementCollection.  Implemented this with as few #if's as 
2923         possible (which is still too many).
2924
2925 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2926
2927         * Control.cs: Implement SizeFromClientSize() [2.0].
2928
2929 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
2930
2931         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
2932         use Theme.BorderSize to calculate area instead of static value 1, 
2933         by the way use new BorderStaticSize instead     Border3DSize when 
2934         border_static is true. Fixes #79537.
2935         
2936         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
2937         
2938         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
2939         it is not needed.
2940
2941 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2942
2943         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
2944
2945 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2946
2947         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
2948         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
2949         
2950         * Hwnd.cs: 
2951         - border_static field added, it will used to define when a control 
2952         theres 3D border but it must be static (thin).
2953         - In GetWindowRectangle use Theme.BorderSize to calculate area 
2954         instead of static value 1, by the way use new BorderStaticSize instead
2955         Border3DSize when border_static is true.
2956
2957         * XplatUIX11.cs, XplatUIOSX.cs: 
2958         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
2959         
2960         * Theme.cs: BorderStaticSize field added.
2961
2962 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2963
2964         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
2965
2966 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2967
2968         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
2969         mimic same behavior than win32 that set border only in CreateParams,
2970         it fix problems under CreateParams overrides. Fix #79442 and partial
2971         fix #79537.
2972         
2973         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
2974         of thi control you must call recreate handle. 
2975         
2976         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
2977         need to do anything as RecreateHangle will take care about borders.
2978
2979 2007-01-05  Mike Kestner  <mkestner@novell.com>
2980
2981         * ListView.cs: hack to eliminate Lost/Got focus notifications on
2982         cycles between the ItemControl and parent.  Fixes #80388.
2983
2984 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
2985
2986         * Control.cs: Lazy init layout engine. Do not directly use 
2987         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
2988
2989 2007-01-05  Chris Toshok  <toshok@ximian.com>
2990
2991         * DataGrid.cs: don't forceably rebind columns in SetDataSource
2992         unless our list manager has changed (i.e. unless we have reason to
2993         believe our columns have changed).  Fixes #80422.
2994         
2995         also, disable the call do BindColumns in
2996         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
2997         1.1 the event isn't raised in response to a column addition on a
2998         table.)
2999
3000 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3001
3002         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
3003         that inheritors can not call it if they choose.  Fixes bug #80456.
3004
3005 2007-01-05  Andreia Gaita  <avidigal@novell.com>
3006
3007         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
3008         doesn't blow up with a null exception on marshalling.
3009         
3010 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
3011
3012         * Control.cs: Implement several 2.0 protected properties and methods.
3013         Ensure that all necessary events are being called when properties
3014         are set.
3015
3016 2007-01-05  Mike Kestner  <mkestner@novell.com>
3017
3018         * ListView.cs: implement PgUp/PgDn for Details view.  Also
3019         fixes First/LastVisibleIndex to use the item_control.ClientRect 
3020         instead of the parent control.  Fixes #80378.
3021
3022 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
3023
3024         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
3025           determine whether to use yard-pound or not (bug #78399).
3026
3027 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
3028
3029         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
3030         problems. So it is time to bring back the old popupbutton colors.
3031
3032 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3033
3034         * ColumnHeader.cs:
3035         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
3036         property by using the internal information of the
3037         columns order in ListView.
3038
3039 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
3040
3041         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
3042         Add 2.0 Tag properties.
3043
3044         * LinkArea.cs: Add 2.0 ToString method.
3045
3046 2007-01-03  Chris Toshok  <toshok@ximian.com>
3047
3048         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
3049         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
3050         when we're editing, which fixes #80047.
3051
3052 2007-01-03  Chris Toshok  <toshok@ximian.com>
3053
3054         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
3055         #80404.
3056
3057 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
3058
3059         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
3060         property and implementation.
3061
3062         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
3063         for MdiWindowListItem property.
3064
3065         * ToolStripDropDown.cs: Don't consider hidden menu items while
3066         laying out the menu.
3067
3068 2007-01-03  Andreia Gaita  <avidigal@novell.com>
3069
3070         * SendKeys.cs: window handle is not needed in win32, so just
3071         get the active window for X after parsing keys and don't use
3072         it when building the message; it is passed by parameter to the 
3073         Xplat method and used there to build the message instead. Also,
3074         wait for events to be processed on SendWait, as opposed to Send,
3075         which doesn't wait :) Playing with threads and Send() completely 
3076         hangs on ms.net, only SendWait() works.
3077         
3078         XplatUIX11.cs
3079         X11Display.cs: Check for valid window handle.
3080
3081 2007-01-03  Jackson Harper  <jackson@ximian.com>
3082
3083         * TextControl.cs: Need to prevent wrap calculations when replacing
3084         text (this was there before i removed it accidently).
3085         - Don't update the cursor during the positioning, just set it to
3086         selection_start at the end of the operaion.
3087
3088 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3089
3090         * Control.cs:
3091         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
3092         
3093 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3094
3095         * MonthCalendar.cs: Added Click and DoubleClick events again,
3096         but this time they only hide Control's Click and DoubleClick.
3097         
3098 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
3099
3100         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
3101         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
3102
3103 2007-01-02  Jackson Harper  <jackson@ximian.com>
3104
3105         * TextBoxBase.cs: We move the caret with the split now, so we
3106         don't need to explicitly move the caret after splitting.  This
3107         fixes the caret bumping down an extra line on Enter.
3108
3109 2007-01-02  Miguel de Icaza  <miguel@novell.com>
3110
3111         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
3112         2.72). 
3113
3114         * ScrollableControl.cs: Add Scroll event.
3115
3116 2007-01-02  Mike Kestner  <mkestner@novell.com>
3117
3118         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
3119         to fix all hdr height padding codepaths.  Fixes #80207.
3120
3121 2007-01-02  Chris Toshok  <toshok@ximian.com>
3122
3123         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
3124         setting it to the Control defaults anyway, and it being after the
3125         Dock set was screwing up layout.
3126         (set_Dock): don't short circuit out of setting base.Dock.  Also,
3127         no need to call UpdateStatusBar here, as it'll be re-layed out if
3128         it needs to be.
3129
3130 2007-01-02  Mike Kestner  <mkestner@novell.com>
3131
3132         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
3133         to header height for width == -1. Fixes the rest of #80207.
3134
3135 2007-01-02  Mike Kestner  <mkestner@novell.com>
3136
3137         * ListView.cs: rework the mouse event forwarding everaldo added
3138         to translate the coordinates to the parent control not
3139         raise the parent events until after we've done our work. Hover
3140         needs more work, in the case where HoverSelection is on, because
3141         the item control receives more than one MouseHover per Enter
3142         event, so we need to ensure only the "first" hover gets forwarded.
3143         Opening a minor bug for that.
3144
3145 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
3146
3147         * CheckedListBox.cs: Fixed SelectionMode to match MS.
3148         * ListControl.cs: Implemented AllowSelection property. Removed extra
3149         tabs.
3150         * ListBox.cs: Implemented AllowSelection property.
3151
3152 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3153
3154         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
3155         SelectedItem, it prevent for errors when you must disable item
3156         before perform click. Fixes #80409.
3157
3158 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3159
3160         * MenuAPI.cs: Prevent second level and beyond submenus to close
3161         until first level when move out side of popup.
3162         
3163 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3164
3165         * MenuAPI.cs:
3166         - Down submenu positin in three pixels.
3167         - Closes sub menu when mouse leaves from menu. Fixes #80402.
3168
3169 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
3170
3171         * ThemeWin32Classic.cs:
3172         - Fix popup menu size adding one pixel on the top.
3173         - Down menu item border from two to one to mimic Win32.
3174         - Some source identation fixes. 
3175
3176 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3177
3178         * ThemeWin32Classic.cs: Use float numbers to calculate size and
3179         position of menu arrows, it fix wrong arrow size.
3180
3181 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
3182
3183         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
3184         instead of line, it simplify draw operation and fix it using 3D
3185         borders to mimic Win32.
3186
3187 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
3188
3189         * StatusStrip.cs: Add implementation of the sizing grip.
3190
3191         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
3192         StatusStrip rendering.
3193
3194 2006-12-31  Chris Toshok  <toshok@ximian.com>
3195
3196         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
3197         override the layout style (anchor/dock) of the control.  assign to
3198         Dock instead.  Fixes bug #80416.
3199
3200         * ToolStrip.cs: same.
3201
3202 2006-12-31  Andreia Gaita  <avidigal@novell.com>
3203
3204         * ContainerControl.cs: Use ContainerSelected flag to check if 
3205         a Container is directly selected, or if Select is called on a 
3206         non-container. If a container is directly selected, focus events 
3207         should not be raised.
3208         Apply #80411 patch to throw exception on set_ActiveControl if 
3209         control is the same as the current one.
3210         
3211         * Control.cs: Use ContainerSelected flag (see above).
3212         Add invalidation check to raise event but not invalidate if 
3213         dimensions are 0.       
3214         Apply #80411 patch.
3215         
3216
3217 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
3218
3219         * MenuAPI.cs: After click, dont close popup menu when menu is
3220         ContextMenu. Fixes #80399.
3221
3222 2006-12-30  Chris Toshok  <toshok@ximian.com>
3223
3224         * ContainerControl.cs: make sure we throw the exception if the
3225         container control doesn't contain the control we're setting
3226         ActiveControl to.
3227
3228 2006-12-30  Chris Toshok  <toshok@ximian.com>
3229
3230         * Control.cs (SetTopLevel): fix the exception raised by
3231         SetTopLevel for child controls.
3232         (set_Anchor): call UpdateDistances when setting the anchor type.
3233         This fixes bug #80336.
3234
3235 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3236
3237         * Theme.cs: For now, revert back to 8pt font.
3238
3239 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
3240
3241         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
3242         Fixes #80395.
3243
3244 2006-12-29  Chris Toshok  <toshok@ximian.com>
3245
3246         * Control.cs: reorder the code in OnResize to give the same event
3247         ordering as MS.
3248
3249 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3250
3251         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
3252         TileHorizontally and TileVertically.
3253         
3254 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
3255
3256         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
3257         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
3258         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
3259         Corrected copyright and email adress.
3260
3261 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3262
3263         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
3264         of Exception in FullPath property if no TreeView is associated with
3265         the TreeNode.
3266
3267 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
3268
3269         * Theme.cs: Marked default_font as private, and initialize it in ctor
3270         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
3271         on 2.0 profile.
3272         * ThemeGtk.cs: Removed default_font intialization.
3273         * ThemeWin32Classic.cs: Removed default_font initialization.
3274
3275 2006-12-28  Chris Toshok  <toshok@ximian.com>
3276
3277         * Control.cs: fix a couple of place where we were creating handles
3278         more aggressively than we should be.  Fixes ControlRefresh unit
3279         tests.
3280
3281 2006-12-28  Chris Toshok  <toshok@ximian.com>
3282
3283         * Control.cs: contrary to what the comment said, Control.Dock does
3284         not supercede Control.Anchor - the last one you assign to decides
3285         the layout behavior.  so we need to keep track of which was the
3286         last set.  Also, fix some of the affected property arguments in
3287         PerformLayout calls, and remove an redundant parent.PerformLayout
3288         call in OnResized.
3289
3290         Add a VisibleInternal property, which returns is_visible.  We
3291         can/should get rid of all the usage of this field elsewhere.
3292
3293 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3294         
3295         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
3296         control style, not DoubleBuffer. Added UseDoubleBuffering property
3297         that indicates whether doublebuffering is enabled and supported.
3298         (comment from and code based on Gert Driesen's patch in #80324).
3299         Fixes #80324.
3300
3301 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3302         
3303         * Control.cs: Fixed a NRE.
3304
3305 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3306
3307         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
3308         for 2.0.
3309
3310 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3311
3312         * Control.cs: Rewrote double buffering, now a seperate
3313         class handles all the buffering, no Graphics is disposed of
3314         until the painting is finished (earlier implementation 
3315         would crash if the control was resized in the OnPaint, 
3316         since it would cause the double buffer to be recreated
3317         and the old one disposed), a separate Graphics is 
3318         created for every paint (MS behaviour and anyways the state
3319         of the Graphics would have to be saved and restored otherwise)
3320         
3321         * XplatUIDriver.cs: 
3322         * XplatUIX11.cs:
3323         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
3324         so that we can get the graphics for the back buffer without
3325         having to create a new one and remove the offscreen_dc parameter
3326         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
3327         
3328 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3329
3330         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
3331         Also make virtual all the key-related methods.
3332
3333         * ListViewItem.cs: Make virtual the key related methods for
3334         ListViewSubItemCollection.
3335
3336 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3337
3338         * ListView.cs:
3339         * ListViewItem.cs:
3340         * ThemeWin32Classic.cs:
3341         * Theme.cs: Initial support for Tile view in ListView,
3342         as well as the implementation of the required bits for it (Item
3343         and Subitem).
3344
3345 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3346
3347         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
3348         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
3349         Provide useful exception messages.
3350
3351 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3352
3353         * TrackBar.cs: Remove a warning.
3354         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
3355         when used by DateTimePicker, fixes #80287. This also requires that 
3356         MonthCalendar implements it's own drawing for the yearly updown control,
3357         otherwise the Capture tracking would be too complicated. Removed the Click 
3358         and DoubleClick events (according to comments they were hiding the base class
3359         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
3360         raise these events, not that they cannot be raised. It is possible to raise 
3361         them by calling OnClick and OnDoubleClick). Added two internal fields in 
3362         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
3363         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
3364         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
3365         event, no longer needed.
3366         
3367 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3368
3369         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
3370         true if new value differs from current value.
3371
3372 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3373
3374         * Control.cs: ControlCollection.Count must be public. Fixed build of
3375         unit tests.
3376
3377 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3378
3379         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
3380
3381 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
3382
3383         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
3384
3385 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3386
3387         * Control.cs: Invalidates control including when Width and Height is 
3388         equal zero or is not visible, only Paint event must be care about 
3389         this. Fixes #79913.
3390
3391 2006-12-26  Chris Toshok  <toshok@ximian.com>
3392
3393         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
3394         more corcompare work.
3395
3396         * DataGridView.cs: fix compiler warning.
3397
3398         * ColumnHeader.cs: some corcompare work, and also take the
3399         opportunity to make the internal fields private.
3400
3401         * ListView.cs: fix the fallout from the above field change.
3402
3403 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3404
3405         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
3406         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
3407         ToolStripTextBox.cs: Fixes to events and corcompare.
3408
3409 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
3410
3411         * ListView.cs: Call owner.OnMousexx event to propagate events from
3412         item to ListView. Fixes #80367.
3413
3414 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3415
3416         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
3417         if value is less than one. ItemHeight should not be set to a value
3418         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
3419         Removed extra tabs.
3420
3421 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
3422
3423         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
3424         * ToolStripStatusLabel.cs: Add Spring for Moma.
3425
3426 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3427
3428         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
3429         Fixed code formatting. Removed debug code.
3430         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
3431
3432 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
3433
3434         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
3435         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
3436         ArgumentOutOfRangeException if ColumnCount is negative. In 
3437         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
3438         less than 4 or higher than 32768.
3439         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
3440         Fixed FormatProvider to return CurrentCulture unless explicitly set.
3441         Fixed IsFormatProviderDefault to return true if FormatProvider has
3442         not been explicitly set.
3443
3444 2006-12-25  Chris Toshok  <toshok@ximian.com>
3445
3446         * Application.cs: add a couple of 2.0 events.
3447
3448 2006-12-25  Chris Toshok  <toshok@ximian.com>
3449
3450         * Control.cs: fix compiler warning.
3451
3452         * AxHost.cs: corcompare fixes.
3453
3454         * ApplicationContext.cs: corcompare fixes.
3455
3456 2006-12-25  Chris Toshok  <toshok@ximian.com>
3457
3458         * Control.cs: only update dist_right/dist_bottom if the
3459         width/height is > 0.  this fixes anchored controls being resized
3460         smaller until they disappear and then resized larger again.
3461
3462 2006-12-25  Chris Toshok  <toshok@ximian.com>
3463
3464         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
3465         since they're nothing more than X/Left and Y/Top, respectively.
3466
3467         Also, move back to a per-control Bitmap/Graphics for
3468         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
3469         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
3470         Height.
3471
3472 2006-12-25  Miguel de Icaza  <miguel@novell.com>
3473
3474         * MessageBox.cs: Implemented overload that takes a new "bool
3475         displayHelpButton" by adding a new internal field "show_help".
3476         When clicked this will raise the HelpRequested on the owner or the
3477         main form. 
3478
3479         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
3480         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
3481
3482         * ListView.cs: Add support ColumnWidthChanged and
3483         ColumnWidthChanging. 
3484
3485         Add support for ColumnReordered event.
3486         (ReorderColumn): Add NET_2_0 specific support for cancelling the
3487         reorder.
3488
3489         Very nice codebase!
3490
3491         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
3492
3493         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
3494
3495 2006-12-24  Chris Toshok  <toshok@ximian.com>
3496
3497         * GridTablesFactory.cs: 2.0 corcompare work.
3498
3499         * ToolStripContainer.cs: add "override" to
3500         ContextMenuStripChanged, and remove the local event object.
3501
3502         * ToolStripDropDown.cs: same with a couple properties.
3503
3504         * ToolStripPanel.cs: same with AutoSizeChanged event.
3505
3506         * TextBoxBase.cs: add "override" to AutoSizeChanged.
3507
3508         * Form.cs: add the remaining 2.0 events, and do some corcompare
3509         attribute work.
3510
3511         * DateTimePicker.cs: add "new" to padding.
3512
3513         * ButtonBase.cs: use Control's use_compatible_text_rendering.
3514
3515         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
3516
3517         * DataGridView.cs: PaddingChanged is overridden.
3518
3519 2006-12-24  Chris Toshok  <toshok@ximian.com>
3520
3521         * Control.cs: corecompare work here too.
3522
3523         * DataGridViewElement.cs, DataGridView.cs,
3524         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
3525         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
3526         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
3527         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
3528         work.
3529
3530 2006-12-24  Miguel de Icaza  <miguel@novell.com>
3531
3532         * Control.cs: Switched the error message on the console for a
3533         todo.  A review of the code will have to cope with this anyways
3534         (since its a large feature, it is in our radar) and it was
3535         producing too much output when running PDN.
3536
3537         * ToolStripComboBox.cs: Set the text when the SelectedIndex
3538         changes.  Applications depend on this (PDN 2.72)
3539
3540 2006-12-23  Chris Toshok  <toshok@ximian.com>
3541
3542         * TableLayoutSettings.cs: finish up the corcompare work for this
3543         class.
3544
3545 2006-12-23  Chris Toshok  <toshok@ximian.com>
3546
3547         * Control.cs: make SetImplicitBounds internal, do some futzing
3548         with LayoutEngine so that it's available in 1.1, and remove the
3549         entire duplicated code mess from PerformLayout.  Use
3550         System.Windows.Forms.Layout.DefaultLayout instead.
3551
3552         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
3553
3554 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
3555
3556         * Form.cs: Add MainMenuStrip property.
3557
3558 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
3559
3560         * Control.cs: Add ContextMenuStrip property and implementation.
3561         Fix ContextMenu implementation to show menu centered on control when
3562         activated using the keyboard instead of showing at screen (0,0).
3563
3564         * ToolStripDropDown.cs: Fix needed overload of Show ().
3565
3566 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3567
3568         * Menu.cs: Name property added for 2.0 profile.
3569         
3570 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3571
3572         * Menu.cs: Update information about FindMenuItem, method to be
3573         implemented soon.
3574
3575 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3576
3577         * MenuAPI.cs: When deselect items deselect also selected subitems.
3578         
3579 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
3580
3581         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
3582         FindSubItemByCoord to found itens that is not active, also an
3583         cheking added to FindSubItemByCoord to search for items only 
3584         in visible popup windows. Fixes #80274.
3585
3586 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
3587
3588         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
3589         internal property, it be care about change ExStyle. 
3590
3591 2006-12-22  Andreia Gaita  <avidigal@novell.com>
3592
3593         * ContainerControl.cs: set activeControl for parent forms up the 
3594         tree when the new activecontrol is a container.
3595         When validating the active control, if it is a container, also
3596         raise up the validation for it's active control. Fixes #80280
3597         
3598         * Control.cs: Add internal property flag and check to prevent
3599         Focus events from getting raised when Select() is called for
3600         a ContainerControl. There are still too many focus events being
3601         raised at the moment though.
3602         Cleaned up the code a bit.
3603
3604 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3605
3606         * Control.cs: Added all missing 2.0 events.and
3607         fixed a couple of corcompare issues.
3608         * TrackBar.cs: Implemented missing 2.0 bits.
3609         * MonthCalendar.cs, 
3610         * DateTimePicker.cs, 
3611         * MdiClient.cs: Fixed some corcompare issues.
3612
3613 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3614
3615         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
3616         SplitterPanel.cs: corecompare work.
3617
3618 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3619
3620         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
3621         Clean up warnings for BackgroundImageChanged and PaddingChanged
3622         events now that they are implemented in Control.cs.
3623
3624 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
3625
3626         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
3627         
3628         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
3629         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
3630         of TableLayoutPanel and supporting cast.
3631
3632 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3633
3634         * XplatUIWin32.cs: 
3635         - GrabWindow now confines the mouse pointer to the confine window.
3636         - Added Win32ClipCursor and Win32GetClipCursor.
3637
3638         * Control.cs: 
3639         - Added CaptureWithConfine to be able to capture and confine 
3640         mouse pointer.
3641         
3642         * InternalWindowManager.cs: 
3643         - Call CaptureWithConfine instead of Capture if we're an
3644         MdiChild (fixes #79982).
3645
3646 2006-12-21  Chris Toshok  <toshok@ximian.com>
3647
3648         * DataGrid.cs: guard against the initial state of selection, where
3649         selection_start == -1.  make sure we only select from index >= 0.
3650         Fixes bug #80291.
3651
3652 2006-12-21  Chris Toshok  <toshok@ximian.com>
3653
3654         * Control.cs: we don't need to be so draconian with
3655         UpdateDistances, and we thusly don't need to call it before
3656         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
3657
3658 2006-12-21  Daniel Nauck  <dna@mono-project.de>
3659
3660         * ComboBox.cs,
3661         TextBox.cs: Implemented AutoComplete properties.
3662
3663 2006-12-20  Chris Toshok  <toshok@ximian.com>
3664
3665         * DataGridView*.cs: some corecompare work.
3666
3667 2006-12-20  Jackson Harper  <jackson@ximian.com>
3668
3669         * XplatUIX11.cs: We need to hide the caret when deleting it,
3670         otherwise you get carets left lying around everywhere.
3671         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
3672         prevents getting some weird half drawn caret tracers when
3673         scrolling.
3674         * TextControl.cs: Attempt to reduce the number of times we need to
3675         recreate the caret.
3676
3677 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
3678
3679         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
3680
3681 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3682
3683         * DateTimePicker.cs:
3684         - Implemented missing 2.0 bits.
3685         - Changed some default values to match MS.
3686         
3687 2006-12-20  Jackson Harper  <jackson@ximian.com>
3688
3689         * TextBoxBase.cs: When changing the font across the document we
3690         can't recalculate after changing each line, since that will cahnge
3691         the line count.
3692         - PreferredHeight is a little different than i thought.
3693         - When backspacing, move the caret before we do the actual char
3694         delete, because when that delete crosses a wrap boundary the
3695         positional information will change.
3696
3697 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3698
3699         * Control.cs: Added some missing 2.0 bits: 
3700         BackgroundImageLayout, BackgroundImageLayoutChanged, 
3701         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
3702         add IBindableComponent and IDropTarget implementation.
3703         
3704         * MonthCalendar.cs: 
3705         - Added all missing 2.0 features:
3706         BackgroundImageLayout, RightToLeftLayout, 
3707         OnHandleDestroyed, RightToLeftLayoutChanged, 
3708         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
3709         PaddingChanged.
3710         - Rewrote all the BoldDate code, it was completely broken.
3711         - Fixed all the tests (the tests can now be re-enabled, the
3712         problems were not with the tests, but with the control, it was
3713         mostly broken).
3714         
3715         * DateTimePicker.cs: Changed the location where the 
3716         MonthCalendar is shown.
3717         
3718 2006-12-19  Chris Toshok  <toshok@ximian.com>
3719
3720         * DataGridView.cs: add IDropTarget implementation.
3721
3722         * ToolStripPanel.cs: add IDropTarget implementation.
3723
3724 2006-12-19  Jackson Harper  <jackson@ximian.com>
3725
3726         * TextControl.cs: soft now means something different than what it
3727         used to mean, we want to move the caret regardless of whether or
3728         not this break was soft (would we really have wanted the caret
3729         to not move with the break in the old context?)
3730         * TreeView.cs: Make sure we factor in the vert scrollbar when
3731         calculating the horizontal scrollbar's maximum.
3732
3733 2006-12-19  Andreia Gaita  <avidigal@novell.org>
3734
3735         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
3736         check for keywords in alternate casing, close bug #80049.
3737
3738 2006-12-19  Chris Toshok  <toshok@ximian.com>
3739
3740         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
3741         methods (which all do nothing).
3742
3743         * IDropTarget.cs: add the 4 missing methods.
3744
3745 2006-12-19  Chris Toshok  <toshok@ximian.com>
3746
3747         * TableLayoutRowStyleCollection.cs: corcompare work.
3748         
3749         * TableLayoutSettings.cs: same.
3750
3751         * TableLayoutStyle.cs: same.
3752
3753         * TableLayoutColumnStyleCollection.cs: same.
3754
3755 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
3756
3757         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
3758         TableLayoutPanel I've had in my local tree for way too long.
3759
3760 2006-12-19  Miguel de Icaza  <miguel@novell.com>
3761
3762         * TableLayoutSettings.cs: Finish the public API (still needs all
3763         the logic to update on changes). 
3764
3765         * TableLayoutPanelCellPosition.cs: new file.
3766         
3767         * TableLayoutRowStyleCollection.cs,
3768         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
3769         TableLayoutSettings.cs: Track the final 2.0 table api.
3770
3771 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3772
3773         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
3774         and Image List 2.0 members for ColummnHeader.
3775         * ListView.cs: Add key-related 2.0 methods for
3776         ColumnHeaderCollection.
3777
3778 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
3779
3780         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
3781         ArgumentNullException if items argument is null. Ignore null item in
3782         arrays. Removed extra tabs.
3783
3784 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
3785
3786         * MonthCalendar.cs: Fixed InvalidCastException.
3787
3788 2006-12-19  Jackson Harper  <jackson@ximian.com>
3789
3790         * TextControl.cs: Don't increment the position here.
3791         - When calculating char positions only add in the line break size
3792         for hard line breaks.
3793
3794 2006-12-19  Andreia Gaita  <avidigal@novell.org>
3795
3796         * SendKeys.cs: Changed some things to match ms.net behaviour
3797         when parsing shifted capital letters.
3798         
3799         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
3800         Add window handle as parameter to SendInput. X11 needs the 
3801         window handle, and the handle being passed      to it in the keys 
3802         queue is the active control handle (which windows needs), not 
3803         the window handle.
3804         
3805         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
3806         to support SendKeys on X.       
3807         
3808         * X11Keyboard: Implement helper method to lookup a linux keycode
3809         given the virtual keycode. Added table of keycode-2-virtualkey
3810         values to support this.
3811
3812 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3813
3814         * ListView.cs: Add support for SelectedIndexCollection
3815         and SelectedItemCollection 2.0 methods. Implement support
3816         for ImageKey too.
3817         * ListViewItem.cs: Add support for ListViewSubItemCollection
3818         2.0 methods. Also, fix an incorrect behavior of AddRange method
3819         (it shouldn't call Clear).
3820         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
3821
3822 2006-12-19  Jackson Harper  <jackson@ximian.com>
3823
3824         * RichTextBox.cs: 
3825         * TextBoxBase.cs: New args for FormatText
3826         * TextControl.cs: Rewrote the main drawing method, this version
3827         feels a little easier to understand and debug to me.  Hopefully it
3828         does to others also
3829         - Fix FormatText to OR in the new formating values.  Added
3830         FormatSpecified param, basically this works in the same way as
3831         BoundsSpecified in Control.
3832         - Set the caret properties when the caret is positioned.
3833         - When wrapping text make sure that we calculate the width of the
3834         last character
3835         - when calculating alignments we might have wrapped down to the
3836         next line, so don't search for an individual tag, search for the
3837         end of the line
3838         - We need to invalidate the selection area when we replace the
3839         selection.
3840         
3841 2006-12-19  Daniel Nauck  <dna@mono-project.de>
3842
3843         * Application.cs: add Restart () 2.0 support
3844
3845 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3846
3847         * MenuItem.cs: Invalidate menu item rectangle after change Enable
3848         property. Fixes #80268.
3849         
3850 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3851
3852         * MenuAPI.cs: Dont trigger select event when closes top menu
3853         item. Fixes #80270.
3854
3855 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3856
3857         * MenuAPI.cs: When you click on menuitem only trigger onselect
3858         event for top menu itens. Fixes #80271.
3859         
3860 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3861
3862         * MdiWindowManager.cs: Make IconicBounds depend on
3863         the bottom of MdiClient, not the top (fixes #80267)
3864         
3865 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3866
3867         * MdiClient.cs: Added missing 2.0 attribute
3868
3869 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3870
3871         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
3872         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
3873
3874 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3875
3876         * MenuAPI.cs: Fix click when menuitem is not popup,
3877         this regression was caused by last commit (#80272).
3878
3879 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
3880
3881         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
3882         fire click event or close menu. Fixes #80272.
3883
3884 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3885
3886         * ListViewHitTestInfo.cs: add
3887
3888 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3889
3890         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
3891         * FlatButtonAppearance.cs: add
3892         * DockingAttribute.cs: add
3893
3894 2006-12-17  Chris Toshok  <toshok@ximian.com>
3895
3896         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
3897         and rebind our columns when it does - this way, if you make
3898         changes to the DataTable (or set the Table attribute on a DataView
3899         after setting it as the DataGrid's DataSource, the changes are
3900         made visible.)  Fixes bug #80107.
3901
3902 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3903
3904         * ListViewGroup.cs: add internal Location property for layouting.
3905         * Theme.cs: add abstract ListViewGroupHeight function.
3906         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
3907
3908 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3909
3910         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
3911         Added reset of selected index to 0 when adding first tab page.
3912         Fixes #80264
3913         
3914         * NumericUpDown.cs: Fix NET_2_0 check
3915
3916 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3917
3918         * ListViewGroup.cs: fixed DefaultValueAttribute value
3919
3920 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3921
3922         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
3923
3924 2006-12-15  Miguel de Icaza  <miguel@novell.com>
3925
3926         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
3927         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
3928         ScrollableControl.cs: Add a handful of methods that are
3929         overwritten in 2.0 
3930
3931 2006-12-15  Chris Toshok  <toshok@ximian.com>
3932
3933         * XplatUIWin32.cs: initial implementation of the Reversible
3934         drawing functions.  there are some problems.  DrawReversibleFrame
3935         doesn't seem to work at all for Dashed FrameStyle, and in the
3936         Thick case there are drawing errors at the corners (we probably
3937         need to bind Rectangle instead of doing moveto/lineto's.)
3938
3939 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3940         
3941         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
3942         to send blocks of key messages. Send accumulates keys to send with Flush, 
3943         while SendWait sends all keys immediately.
3944                 
3945         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
3946         XplatUIX11.cs,  XplatUIX11-new.cs:
3947         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
3948         to Win32 SendInput.
3949         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
3950         
3951         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
3952         testing for ms.net on this class is very tricky, as the tests run too fast 
3953         to allow the hook to release, essentially freezing the keyboard and the 
3954         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
3955         category :p
3956
3957 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3958
3959         * Padding.cs: fixed serialization compability to MS ("_var" field names),
3960                         added missing attributes.
3961  
3962 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3963
3964         * ListViewGroup.cs: Added missing attributes.
3965         * ListViewGroupCollection.cs: Added missing attributes.
3966
3967 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3968
3969         * ListViewItem.cs: fixed ListViewSubItem text property.
3970
3971 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3972         
3973         * Control.cs: Added missing 2.0 attributes
3974         
3975 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3976         
3977         * MdiClient.cs: Added missing 2.0 attribute.
3978         * MonthCalendar.cs: Added some missing 2.0 attributes 
3979         and properties.
3980         
3981 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3982
3983         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
3984
3985 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
3986
3987         * MainMenu.cs: Add the new 2.0 constructor to help out people
3988         using the MainMenu in VS2005.
3989
3990 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3991         
3992         * MdiChildContext.cs: Removed it, no longer used.
3993         * MdiClient.cs: Added missing 2.0 attributes.
3994         
3995 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3996         
3997         * InternalWindowManager.cs: Fix a NullRef with previous 
3998         changes for toolwindows.
3999         
4000 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4001
4002         * Control.cs: 
4003         - Added AfterTopMostControl to allow for certain controls 
4004         to always stay on top when normal controls are brought to 
4005         front.
4006         
4007         * XplatUIWin32.cs: 
4008         - (DrawInversibleRectangle): Get window rectangle from Win32 
4009         in stead of from control, since Win32 doesn't calculate
4010         screen coords correctly from control's Location if it 
4011         have docked siblings.
4012         
4013         * MdiWindowManager.cs:
4014         - Correct the control menu popup location when clicked on
4015         the maximized form icon. (fixes #80223.1)
4016         - Don't show moving rectangle if mouse hasn't moved from
4017         the original clicked point.
4018         - Removed FormGotFocus handler (not used).
4019         - Calculate the control buttons location from the main
4020         window's size and not client size (fixes #79770).
4021         - Form is now closed when the form icon is double-clicked
4022         (fixes #79775). 
4023         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
4024         
4025         * InternalWindowManager.cs:
4026         - Moved some MDI-only methods to MdiWindowManager.
4027         - Removed unused properties and methods.
4028         - Unified method naming for methods handling wm messages.
4029         - Moved all message handling to seperate methods for
4030         each message.
4031         
4032         * ThemeWin32Classic.cs:
4033         - DrawManagedWindowDecorations now draws the title bar 
4034         with a gradient brush.
4035         - Add a CPDrawButtonInternal that allows us to specify
4036         light, normal and dark colors for the buttons (control 
4037         buttons for MDI children were drawn with the same light
4038         color as the background, therefore loosing the 3D effect).
4039         
4040         * SizeGrip.cs:
4041         - Add a CapturedControl property that is used to 
4042         determine the control to resize (defaults to parent). 
4043         Needed for MdiClient, since its SizeGrip's parent is
4044         MdiClient, but the control to resize is the main form.
4045         
4046         * MdiClient.cs:
4047         - Set SizeGrip's CapturedControl to the main form in order
4048         to resize the main form and not the MdiClient.
4049         - Override AfterTopMostControl to leave the scrollbars 
4050         always on top.
4051
4052 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4053
4054         * ListView.cs: fixed ListViewItemCollection AddRange and
4055                         implemented ListViewItemCollection AddRange 2.0 support.
4056
4057 2006-12-15  Daniel Nauck  <dna@mono-project.de>
4058
4059         * ListViewGroup.cs: Add.
4060         * ListViewGroupCollection.cs: Add
4061         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
4062         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
4063                                 stub for ImageKey 2.0 support.
4064
4065 2006-12-14  Mike Kestner  <mkestner@novell.com>
4066
4067         * ListView.cs: add text padding to the autocalculation for columns
4068         of width -2.  Fixes #80207.
4069  
4070 2006-12-14  Mike Kestner  <mkestner@novell.com>
4071
4072         * ListView.cs: add some index guarding for partial row navigation 
4073         logic.  Fixes #80250.
4074
4075 2006-12-14  Mike Kestner  <mkestner@novell.com>
4076
4077         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
4078         are added or inserted to the collection.  Fixes #81099.
4079
4080 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
4081
4082         * MenuAPI.cs: Closes menu when right click out side of popup
4083         it fix problem in ContextMenu and MainMenu. Fixes #80252.
4084
4085 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4086
4087         * ListViewItem.cs: Fix dumb error.
4088
4089         * ListView.cs: Add Find and ContainsKey methods in 
4090         ListViewItemCollection, and also return true for IsReadOnly
4091         and IsFixedSize (changes for 2.0). 
4092
4093 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
4094
4095         * Control.cs: Allow Region to be set to null.
4096
4097 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4098
4099         * MdiWindowManager.cs: Remove unused (commented out) code.
4100         * Form.cs: When the MdiChild is maximized, the form needs 
4101         WM_NCMOUSELEAVE, so request it.
4102         * InternalWindowManager.cs: 
4103         - Added tooltips to control buttons.
4104         - Removed duplicated control button handling code.
4105         - Removed unused (commented out) code.
4106         
4107 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
4108
4109         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
4110         was used because we must set cursor without trigger ChangeCursor event
4111         and without change Cursor control property. Fixes #79963.
4112
4113 2006-12-12  Andreia Gaita  <avidigal@novell.com>
4114         
4115         * Control.cs: Check if Region setter value is null, and ignore
4116
4117 2006-12-12  Jackson Harper  <jackson@ximian.com>
4118
4119         * TextControl.cs: We were almost always drawing one more line then
4120         needed, since the GetLineByPixel will return the last line found
4121         at that pixel. In most cases though, we were invalidating up to
4122         the junction between two lines.
4123         - Improve debug code.
4124
4125 2006-12-12  Chris Toshok  <toshok@ximian.com>
4126
4127         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
4128         and FillReversibleRectangle.
4129
4130         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
4131         and FillReversibleRectangle.
4132
4133         * XplatUIWin32.cs: add stubs which do nothing for
4134         DrawReversibleFrame, DrawReversibleLine, and
4135         FillReversibleRectangle.
4136
4137         * XplatUIOSX.cs: add stubs which raise NIE for
4138         DrawReversibleFrame, DrawReversibleLine, and
4139         FillReversibleRectangle.
4140
4141         * XplatUIX11.cs: add working implementation for
4142         DrawReversibleFrame, DrawReversibleLine, and
4143         FillReversibleRectangle.
4144         
4145         * ControlPaint.cs: implement DrawReversibleFrame,
4146         DrawReversibleLine, and FillReversibleRectangle, by calling into
4147         the appropriate XplatUI method.
4148
4149 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4150
4151         * Form.cs: Make MdiClient have the focus even if it's
4152         not selectable, since it should receive WM_KEY* and WM_MOUSE 
4153         messages. Fixes #79907.
4154         
4155 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4156
4157         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
4158         queried after the window is created.
4159         
4160         * XplatUIX11.cs: Added SendParentNotify to implement 
4161         WM_PARENTNOTIFY logic. Fixes #79965.
4162         
4163         * Control.cs: Added MakeParam.
4164         
4165 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4166
4167         * MdiClient.cs: Resume Layout before setting window
4168         states (fixes #80201).
4169
4170 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4171
4172         * MenuAPI.cs: Deselect a menu item after performing
4173         the click (fixes #80197).
4174
4175 2006-12-11  Jackson Harper  <jackson@ximian.com>
4176
4177         * TextBoxBase.cs: We need to cap this value, since Maximum -
4178         ViewPortHeight can be less than zero.
4179         - Only do selection with the left mouse button.
4180         * TextBox.cs: Don't tell the world that we have a context menu.
4181         * Control.cs: New method so that we can control whether or not the
4182         context menu is visible outside MWF.
4183
4184 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4185
4186         * ToolBarButton.cs: Fix text positon. 
4187
4188 2006-12-11  Miguel de Icaza  <miguel@novell.com>
4189
4190         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
4191
4192         * Control.cs (DoubleBuffered): Add implementation.
4193
4194         * Application.cs (OpenForms): Add.
4195
4196 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4197
4198         * Form.cs: Use opacity instead of Opactiy to determine if we need
4199         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
4200
4201 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
4202
4203         * Control.cs: Fix NRE if Control.Site was set to null.
4204
4205 2006-12-11  Chris Toshok  <toshok@ximian.com>
4206
4207         * Control.cs: ControlCollection.Remove should return if the arg is
4208         null, and ControlCollection.SetChildIndex should raise a ANE.
4209
4210 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
4211
4212         * Control.cs: Verify value set for Dock property. Code formatting
4213         updates.
4214
4215 2006-12-11  Jackson Harper  <jackson@ximian.com>
4216
4217         * TextControl.cs: Draw the caret and the selection when a flag is
4218         set on the owner.
4219         * TextBoxBase.cs: We want to draw the caret and the selection for
4220         TextBox but not for TextBoxBase.
4221         - If the window is resized and scrolling is no longer needed (the
4222         whole doc is visible) set the scroll position to zero.
4223         - The default SelectWord (the one TextBox uses) should move the
4224         caret to the end of the word.
4225         - SelectAll moves the caret to the end of the selection.
4226         * TextBox.cs: We don't selectall on focus, we just do it when the
4227         control is created.
4228         
4229 2006-12-11  Mike Kestner  <mkestner@novell.com>
4230
4231         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
4232
4233 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4234
4235         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
4236         2.0 support.
4237         * ListViewItem.cs: Add Name 2.0 property.
4238
4239 2006-12-11  Andreia Gaita  <avidigal@novell.com>
4240
4241         * TabControl.cs: Set visibility on selected or default tab 
4242         when tabcontrol handle is created, so that it's contents
4243         actually show up (duh). Fixes #80193
4244         Don't redraw the control if there is no handle created, as
4245         the selected index might be completely invalid. Added some tests
4246         to check for this.
4247
4248 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
4249
4250         * ToolBar.cs: Uses maximun width and height of all buttons as 
4251         button rectangle when ButtonSize specified, it looks strange but
4252         is what happens in Win32. Fixes #80189.
4253
4254 2006-12-11  Jackson Harper  <jackson@ximian.com>
4255
4256         * TextControl.cs: Need to track undo levels ourself, since
4257         compound actions will mess them up.
4258
4259 2006-12-10  Andreia Gaita  <avidigal@novell.com>
4260
4261         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
4262         SelectedIndex value is changed (even if it's not valid).
4263         Reset SelectedIndex to 0 when the handle is created and if
4264         the current index is invalid.
4265         Fixes SelectdeIndex unit tests and #80128
4266
4267 2006-12-08  Chris Toshok  <toshok@ximian.com>
4268
4269         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
4270         calls EndEdit, it needs to be called before we set current_cell to
4271         its new value.  Otherwise, we end up committing the value in the
4272         textbox to the new cell as well.  Fixes bug #80160.
4273
4274 2006-12-08  Chris Toshok  <toshok@ximian.com>
4275
4276         * Form.cs (set_CancelButton): if the button's DialogResult is
4277         None, set it to Cancel.  Fixes bug 80180.
4278
4279 2006-12-08  Jackson Harper  <jackson@ximian.com>
4280
4281         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
4282         to watch ourselves when setting the canvas size and setting the
4283         scrollbar values.
4284
4285 2006-12-08  Chris Toshok  <toshok@ximian.com>
4286
4287         * DataGrid.cs: comment out the two MakeTransparent calls for the
4288         time being so people using trunk (and not 1.2.2) on windows can
4289         actually use the datagrid.  This deals with bug #80151.
4290
4291 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4292
4293         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
4294         Graphics.DrawImage (image, int, int, int, int) overload instead
4295         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
4296         the dpi difference and was blurring images it drew.
4297         [Fixes bug #79960]
4298
4299 2006-12-08  Chris Toshok  <toshok@ximian.com>
4300
4301         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
4302         rowcnt is 0 (such as with an empty datasource), and make sure we
4303         initialize not_usedarea.Y to cells.Y, so we don't draw over the
4304         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
4305
4306 2006-12-08  Chris Toshok  <toshok@ximian.com>
4307
4308         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
4309         grid.
4310
4311 2006-12-08  Chris Toshok  <toshok@ximian.com>
4312
4313         [ Fixes bug #80167 ]
4314         
4315         * ThemeWin32Classic.cs: don't draw the image if the button's flat
4316         style is FlatStyle.System.
4317
4318         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
4319         ButtonBase.flat_style private, and switch uses of it to the public
4320         property.
4321         
4322 2006-12-08  Chris Toshok  <toshok@ximian.com>
4323
4324         [ Fixes bug #80121 ]
4325         
4326         * ThemeWin32Classic.cs: center the caption text in the datagrid
4327         when we draw it.
4328
4329         * DataGrid.cs: lessen the amount we add to the caption height from
4330         6 to 2.  6 was making it huge.
4331
4332 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4333
4334         * UpDownBase: Handle MouseWheel call directly instead of capturing
4335         the inner textbox's OnMouseWheel. Fixes #80166
4336
4337 2006-12-08  Jackson Harper  <jackson@ximian.com>
4338
4339         * TextControl.cs: We need to invalidate the textbox when we empty
4340         it (how had this not been discovered before?)
4341
4342 2006-12-08  Jackson Harper  <jackson@ximian.com>
4343
4344         * TextBoxBase.cs: Reworked the mouse down code so I could get it
4345         to behave like MS, we now ignore the eventargs.Click and just
4346         track state ourself, which we were already doing anyways.
4347         - Constrain the double click handler to the double click size.
4348         
4349 2006-12-08  Chris Toshok  <toshok@ximian.com>
4350
4351         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
4352         direction if that scrollbar isn't shown.  fixes bug #80158.
4353
4354 2006-12-08  Andreia Gaita  <avidigal@novell.com>
4355
4356         * NumericUpDown.cs: Update value on getter. Fixes #79950
4357
4358 2006-12-08  Chris Toshok  <toshok@ximian.com>
4359
4360         * MenuItem.cs: add back in the event cloning code.  I didn't know
4361         how to do it in the face of the EventHandlerList work i'd done
4362         last week.  Fixes bug #80183.
4363
4364 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
4365
4366         * Control.cs: Add an invalidate to the BackgroundImage setter.
4367         [Fixes 80184]
4368
4369 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4370
4371         * ToolStrip*: Add some small properties reported by MoMA, fix event
4372         firing and default properties based off of unit tests, and add some
4373         attributes based off of the class status page.
4374
4375 2006-12-07  Jackson Harper  <jackson@ximian.com>
4376
4377         * TextBoxBase.cs: Take HideSelection into account when determining
4378         whether or not to show the selection.
4379         * RichTextBox.cs: After inserting the RTF into the document move
4380         the cursor to the beginning of the document.
4381
4382 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
4383
4384         * Control.cs: Remove static ArrayList "controls" which maintained
4385         a reference to every control created.
4386         * Application.cs: Create a static FormCollection to maintain a reference
4387         to every form created.  Use it in places that formerly enumerated through
4388         the controls one looking for forms.
4389         * Form.cs: Add and remove self from above FormCollection.
4390
4391 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
4392
4393         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
4394           not libgdk (though it makes me wonder why I didn't have any
4395           problems)
4396
4397 2006-12-07  Chris Toshok  <toshok@ximian.com>
4398
4399         [ you had to know this was coming after that last commit...]
4400         
4401         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
4402         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
4403         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
4404         XCopyArea).
4405
4406 2006-12-07  Chris Toshok  <toshok@ximian.com>
4407
4408         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
4409         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
4410         all the behavior we need for double buffering.
4411
4412         * XplatUIDriver.cs: implement the 3 double buffer methods using a
4413         client side Bitmap, just like the old Control-based double buffer
4414         code did.  The methods are virtual, so each XplatUI driver
4415         subclass can replace the implementation to use a faster, platform
4416         specific approach.
4417
4418         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
4419         double buffer code, and clean things up a bit in the process.
4420
4421 2006-12-06  Chris Toshok  <toshok@ximian.com>
4422
4423         * Control.cs: reindent WndProc.
4424
4425 2006-12-06  Chris Toshok  <toshok@ximian.com>
4426
4427         [ I wanna be like BenM when I grow up ]
4428         
4429         * Hwnd.cs: create a single static Graphics object on the static
4430         Bitmap we create.  use this for our text measurements.
4431
4432         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
4433         This was causing us to allocate a backbuffer for every control,
4434         even when it wasn't flagged as double buffered.  Instead use the
4435         single graphics instance.  This might have implications for
4436         multithreaded applications.  If we run into problems we can switch
4437         to creating 1 Graphics per control, on the static Hwnd bitmap.
4438
4439         this change nets us a 7M savings in private dirty mappings when
4440         running FormsTest.exe.
4441
4442 2006-12-06  Chris Toshok  <toshok@ximian.com>
4443
4444         * ListView.cs: the BackgroundImage override is just to set
4445         attributes.  chain up to base.BackgroundImage.
4446
4447         * RichTextBox.cs: same.
4448
4449         * ToolBar.cs: same, but we need to also redraw the toolbar when it
4450         changes, so instead a handler for BackgroundImageChanged.
4451         
4452         * Control.cs: make background_image private.
4453
4454 2006-12-06  Chris Toshok  <toshok@ximian.com>
4455
4456         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
4457         sure we even need this assignment, but roll with it for now.
4458
4459         * Control.cs: make the cursor field private.
4460
4461 2006-12-06  Chris Toshok  <toshok@ximian.com>
4462
4463         * Form.cs: we don't need to explicitly set ImeMode to
4464         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
4465         behavior in the face of ImeMode.Inherit.
4466
4467         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
4468         change the ctor's assignment to use ImeMode instead of ime_mode.
4469
4470         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
4471         ImeModeInherit.  Only check for the parent's imemode (and return
4472         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
4473         This fixes the button unit test, which sets both ImeMode and
4474         DefaultImeMode to ImeMode.Disable.
4475
4476         also make the ime_mode field private.
4477
4478 2006-12-06  Chris Toshok  <toshok@ximian.com>
4479
4480         * Control.cs: make control_style private.
4481
4482         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
4483         setting the styles to true, then setting them to false instead of
4484         reverting to their previous values.
4485
4486         also, call SetStyle on the scrollbars instead of using
4487         control_style directly.
4488
4489 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
4490
4491         * FormCollection.cs: Implement. [2.0]
4492
4493 2006-12-06  Chris Toshok  <toshok@ximian.com>
4494
4495         * Control.cs: make tab_stop private.
4496
4497         * Label.cs: set TabStop, not tab_stop.  reformat some event
4498         add/remove methods to make them more compact.
4499
4500 2006-12-06  Chris Toshok  <toshok@ximian.com>
4501
4502         * RadioButton.cs: fix TabStop handling.
4503
4504 2006-12-06  Chris Toshok  <toshok@ximian.com>
4505
4506         * TextBox.cs: remove the explicit assignments to has_focus.
4507         Control does that.
4508
4509         * ButtonBase.cs: remove the assignment to has_focus.  Control will
4510         manage that.
4511         
4512 2006-12-06  Chris Toshok  <toshok@ximian.com>
4513
4514         * ButtonBase.cs: remove all uses of is_enabled from this code.
4515         it's always true when any of the code containing the checks is
4516         executed.
4517
4518 2006-12-06  Chris Toshok  <toshok@ximian.com>
4519
4520         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
4521         with different semantics (some are present in both 1.1 and 2.0
4522         profiles) so that we match MS's behavior in our unit tests.
4523
4524 2006-12-06  Jackson Harper  <jackson@ximian.com>
4525
4526         * TextControl.cs: Make this operation undoable.
4527         * TextBoxBase.cs: Factor the border width into the preferred
4528         height.
4529         - implement Modified as per the spec.
4530
4531 2006-12-06  Chris Toshok  <toshok@ximian.com>
4532
4533         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
4534
4535 2006-12-06  Chris Toshok  <toshok@ximian.com>
4536
4537         * Control.cs: make right_to_left and context_menu fields private.
4538
4539 2006-12-06  Chris Toshok  <toshok@ximian.com>
4540
4541         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
4542         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
4543         Control.child_controls private.  switch all uses over to
4544         Control.Controls.
4545
4546 2006-12-06  Chris Toshok  <toshok@ximian.com>
4547
4548         * System.Windows.Forms/GroupBox.cs,
4549         System.Windows.Forms/AccessibleObject.cs,
4550         System.Windows.Forms/ErrorProvider.cs,
4551         System.Windows.Forms/Control.cs,
4552         System.Windows.Forms/UpDownBase.cs,
4553         System.Windows.Forms/ScrollBar.cs,
4554         System.Windows.Forms/DateTimePicker.cs,
4555         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
4556         System.Windows.Forms/ToolTip.cs,
4557         System.Windows.Forms/RadioButton.cs,
4558         System.Windows.Forms/LinkLabel.cs,
4559         System.Windows.Forms/Splitter.cs,
4560         System.Windows.Forms/TextBoxBase.cs,
4561         System.Windows.Forms/ToolStripTextBox.cs,
4562         System.Windows.Forms/ContainerControl.cs,
4563         System.Windows.Forms/ThemeWin32Classic.cs,
4564         System.Windows.Forms/SizeGrip.cs,
4565         System.Windows.Forms/ToolStripDropDown.cs,
4566         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
4567         private.  switch all uses over to Control.Parent.
4568
4569 2006-12-06  Chris Toshok  <toshok@ximian.com>
4570
4571         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
4572         Control does this before calling emitting these events.
4573
4574         * TabControl.cs: same.
4575
4576         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
4577         Control.client_rect.
4578
4579         * ButtonBase.cs: use the ClientSize property instead of the
4580         client_size field.
4581
4582         * ScrollableControl.cs: same.
4583
4584         * Control.cs: another pass at making properties private.  also,
4585         move the initialization of tab_stop to the ctor.
4586
4587 2006-12-05  Andreia Gaita <avidigal@novell.com>
4588
4589         * TabControl.cs: Let the selected index be set freely if the 
4590         control handle is not yet created.
4591
4592 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
4593
4594         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
4595         internal until I can rewrite DefaultLayout.
4596         * ToolStrip.cs: Fix build error and some general cleaning.
4597         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
4598         Fix build errors caused by making some of Control's fields private.
4599
4600 2006-12-05  Jackson Harper  <jackson@ximian.com>
4601
4602         * TextControl.cs: Redo Insert a little so that it use IndexOf
4603         instead of Split, this prevents it from messing up on things like
4604         \n\n\n. Also more effecient since the split array doesn't need to
4605         be created.
4606         * TextBoxBase.cs: AppendText doesnt handle multiline and non
4607         multiline text differently, this is the first of many fixes that
4608         will make multiline/non-multiline the same thing as far as the
4609         TextBoxBase is concerned.
4610         - Don't split the text and insert lines, this can lose some line
4611         endings (like is the last line a soft or hard break). Instead use
4612         the new Insert.
4613         - Fix an off by one when combining all the lines in the Text
4614         getter.
4615         - Remove separate multiline handling from the Text getter/setter.
4616
4617 2006-12-05  Chris Toshok  <toshok@ximian.com>
4618
4619         * ButtonBase.cs: a few changes:
4620
4621         - don't reinitialize internal Control fields in the ctor when they
4622         have the same values as Control sets them.
4623
4624         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
4625         this before calling those methods.
4626
4627         - we don't need to call Refresh for anything.  use Invalidate
4628         instead.
4629
4630         - OnEnabledChanged doesn't need to redraw at all - Control.cs
4631         calls Refresh in its OnEnabledChanged.
4632         
4633         - several of the events we were registered for in the ctor to
4634         redraw ourselves already include calls to Invalidate in the
4635         property setters that raise the events.  remove the extra
4636         invalidation.
4637
4638         - reformat a switch statement that was 83274658 columns wide.
4639         
4640 2006-12-05  Mike Kestner  <mkestner@novell.com>
4641
4642         * ComboBox.cs: fix a unit test regression from a TextBox
4643         SelectionLength return of -1 when there's no selection.  
4644
4645 2006-12-05  Chris Toshok  <toshok@ximian.com>
4646
4647         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
4648         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
4649         cleaning up some of the internal Control fields being used by
4650         subclasses.
4651
4652 2006-12-05  Mike Kestner  <mkestner@novell.com>
4653
4654         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
4655         listbox after AddImplicit calls since it defaults to hidden. Add a 
4656         hack to preserve requested heights across DropDownStyle changes.
4657
4658 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
4659
4660         * PropertyGrid.cs: Hide FindFirstItem method from public API.
4661
4662 2006-12-05  Chris Toshok  <toshok@ximian.com>
4663
4664         * DataGridView.cs: fix compiler warnings.
4665
4666         * PrintControllerWithStatusDialog.cs: same.
4667
4668         * ToolBar.cs: same.
4669
4670         * FolderBrowserDialog.cs: same.
4671
4672         * Splitter.cs: same.
4673
4674         * DataGridViewComboBoxCell.cs: same.
4675
4676         * XplatUIWin32.cs: same.
4677
4678         * PictureBox.cs: same.
4679
4680         * Win32DnD.cs: same.
4681
4682         * PageSetupDialog.cs: same.
4683
4684         * FileDialog.cs: same.
4685
4686         * PrintDialog.cs: same.
4687
4688         * DataGridTextBoxColumn.cs: same.
4689
4690         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
4691
4692 2006-12-05  Chris Toshok  <toshok@ximian.com>
4693
4694         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
4695         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
4696         System.ComponentModel.EventHandlerList work.
4697
4698 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
4699
4700         * DrawTreeNodeEventArgs.cs: Added.
4701
4702 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4703         
4704         * InternalWindowManager.cs: Remove an unused field.
4705         
4706 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4707
4708         * InternalWindowManager.cs:
4709         - Save the point where the title bar is clicked.
4710         
4711         * MdiWindowManager.cs:
4712         - Only allow moving of the window as long as the 
4713         clicked point on the title bar does not get out of
4714         MdiClient's rectangle. Fixes #79982.
4715         
4716         * MdiClient.cs:
4717         - Added Horizontal/VerticalScrollbarVisible.
4718         - Simplified the scrollbar sizing algorithm.
4719         - Cache the difference in scrolled value in
4720         H/VBarValueChanged and move the calculation out
4721         of the for loop.
4722
4723 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4724
4725         * Control.cs: Make the Console.WriteLine in WndProc 
4726         write more info.
4727
4728 2006-12-05  Chris Toshok  <toshok@ximian.com>
4729
4730         * ToolStripManager.cs, ToolStripButton.cs,
4731         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
4732         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
4733         ToolStripSplitButton.cs, ToolStripSeparator.cs,
4734         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
4735         ToolStripProgressBar.cs, ToolStripContainer.cs,
4736         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
4737         to using System.ComponentModel.EventHandlerList.
4738
4739 2006-12-04  Chris Toshok  <toshok@ximian.com>
4740
4741         * LinkLabel.cs: fix up compiler warnings.
4742
4743         * TableLayoutSettings.cs: same.
4744
4745         * TreeView.cs: same.
4746
4747         * ToolBar.cs: same.
4748
4749         * TabControl.cs: same.
4750
4751         * RichTextBox.cs: same.
4752
4753         * ListViewItem.cs: same.
4754
4755         * PropertyGrid.cs: same.
4756
4757         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
4758
4759         * ToolTip.cs same.
4760
4761         * TextRenderer.cs: fix up compiler warnings.
4762
4763         * Label.cs: same.
4764
4765         * Form.cs: corcompare fixes.
4766
4767         * PictureBox.cs: fix up compiler warnings.
4768
4769         * ImageListStreamer.cs: same.
4770
4771         * TrackBar.cs: corcompare fix.
4772
4773         * Control.cs: fix up compiler warnings.
4774
4775         * SplitterPanel.cs: same.
4776
4777         * NumericTextBox.cs: same.
4778
4779         * ImageList.cs: same.
4780
4781         * StatusStrip.cs: same.
4782
4783         * ProgressBar.cs: corcompare fix.
4784
4785         * ToolStripButton.cs: fix up compiler warnings.
4786
4787         * ToolStripStatusLabel.cs: same.
4788
4789         * ToolStripSplitButton.cs: same.
4790
4791         * ToolStripSeparator.cs: same.
4792
4793         * ToolStripProgressBar.cs: same.
4794
4795         * ToolStripDropDownMenu.cs: same
4796
4797         * ToolStripDropDown.cs: same.
4798
4799         * ToolStripDropDownButton.cs: same.
4800
4801         * ToolStrip.cs: same.
4802
4803         * ToolStripControlHost.cs: same.
4804
4805         * ToolStripContentPanel.cs: same.
4806
4807         * ToolStripDropDown.cs: same.
4808
4809         * ToolStripContainer.cs: same.
4810
4811         * ToolStripPanel.cs: same, and add "new" where we need it to work
4812         with the new ArrangedElementCollection.
4813
4814         * ToolStripItemCollection.cs: add "new" where we need it to work
4815         with the new ArrangedElementCollection.
4816
4817 2006-12-04  Andreia Gaita <avidigal@novell.com>
4818
4819         * TabControl.cs: Fix default tab selection to after TabControl
4820         gets focus and not before. Fixes #80128
4821
4822 2006-12-04  Chris Toshok  <toshok@ximian.com>
4823
4824         * DataGridTableStyle.cs: remove the gross calling of
4825         datagrid.Refresh from here.  It's a broken idea and it doesn't
4826         work anyway.
4827
4828         * DataGrid.cs: instead, just register/unregister from the
4829         DataGridTableStyle events in CurrentTableStyle.  we play it
4830         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
4831         even though some would most likely not require it.  Fixes bug
4832         #80115 (and one portion of #80117 as a side effect).
4833
4834 2006-12-04  Chris Toshok  <toshok@ximian.com>
4835
4836         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
4837         so the textbox (if any) goes away.  Fixes bug #80117.
4838
4839 2006-12-04  Chris Toshok  <toshok@ximian.com>
4840
4841         * DataGridColumnStyle.cs: set the column's readonly property
4842         initially based on the property descriptor's IsReadOnly.  Fixes
4843         bug #80044.
4844
4845 2006-12-04  Chris Toshok  <toshok@ximian.com>
4846
4847         * ComboBox.cs: wrap the dropdown style changing work in
4848         SuspendLayout/ResumeLayout.  Fixes bug #79968.
4849
4850 2006-12-04  Jackson Harper  <jackson@ximian.com>
4851
4852         * TextBoxBase.cs: Fix off by one, since these are one-based.
4853         * TextBox.cs: Select all the text when we get focus.  The TextBox
4854         does this but the RTB does not.
4855
4856 2006-12-04  Chris Toshok  <toshok@ximian.com>
4857
4858         * DataGridTextBoxColumn.cs: remove some spew.
4859
4860         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
4861         but some part of me is saying "it shouldn't be here.."  At any
4862         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
4863         setting the value.
4864
4865 2006-12-04  Chris Toshok  <toshok@ximian.com>
4866
4867         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
4868         to reassign the propertydescriptor.
4869
4870 2006-12-04  Jackson Harper  <jackson@ximian.com>
4871
4872         * TextBoxBase.cs:
4873         * TextControl.cs: Remove some unused variables.  Maybe this will
4874         patch things up between mike and I.
4875         - don't split lines less then one char wide, if the viewport is
4876         that small text won't be visible anyways.
4877         
4878 2006-12-04  Jackson Harper  <jackson@ximian.com>
4879
4880         * TextBoxBase.cs: Default selection length is -1, need to do some
4881         more testing on windows to see when this is used for the property.
4882         - Redid the Lines [] property to that we properly remove soft line
4883         breaks
4884         - added support for preserving carriage returns
4885         -  CanUndo is not a variable like 'is undo enabled' it just returns
4886         true if there is undo operations available.
4887         - AppendText doesn't need to grab the last tag itself anymore,
4888         this happens automatically when we move the cursor.
4889         * TextControl.cs: Add CompoundActions to the undo class. This
4890         allows combining the other operations into one big option.  ie a
4891         paste will combine { delete old, insert new, move cursor }
4892         - Add InsertString undo operation
4893         - New method for deleting multiline text
4894         - Add carriage returns to lines. So we can preserve carriage
4895         returns when text is 'roundtripped'
4896
4897 2006-12-04  Chris Toshok  <toshok@ximian.com>
4898
4899         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
4900         minimum 0.  Fixes the scrollbar exception in bug #80136.
4901
4902 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4903
4904         * MdiClient.cs: 
4905         * MdiWindowManager: Removed unused fields and methods.
4906         
4907 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4908         
4909         * StatusBar.cs: Update all panels when a AutoSize=Contents
4910         panel needs updating.
4911         
4912         * StatusBarPanel.cs: Remove twidth and only use initialize.
4913         Fixes #80031.
4914                 
4915 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4916
4917         * Form.cs: When a form's MdiParent is set add it directly
4918         on top of the z-order in stead of relying on MdiClient's
4919         ActivateChild to do it. Fixes #80135.
4920         
4921         * MdiClient.cs: 
4922         - Remove original_order, mdi_child_list is already doing
4923         the same thing.
4924         - Create mdi_child_list on construction in
4925         stead of first use (avoids a few null checks).
4926
4927         * MenuItem.cs: Use an already existing list of mdi children
4928         to get the correct order of children and remove the other
4929         redundant list.
4930
4931 2006-12-04  Chris Toshok  <toshok@ximian.com>
4932
4933         * PropertyGridView.cs: cached_splitter_location is only used in
4934         !DOUBLEBUFFER code.
4935
4936         * PropertyGrid.cs: implement the ComComponentNameChanged event
4937         using Events, hoping that would fix the warning.  Looks like a
4938         compiler bug instead (#80144).
4939
4940         * PropertyManager.cs: remove unused method.
4941
4942 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
4943
4944         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
4945         include parentesis to fix expression evaluation. Fixes #79634.
4946
4947 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4948         
4949         * MenuAPI.cs:
4950         - Changes to fix behavior in Menu control, some reported in #80097
4951         and other detected during behavior refactory like a select event
4952         problems.
4953         - Remove unneded "if's" conditions.
4954         - Created an internal to flag when popup is active in control, we need 
4955         it because in .NET you can have menu active but without popup active
4956         when you active menu using popup without visible items.
4957         - Mimic win32 behavior for Select and Popup events.  
4958         - Dont open popup menu when you dont have visible subitems.
4959         - Do nothing when click on disabled menu item.
4960         - Some small changes to follow the coding style guidelines.
4961         - Unselect menu only when another control gives focus. Fixes #80097.
4962         - Remove unused code.
4963         
4964         * MenuItem.cs: internal VisibleItems method to check if menu
4965         theres visible subitems, it will be usefull to fix some 
4966         behavior in Menu control.
4967         
4968 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
4969         
4970         * Timer.cs: Tag property for 2.0 profile.
4971         
4972 2006-12-01  Chris Toshok  <toshok@ximian.com>
4973
4974         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
4975         
4976         * Win32DnD.cs: comment out some unused fields.
4977
4978         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
4979         some unused properties/methods.
4980
4981         * XplatUIX11.cs: fix MousePosition so we override the base class's
4982         property instead of conflicting with it.
4983
4984         * PictureBox.cs: comment out some unused fields
4985
4986         * OSXStructs.cs: make some struct fields public.
4987
4988         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
4989         MousePosition so we override the base class's property instead of
4990         conflicting with it.
4991
4992         * X11Dnd.cs: comment out some unused fields
4993
4994         * X11DesktopColors.cs: fix some struct field visibility to quiet
4995         the compiler.
4996
4997         * X11Dnd.cs: remove some debug code.
4998
4999         * ThemeClearlooks.cs: comment out unused field.
5000
5001         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
5002
5003         * ThemeGtk.cs: comment out some unused pinvokes.
5004
5005         * Timer.cs: remove some unused fields.
5006
5007         * ThemeClearlooks.cs: comment out unused field.
5008
5009         * UpDownBase.cs: comment out unused field.
5010
5011         * DataObject.cs: comment out unused field.
5012
5013         * DataGridBoolColumn.cs: reomve unused field.
5014
5015         * DataGrid.cs: remove unused field.
5016
5017         * Cursor.cs: remove old ToBitmap code.
5018
5019         * ControlPaint.cs: remove unused method.
5020
5021         * ScrollBar.cs: remove unused fields.
5022
5023         * ComboBox.cs: remove unused field, and chain up to
5024         AccessibleObject ctor.
5025
5026         * ListBox.cs: remove unused field.
5027
5028         * ButtonBase.cs: wrap a couple fields in NET_2_0.
5029
5030         * GridEntry.cs: remove unused fields.
5031
5032         * Binding.cs: remove unused fields.
5033
5034         * AxHost.cs: remove unused method.
5035
5036         * ContainerControl.cs: remove unused field.
5037
5038         * ScrollableControl.cs: remove unused fields.
5039
5040 2006-12-01  Chris Toshok  <toshok@ximian.com>
5041
5042         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
5043         the Where/WhereString stuff.  it's easy enough to CWL
5044         Environment.StackTrace.
5045
5046         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
5047         unused private fields.
5048
5049 2006-12-01  Jackson Harper  <jackson@ximian.com>
5050
5051         * TextControl.cs: Do not update the view while inserting multiline
5052         text. If we update the view we might wrap lines, before entering
5053         the new lines, which causes the new line insertion calculations to
5054         be totally fubared.
5055         - Remove an old TODO
5056         - Make debug output a little nicer
5057         
5058 2006-12-01  Chris Toshok  <toshok@ximian.com>
5059
5060         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
5061
5062 2006-12-01  Chris Toshok  <toshok@ximian.com>
5063
5064         [ fix the majority of the CS0108 warnings we've been suppressing ]
5065         
5066         * TreeView.cs: mark BackgroundImageChanged as 'new'.
5067
5068         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
5069         to "LayoutToolBar" to quiet mcs.
5070         
5071         * TabControl.cs: mark our ControlCollection class as 'new'.
5072
5073         * TextBoxBase.cs: mark some events as 'new'.
5074
5075         * Splitter.cs: TabStop is 'new'.
5076
5077         * ControlBindingsCollection.cs: mark a few methods as new since
5078         they change the visibility from protected to public.
5079
5080         * RadioButton.cs: DoubleClick -> base class, and remove unused
5081         HaveDoubleClick.
5082
5083         * MonthCalendar.cs: ImeMode property -> base class, and mark many
5084         events as new.
5085
5086         * NumericUpDown.cs: TextChanged -> base class.
5087
5088         * CheckedListBox.cs: mark our ObjectCollection class as new to
5089         quiet mcs.
5090
5091         * FolderBrowserDialog.cs: make HelpRequest event new and have it
5092         muck with the base class.
5093
5094         * StatusBar.cs: fix some mcs warnings about Update being the same
5095         name as a base class method.
5096
5097         * RichTextBox.cs: mark some events as new, and make them do things
5098         to the base class impl.
5099
5100         * UserControl.cs: mark TextChanged as new, and have it manipulate
5101         base.TextChanged.
5102
5103         * UpDownBase.cs: mark some things new.
5104
5105         * CheckBox.cs: mark DoubleClick "new", and add some text about
5106         what we need to look at.
5107
5108         * Panel.cs: make the events "new", and manipulate the base
5109         version.  these are just here for attributes.
5110
5111         * AccessibleObject.cs: make owner private.
5112
5113         * Control.cs: deal with AccessibleObject.owner being private.
5114         cache our own copy if we need it.
5115
5116         * Button.cs: add "new" to the DoubleClickEvent.
5117
5118         * ListBox.cs: no need to track our own has_focus here.  let
5119         Control.has_focus do it for us.  Also some other work to clear up
5120         warnings about not overriding base class methods of the same name.
5121         
5122         * ComboBox.cs: clear up some warnings about not override base
5123         class methods of the same name.
5124
5125 2006-12-01  Chris Toshok  <toshok@ximian.com>
5126
5127         * Form.cs: flag a few things as "new" to quiet some of the mcs
5128         warnings.
5129
5130         * AxHost.cs: same.
5131
5132         * PrintPreviewDialog.cs: same.
5133
5134         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
5135         now DGV isn't so horrible on the class status page.  also, move
5136         all events to using System.ComponentModel.EventHandlerList.  my
5137         wrists hurt.
5138
5139 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5140
5141         * MdiWindowManager.cs:
5142         - Set form to active mdi child if shown,
5143         and update the active mdi child to the next 
5144         remaining child in the z-order if the form is hidden.
5145
5146         * Form.cs: 
5147         - Track if the form has been visible and if its 
5148         visibility is beeing changed, so that the MdiClient
5149         can properly decide the ActiveMdiChild. The MdiClient 
5150         cannot track this since the form can change visibility 
5151         before MdiClient is created.
5152
5153         * MdiClient.cs:
5154         - Don't activate anything of the parent form is changing
5155         its visibility.
5156         - Rework ActiveMdiChild to only return visible mdi 
5157         children and take into account several other corner 
5158         cases.
5159
5160 2006-12-01  Chris Toshok  <toshok@ximian.com>
5161
5162         * IBindableComponent.cs: new 2.0 interface.
5163
5164 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
5165
5166         * DataGrid.cs: Font for caption area is bold by default.
5167
5168 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
5169
5170         * Menu.cs: Tag property for 2.0.
5171         
5172 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
5173
5174         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
5175         
5176 2006-12-01  Chris Toshok  <toshok@ximian.com>
5177
5178         * TreeView.cs: doh, the Begin* events should be
5179         TreeViewCancelEventHandler.
5180
5181 2006-12-01  Chris Toshok  <toshok@ximian.com>
5182
5183         * Form.cs: Form.ControlCollection already stores off the
5184         form_owner field.  don't access the base class's internal "owner"
5185         field.
5186
5187         * Control.cs: make all the fields in Control.ControlCollection
5188         private.  there's no need for any internal fields here.
5189
5190 2006-12-01  Chris Toshok  <toshok@ximian.com>
5191
5192         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
5193         OnHandleCreated.  Fixes bug #80109.
5194
5195 2006-12-01  Chris Toshok  <toshok@ximian.com>
5196
5197         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
5198         SplitContainer.cs, Control.cs, StatusStrip.cs,
5199         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
5200         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
5201         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
5202         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
5203         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
5204         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
5205         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
5206         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
5207         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
5208         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
5209
5210         do most of the work to convert our code over to use
5211         System.ComponentModel.Component.Events for
5212         adding/removing/dispatching events.
5213
5214
5215 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5216
5217         * DataGridView.cs: Fix an ArgumentNullException reported 
5218         twice today in IRC.
5219
5220 2006-11-30  Mike Kestner  <mkestner@novell.com>
5221
5222         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
5223         grabbed listbox.  Fixes #80036 and #80101.
5224
5225 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5226
5227         * Message.cs: Changed ToString() to match MS.
5228         
5229 2006-11-30  Jackson Harper  <jackson@ximian.com>
5230
5231         * TextBoxBase.cs: You can still change the selected text on a read
5232         only textbox.
5233         * TextControl.cs: Lower magic number for wrap calculations. This
5234         lets text get closer to the right (far) edge.
5235
5236 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
5237
5238         * Control.cs: Tweak 2.0 layout properties.
5239         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
5240         * TextRenderer.cs: Add a new overload.
5241         * ToolStrip*: Huge amount of changes and new features.
5242
5243 2006-11-30  Mike Kestner  <mkestner@novell.com>
5244
5245         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
5246         scroll range correct.  Fixes #79994.
5247
5248 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
5249
5250         * MdiWindowManager.cs: Update main form's text when
5251         a form is closed. (fixes #80038)
5252         
5253 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
5254
5255         * ToolBar.cs:
5256         - Fix an regression in ButtonSize.
5257         - Get ImeMode default value change to "Disable".
5258         - Get ShowTooltips default value change to true, default value is 
5259         "false" but after make a test in .NET we get "true" result as default.
5260         
5261 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
5262
5263         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
5264
5265 2006-11-29  Chris Toshok  <toshok@ximian.com>
5266
5267         * XplatUIWin32.cs (GetWindowTransparency): check return value of
5268         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
5269         SetWindowTransparency hasn't been called.
5270
5271 2006-11-29  Chris Toshok  <toshok@ximian.com>
5272
5273         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
5274         if it's supported.
5275         (set_AllowTransparency): reorder things a little so that the
5276         WS_EX_LAYERED style is removed properly.
5277
5278 2006-11-29  Chris Toshok  <toshok@ximian.com>
5279
5280         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
5281         
5282         * Form.cs: only call the XplatUI transparency method (get/set) if
5283         SupportsTransparency says it's supported. Otherwise fallback to
5284         doing nothing (in the set case) or returning the instance field we
5285         cache (in the get case).
5286
5287         * XplatUIStructs.cs: add TransparencySupport flag enum.
5288         
5289         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
5290         change to SupportsTransparency.
5291
5292         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
5293         TransparencySupport.None from SupportsTransparency.
5294
5295         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
5296         TransparencySupport.Set from SupportsTransparency.
5297
5298         * XplatUIWin32.cs: implement GetWindowTransparency calling
5299         GetLayeredWindowAttributes, and implement SupportsTransparency by
5300         checking whether or not both
5301         GetWindowTransparency/SetWindowTransparency are available
5302         entrypoints.  We need to do this since SetWindowTransparency is
5303         available as of win2k, but GetWindowTransparency requires winxp.
5304         yay win32 api.
5305
5306         * XplatUI.cs: Add GetWindowTransparency, and change
5307         SupportsTransparency to allow for either/both Get/Set.
5308
5309 2006-11-29  Chris Toshok  <toshok@ximian.com>
5310
5311         * DataGrid.cs: keep from going into an infinite loop redrawing a
5312         datagrid that has no datasource.  Fixes bug #80033.
5313
5314 2006-11-29  Chris Toshok  <toshok@ximian.com>
5315
5316         * MenuItem.cs: fix the NRE when we assign text (and therefore call
5317         Invalidate) before the mainmenu has been assigned to a control.
5318
5319 2006-11-29  Chris Toshok  <toshok@ximian.com>
5320
5321         * DataGrid.cs: detect when we should be double the double click
5322         row/column autosize stuff, although that codepath has yet to be
5323         written.  part of the work for bug #79891.
5324
5325 2006-11-29  Chris Toshok  <toshok@ximian.com>
5326
5327         * Binding.cs (SetControl): fix unit test.
5328
5329 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5330
5331         * PageSetupDialog.cs: Validate the margins and set them in
5332         PageSettings. 
5333         * NumericTextBox.cs: New class to mimic the behavior of the
5334         textboxes used in the printing dialogs.
5335
5336 2006-11-29  Andreia Gaita  <avidigal@novell.com>
5337         
5338         * Form.cs: Revert previous change (remove call UpdateBounds
5339         from form constructor), because it messes with the handle creation
5340         order, and that one needs lots and lots of love.
5341         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
5342         for valid printer and throw InvalidPrinterException if document
5343         is set but printer not valid), adding a MonoTODO. Once 
5344         handle creation is done properly, we can put this back in.
5345
5346 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5347
5348         * MenuItem.cs: Create a invalidate method for menu item, to be
5349         calling from set text, it make text changes to imadiate update
5350         on screen. Fixes #80013. 
5351         
5352 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5353
5354         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
5355         fixes bug #80070 and some other problem on toolbar buttons
5356         layout.
5357
5358 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
5359
5360         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
5361         with dotted brush.      Fixes #79564
5362         
5363 2006-11-28  Andreia Gaita  <avidigal@novell.com>
5364
5365         * Form.cs: Removed call to UpdateBounds on Form
5366         constructor, it was causing a call to CreateHandle
5367         before it was supposed to.
5368         * PrintControllerWithStatusDialog: Applied patch
5369         by Chris Toshok to hide controller when there are
5370         no printers available.
5371         PrintDialog.cs: initialize printer settings to 
5372         null - correct DefaultValues test #5
5373         * PrintPreviewControl.cs: Move PrintController
5374         initialization to GeneratePreview
5375         * PrintPreviewDialog.cs: 
5376         - Remove Preview generation     from Document_set(). It is 
5377         called on OnPaint
5378         - Throw InvalidPrinterException on CreateHandle if
5379         a Document is set but there are no printers or 
5380         printer is not valid.
5381         * ThemeWin32Classic: don't paint PrintPreviewControl
5382         if there is nothing to paint    
5383
5384 2006-11-28  Miguel de Icaza  <miguel@novell.com>
5385
5386         * Form.cs: Add another popular method.
5387
5388         * TabPage.cs: ditto.
5389
5390 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5391
5392         * MenuItem.cs: Fixed a warning.
5393         * InternalWindowManager: Fixed a warning.
5394
5395 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5396
5397         * MenuItem.cs:
5398         - When cloning a menu also clone MdiList and clone the 
5399           window menu items properly (as the forms and menuitems
5400           are kept in an internal hashtable, these need updating 
5401           as well)
5402         - Rewrote the window menu code, menu items are added in the
5403           order the forms were added to their parent, and they are
5404           updated every time the window menu is shown (before the
5405           list was only generated once, in the current order of the
5406           forms, and would never be updated). A checkmark is shown
5407           next to the item corresponding to the active mdi child.
5408
5409 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5410
5411         * XplatUIStructs.cs: 
5412         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
5413         
5414         * XplatUIWin32.cs: 
5415         - Added TME_NONCLIENT to TMEFlags.
5416         - Handles WM_NCMOUSEMOVE in GetMessage to 
5417           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
5418
5419         * MdiWindowManager:
5420         - Now merges mdi child menu to parent menu when maximized.
5421         - Recalculate NC areas of both mdi child and mdi parent. 
5422           Fixes #79757 (4).
5423           on window state and size changes.Fixes #79844 (3).
5424         - Handle WM_NCCALCSIZE to properly calculate borders.
5425
5426         * Form.cs:
5427         - Add/remove to the mdi containers list of mdi children 
5428           in the order they are added.
5429         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
5430           to the maximized mdi child.
5431         
5432         * InternalWindowManager.cs:
5433         - Only execute a click on the control buttons on the mouse up,
5434           not on the mouse down. Show the state of the button 
5435           (was only showing Normal state, never Pressed state). The
5436           pressed button now follows the mouse (if you click the Close 
5437           button and move the mouse over the Maximize button, the 
5438           Maximize button will be shown as pressed). Since Win32 does
5439           not generate WM_NCLBUTTONUP if you release the button outside
5440           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
5441           it as a mouse up.
5442         
5443         * ThemeWin32Classic.cs:
5444         - Draw a missing border around mdi child forms. Fixes #79844 (2).
5445
5446         * MdiClient.cs:
5447         - Added a list of forms which contains the order the forms are
5448           added to the mdi parent.
5449         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
5450         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
5451         - If the active form changes set the scrollbars to the top
5452           of the Z order, otherwise the form could hide them.
5453         - Scrollbars are now sized according to ClientSize, not 
5454           to Size, and they take into account the other scrollbar
5455           to determine maximum.
5456         
5457 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
5458         
5459         * XplatUI.cs:
5460         * XplatUIDriver.cs:
5461         * XplatUIX11.cs:
5462         * XplatUIWin32.cs:
5463         * XplatUIOSX.cs:
5464         - Added RequestAdditionalWM_NCMessages for windows to 
5465           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
5466           Currently only implemented in XplatUIWin32.
5467
5468 2006-11-27  Chris Toshok  <toshok@ximian.com>
5469
5470         * Hwnd.cs: only add the hwnd to the windows hash in
5471         set_WholeWindow and set_ClientWindow if whole_window/client_window
5472         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
5473
5474 2006-11-27  Mike Kestner  <mkestner@novell.com>
5475
5476         * ComboBox.cs: remove redundant OnDropDown call.  It is called
5477         from the ComboListBox.ShowWindow code. Fixes #79969.
5478
5479 2006-11-27  Chris Toshok  <toshok@ximian.com>
5480
5481         * Hwnd.cs: remove the setters for ExposePending and
5482         NCExposePending - noone uses them.
5483
5484 2006-11-27  Jackson Harper  <jackson@ximian.com>
5485
5486         * TextControl.cs: new param for ReplaceSelection which determines
5487         whether we select the new selection, or set the cursor to the end
5488         of the new selection.
5489         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
5490         pasting, select the new text.
5491         * RichTextBox.cs: Use new param for ReplaceSelection.
5492
5493 2006-11-27  Jackson Harper  <jackson@ximian.com>
5494
5495         * TextBoxBase.cs: Set the selection to the caret after the caret
5496         is moved, otherwise they get out of sync.
5497
5498 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
5499
5500         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
5501         it fixes #80015
5502
5503 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
5504
5505         * ThemeWin32Classic.cs: 
5506         - Fix toolbar drop down arrow position.
5507         - Fix drop down appearance when ToolBar.Appearance is normal,
5508         it fixes #80018.
5509         
5510 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
5511
5512         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
5513         * Control.cs: Same.
5514         * UpDownBase.cs: Same.
5515         * ButtonBase.cs: Same.
5516         * ScrollBar.cs: Same.
5517         * TrackBar.cs: Same.
5518         * PictureBox.cs: Same.
5519         * UserControl.cs: Same.
5520         * Label.cs: Same.
5521         * ListControl.cs: Same.
5522         * TextBoxBase.cs: Same.
5523         * ListView.cs: Same.
5524         * RichTextBox.cs: Same.
5525         * TreeView.cs: Same.
5526
5527 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
5528
5529         * PrintDialog.cs:
5530         - Text label for where 
5531         - Text label comment was not shown
5532
5533 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
5534
5535         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
5536
5537 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5538
5539         * InternalWindowManager.cs: 
5540         - Handle WM_PARENTNOTIFY to activate the form
5541         if any child control is clicked.
5542         - The form is only sizable if not minimized.
5543
5544         * MdiWindowManager.cs:
5545         - Save the IconicBounds if the form is moved.
5546         - Rework SetWindowState, now the window bounds 
5547         are stored only if the old window state is Normal.
5548         
5549         * MdiClient.cs:
5550         - In SetWindowStates store the old window state if 
5551         the window is maximized and restore window state if
5552         the window looses focus.
5553         - Don't handle any scrollbar value changes if 
5554         initializing the scroll bars. Fixes #79771.
5555         - Reworked ArrangeIconicWindows. Current algorithm
5556         tests bounds agains all other minimized windows, if
5557         any intersections create new bounds (going left to 
5558         right, bottom to top) and then test again. When 
5559         successful the bounds are saved and never computed
5560         again. Fixes #79774.
5561
5562 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5563
5564         * InternalWindowManager.cs: Added HandleTitleBarUp.
5565
5566 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5567
5568         * NumericUpDown.cs: In .NET 1.1, user entered text is still
5569         hexadecimal in ParseUserEdit.
5570
5571         
5572 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
5573
5574         * MdiWindowManager.cs: 
5575         - Handle a click on the form's icon to show the 
5576         system menu (when maximized). Fixes #79775.
5577         - Change the existing click handler for the form's
5578         icon when not maximized to show on MouseUp.
5579         Fixes #79776.
5580
5581         * Form.cs: In OnResize only layout the mdi child's
5582         parent if it actually has a parent. Might not if
5583         the window is closing.
5584
5585
5586 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5587
5588         * MdiClient.cs: Ignore active MDI client for text of parent, if
5589         child has no text set.
5590
5591 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
5592
5593         * ToolBar.cs: Fixed ToString to match MS.
5594
5595 2006-11-22  Andreia Gaita  <avidigal@novell.com>
5596
5597         * NumericUpDown: 
5598         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
5599         update inner values on set. Fixes #79966.
5600         - Override OnLostFocus to update value on NET 2. Fixes #79950.
5601         - Fix hexadecimal parsing.
5602         
5603         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
5604         parent. Fixes #79957
5605
5606 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5607
5608         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
5609         the actual size has to be queried, since if height /
5610         width is negative Win32 changes it to 0. 
5611         Fixes #79999 on Windows.
5612         
5613         * XplatUIX11.cs: Set height / width to 0 if negative
5614         in SetWindowPos. Fixes #79999 on Linux.
5615         
5616 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
5617
5618         * ThemeWin32Classic.cs: Fix text redenring when button is
5619         pressed.
5620
5621 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
5622
5623         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
5624         and later navigate by mouse. Fixes #79528.
5625
5626 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
5627
5628         * ToolBar.cs: Set default value for TabStop to false in
5629         constructor, it fixes remaining behavior of bug #79863.
5630
5631 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5632
5633         * MdiWindowManager.cs:
5634         * InternalWindowManager.cs:
5635         - Moved a few methods specific to Mdi from 
5636         InternalWindowManager to MdiWindowManager.
5637         Fixes #79996.
5638         
5639 2006-11-21  Chris Toshok  <toshok@ximian.com>
5640
5641         * XplatUIOSX.cs: stub out InvalidateNC.
5642
5643         * XplatUIWin32.cs: implement InvalidateNC using the call I found
5644         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
5645
5646         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
5647
5648         * XplatUIDriver.cs: add InvalidateNC abstract method.
5649
5650         * XplatUI.cs: add InvalidateNC.
5651
5652 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
5653
5654         * ToolBar.cs: Invalidate complete button area when pressed status 
5655         was changed.
5656         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
5657         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
5658         by 1 when button is pressed.
5659
5660 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5661
5662         * ToolButton.cs: Invalidate middle of DropDown button when
5663         ToolBar theres DropDownArrows.
5664         * ThemeWin32Classic.cs: Change position of DropDown arrow and
5665         fix DropDown drawing operations.
5666
5667 2006-11-20  Chris Toshok  <toshok@ximian.com>
5668
5669         * NativeWindow.cs: fix the formatting of functions ('{' on the
5670         following line), and enable the thread exception dialog.
5671
5672         * Application.cs: remove the duplicate exception catching from
5673         here.
5674
5675 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5676
5677         * Toolbar.cs: Triggers button click event when click on icon
5678         of dropdown ToolBarButton. Fixes #79912.
5679         
5680 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5681
5682         * Theme.cs:
5683         * ThemeWin32Classic.cs:
5684         - Added a property WindowBorderFont to enable themeing
5685           of mdi child windows' Text.
5686           
5687 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5688
5689         * InternalWindowManager.cs:
5690         * Form.cs:
5691         * MdiClient.cs:
5692         * MdiWindowManager.cs: 
5693         - If mdi child is maximized, set mdi parent's
5694           text to "Parent - [Child]". Fixes #79770.
5695         - If there is any maximized mdi child windows, only the active 
5696           window (and any new windows) is maximized, the rest are normal.
5697         - On a WindowState change only save mdi child's window bounds 
5698           if the old window state was normal. Fixes #79774.
5699         - The scroll bars are now calculated on hopefully all
5700           necessary events. Fixed #79771 / #79844->6 / #79906.
5701         - MdiClient.SizeScrollBars() now takes into account docked 
5702           controls in the parent when calculating available space.
5703         - InternalWindowManager now always repaints the entire title
5704           area. Fixes #79844->1/4/5.
5705         - Added RequestNCRecalc on mdi child windowstate changes.
5706           Fixes #79772.
5707
5708 2006-11-20  Mike Kestner  <mkestner@novell.com>
5709
5710         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
5711         in the MouseUp handler of the listbox and move the return handling
5712         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
5713
5714 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
5715
5716         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
5717
5718 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5719
5720         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
5721           working in 1.2.x anymore. So, updated.
5722
5723 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
5724
5725         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
5726         NumberGroupSeparator of current culture instead of assuming en-US.
5727         Fixed bug #79967.
5728
5729 2006-11-17  Mike Kestner  <mkestner@novell.com>
5730
5731         * Control.cs: Add the concept of implicit bounds setting so that
5732         dock/undock round trips preserve explicitly set size/locations.
5733         Fixes #79313.
5734
5735 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
5736
5737         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
5738           can't handle those filters. (Fixes bug #79961)
5739
5740 2006-11-17  Chris Toshok  <toshok@ximian.com>
5741
5742         [ fixes the exit/crashes associated with #79835.  it's clearly
5743         suboptimal though, we need to figure out a better way to solve
5744         this. ]
5745         
5746         * PrintPreviewControl.cs: deal with the new invalid printer
5747         exceptions.
5748
5749         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
5750         and return false (so CommonDialog.ShowDialog doesn't actually show
5751         the form.)
5752
5753         * PrintDialog.cs: enable/disable the Ok button depending on
5754         whether or not the printer is valid.
5755
5756         * CommonDialog.cs (ShowDialog): only actually show the form if
5757         RunDialog returns true.
5758
5759 2006-11-17  Jackson Harper  <jackson@ximian.com>
5760
5761         * TextControl.cs: When soft splitting a line, mark it as a soft
5762         split line. Also carry over the current line break to the next
5763         line.
5764
5765 2006-11-17  Chris Toshok  <toshok@ximian.com>
5766
5767         * XplatUIX11.cs: when scrolling a window with an invalid area, we
5768         only want to shift the part of the invalid area that overlaps the
5769         area we're scrolling.  we also don't want to clear the invalid
5770         area unless the invalid area was entirely contained within the
5771         scrolling area.
5772
5773 2006-11-16  Chris Toshok  <toshok@ximian.com>
5774
5775         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
5776         also make sure to free the memory returned by XGetWindowProperty
5777         in GetText().
5778
5779         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
5780
5781 2006-11-16  Chris Toshok  <toshok@ximian.com>
5782
5783         * XplatUI.cs: add a new super secret way to get at the totally
5784         unsupported X11 backend.
5785
5786 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
5787
5788         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
5789
5790 2006-11-16  Jackson Harper  <jackson@ximian.com>
5791
5792         * TreeView.cs: Allow more explicit setting of top node position
5793         for scrollbars. Slower algo, but more accurate.
5794         - CollapseAll should maintain the current top node.
5795         * TextBoxBase.cs: When positioning the caret, use the line, pos
5796         method, since the x, y method does not grab the correct tag, and
5797         the caret height never gets set correctly. (Maybe I should just do
5798         away with the caret having its own height, and always use the
5799         carets current tag for height).
5800
5801 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
5802
5803         [Fixes 79778, 79923]
5804
5805         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
5806         Parent to the FosterParent instead.
5807
5808 2006-11-16  Jackson Harper  <jackson@ximian.com>
5809
5810         * TreeView.cs: Need to recalc the topnode when we expand or
5811         collapse. The scrolling methods can't handle this on their own,
5812         since they use differences between the last scroll position, and
5813         those difference get completely messed up since we are expanding
5814         nodes.  This problem should probably be fixed in the scrolling
5815         methods, so they can figure out exactly where they are, but this
5816         will slow things down a little.
5817         * ThemeWin32Classic.cs: Special case for groupboxes with empty
5818         strings, makes nunit-gui look a lot nicer.
5819
5820 2006-11-16  Chris Toshok  <toshok@ximian.com>
5821
5822         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
5823         the broken multithreaded event handling we have in here.  File
5824         this entry under "Why we should move to the new X11 backend".
5825
5826         Any thread can make it into UpdateMessageQueue, which gets events
5827         from the X socket - some of which could belong to hwnds being
5828         managed by a different thread.  We can also have multiple threads
5829         in UpdateMessageQueue at the same time, with each one reading from
5830         the X socket.  This leads to many problems, with the following
5831         solutions:
5832
5833         We can't use hwnd.Queue.Enqueue anywhere in here and must use
5834         EnqueueLocked.
5835
5836         The MotionNotify compression we do can't work across threads
5837         (without locking the entire queue, perhaps) since we call
5838         hwnd.Queue.Peek, so we just punt and don't compress motion events
5839         unless the owning thread is the one which got the X event.
5840
5841         ConfigureNotify is another fun one, since it modifies the hwnd's
5842         bounds and then enqueues the event.  We add a lock to Hwnd which
5843         is held when setting configure_pending to true (and enqueuing the
5844         event).
5845
5846         There is a race wrt the wake socket.  we need to make sure that
5847         only 1 thread is waiting on that socket, or else a thread could
5848         sleep waiting for data that never comes.  It's difficult (but not
5849         impossible) to make happen, because it seems to require something
5850         like the following:
5851
5852             1. Thread 1 polls on wake_receive
5853         
5854             2. poll returns saying there's data to be read on
5855                wake_receive.
5856         
5857             3. Thread 2 polls on wake_receive and immediately returns
5858                saying there's data to be read.
5859
5860             4. Thread 2 reads the wakeup byte from wake_receive
5861
5862             5. Thread 1 attempts to read the wakeup byte from
5863                wake_receive.
5864
5865             6. Thread 2 exits (due to a form closing, perhaps).
5866
5867             7. Thread 1 blocks forever.
5868         
5869         Fun, eh?
5870
5871         Fixing the Expose handling isn't done yet, and the races inherent
5872         in that piece of code are responsible for the drawing mistakes you
5873         see when generating expose events in a MT app (like NPlot).  This
5874         one is the likely to be the hardest to bandaid, and it doesn't
5875         appear to cause anything but drawing problems.  The other issues
5876         caused apps to exit or hang.
5877
5878         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
5879         called from a different thread than the one that should be calling
5880         these functions.
5881
5882         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
5883
5884 2006-11-15  Chris Toshok  <toshok@ximian.com>
5885
5886         * Application.cs: null out the context's MainForm when we exit
5887         RunLoop.  Fixes a newly checked in unit test as well as the last
5888         ODE from bug #79933.
5889
5890 2006-11-15  Chris Toshok  <toshok@ximian.com>
5891
5892         * Form.cs (set_Owner): allow a null value so we can clear the
5893         form's owner.
5894         (Dispose): set all our owned_form's Owner properties to null, and
5895         clear the owned_forms collection.
5896         (WM_CLOSE): clean up this a little bit.. still not right though.
5897
5898         * ApplicationContext.cs: OnMainFormClosed should only call
5899         ExitThreadCore if the main form isn't recreating.  Fixes unit
5900         test.
5901
5902 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5903
5904         [Fixes 78346]
5905
5906         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
5907
5908 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5909
5910         [Fixes 79433]
5911
5912         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
5913         keep popup window types from stealing focus from the main form
5914         on Windows.
5915
5916         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
5917
5918         * MenuAPI.cs: Set above flag to true.
5919
5920 2006-11-15  Chris Toshok  <toshok@ximian.com>
5921
5922         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
5923         the button being released is not in wParam.
5924
5925 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5926
5927         * Form.cs: Add the released button to MouseEventArgs.Button
5928         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
5929         on Win32.
5930
5931 2006-11-15  Chris Toshok  <toshok@ximian.com>
5932
5933         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
5934         GetText().  untested because it's unused in our implementation.
5935         Control.Text always caches the text, even if
5936         ControlStyles.CacheText is not set.
5937
5938         fixes bug #79939.
5939
5940 2006-11-15  Chris Toshok  <toshok@ximian.com>
5941
5942         [ fixes #79933 ]
5943         
5944         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
5945         message.  no hiding, no disposing.
5946
5947         in the WM_CLOSE handler, hide the form if it's modal.
5948
5949 2006-11-15  Chris Toshok  <toshok@ximian.com>
5950
5951         * XplatUIX11.cs: use AddExpose instead of sending a message.
5952         fixes textbox border drawing.
5953
5954 2006-11-15  Chris Toshok  <toshok@ximian.com>
5955
5956         * PropertyGridView.cs: keep from crashing on mouse move/down when
5957         the property grid is empty.
5958
5959 2006-11-14  Jackson Harper  <jackson@ximian.com>
5960
5961         * TextControl.cs: Make PageUp and PageDown more like the MS
5962         versions.
5963         * TextBoxBase.cs: When we set the text property position the
5964         cursor at the beginning of the document.
5965
5966 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5967
5968         * Form.cs: if a mdi child's WindowState has changed
5969         before it's creation, it would display wrong control
5970         buttons.
5971         
5972 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
5973
5974         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
5975           (Fixes bug #79927)
5976
5977 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5978
5979         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
5980         the window gets to paint its borders even if the window is
5981         getting smaller.
5982         
5983         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
5984         otherwise the old control buttons would still be painted 
5985         if the window gets bigger.
5986         
5987         * PaintEventArgs.cs: add an internal method so that the clip 
5988         rectangle can be changed.
5989         
5990 2006-11-13  Chris Toshok  <toshok@ximian.com>
5991
5992         [ fixes bug #79745 ]
5993         
5994         * NotifyIcon.cs: lots of cleanup.
5995
5996         * X11Structs.cs: add an enum for XEMBED messages.
5997
5998         * XplatUIX11.cs: reindent one of the giant switch statements, it
5999         was taking up an additional tab stop, and this file is already way
6000         too wide for my laptop's screen.
6001
6002         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
6003         we get it, resize the hwnd to the WMNormalHints max_width/height.
6004
6005 2006-11-13  Jackson Harper  <jackson@ximian.com>
6006
6007         * TextBoxBase.cs: Compute the value changes for the mouse wheel
6008         teh simple way.
6009
6010 2006-11-13  Chris Toshok  <toshok@ximian.com>
6011
6012         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
6013         #79898.  force a reference to the Region to stick around so the
6014         unmanaged object isn't collected (rendering our handle in the MSG
6015         stale).
6016
6017 2006-11-13  Chris Toshok  <toshok@ximian.com>
6018
6019         * XplatUIX11.cs: fix #79917 for window managers which support
6020
6021         using XStoreName on the raw utf8, and we need to convert to
6022         COMPOUND_TEXT if it's non-latin1.
6023
6024 2006-11-13  Chris Toshok  <toshok@ximian.com>
6025
6026         * Form.cs (set_DialogResult): we need to set closing to false if
6027         we're setting our result to None.  fixes bug #79908.
6028
6029 2006-11-13  Jackson Harper  <jackson@ximian.com>
6030
6031         * TextControl.cs: When formatting text, compute the adjusted tag
6032         lengths correctly, using FindTag for the end tag instead of trying
6033         to figure it out outselves.
6034         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
6035         the item, ItemHeight doesn't work, because trees with large
6036         imagelists use those for their height
6037         * TreeView.cs: ActualItemHeight factors in the image height
6038         - compute left edge of checkboxes correctly
6039         - when expanding/collapsing move the bottom down one pixel, so we
6040         aren't moving part of the node
6041
6042 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6043
6044         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
6045         stack in PaintEventStart so that it won't get disposed by the gc
6046         before reaching PaintEventEnd.
6047
6048 2006-11-13  Jackson Harper  <jackson@ximian.com>
6049
6050         * TextBoxBase.cs: Don't select the word if we are on a line with
6051         no text.
6052         - We don't need to position the caret on mouse up, since the mouse
6053         move handler should be doing this
6054         - When double clicking a blank line, the caret is advanced to the
6055         next line.
6056
6057 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
6058
6059         * TreeNodeCollection.cs: Avoid duplicating indexer code.
6060
6061 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
6062
6063         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
6064         Fixes part of bug #79910.
6065
6066 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
6067
6068         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
6069           (bug #79903). Some minor string updates to match ms.
6070
6071 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6072
6073         * FileDialog.cs: Don't add an extension if the filename
6074           already ends with that extension.
6075
6076 2006-11-10  Jackson Harper  <jackson@ximian.com>
6077
6078         * TreeView.cs: Use the currently highlighted node for the
6079         BeforeSelect event.
6080         * TextBoxBase.cs: There is no need to expand selection on
6081         MouseMove.
6082         - CanUndo means 'is there any undo operations', not 'is undo
6083         allowed on this textcontrol. Fixed ClearUndo unit test.
6084
6085 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
6086
6087         * Button.cs: only perform click when button is Selectable (so as 
6088         not to activate default buttons when they're disabled)
6089         
6090         * Control.cs: Rewrite of the SelectNextControl and related 
6091         methods. HandleClick now selects next control if the current one
6092         is being disabled.
6093         
6094         * Form.cs: OnActivated selects next active control only if Load 
6095         has already occurred. If Load hasn't run, there's no point in 
6096         selecting here, Load might change the state of controls.
6097         
6098         * FocusTest.cs: Tests marked as working again for these fixes
6099
6100 2006-11-10  Chris Toshok  <toshok@ximian.com>
6101
6102         * XplatUIX11.cs: a couple of fixes.
6103
6104         - use XInternAtoms with almost all the atoms we need to register,
6105         instead of many, many calls to XInternAtom.  should help a bit on
6106         startup time, at the expense of making the code look a little
6107         worse.
6108
6109         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
6110         isn't reparented (which seems to be a clue that we're running fon
6111         compiz) and they have an Owner form.  This fixes the tool windows
6112         in paint.net when running under compiz.
6113
6114         - when setting the opacity of a window, support both the case
6115         where the window has been reparented and also when it hasn't been.
6116         Since compiz/beryl doesn't seem to reparent windows, and these are
6117         the only window managers which support translucency, I'm not sure
6118         why we need the hwnd.reparented case at all.. but leave it in.
6119         now we get translucent windows in paint.net under compiz/beryl.
6120
6121 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6122
6123         * FileDialog.cs: Always return the value for FilterIndex that
6124           was set. Internally convert it to values that make sense.
6125
6126 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6127         
6128         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
6129
6130 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
6131
6132         * Toolbar.cs: Change default value of DropDownArrows to true, the 
6133         signature still using false to make it compatible with MS but the 
6134         initial value is true. Fixes #79855.
6135
6136 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
6137
6138         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
6139           only available on Linux.
6140
6141 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
6142
6143         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
6144         reduce number of calls to redraw method during toolbar creation.
6145
6146 2006-11-09  Mike Kestner  <mkestner@novell.com>
6147
6148         * ListView.cs : raise SelectedIndexChanged when an item is selected
6149         programmatically via the Item.Selected property.  Gert's nice 
6150         ListViewSelectedIndexChanged test fixture now runs clean.
6151
6152 2006-11-09  Mike Kestner  <mkestner@novell.com>
6153
6154         * ListView.cs : raise SelectedIndexChanged when a selected item is
6155         removed from the item collection using Remove or RemoveAt.
6156
6157 2006-11-09  Mike Kestner  <mkestner@novell.com>
6158
6159         * ListView.cs : raise SelectedIndexChanged once per selected item
6160         for compat with MS.  Fixes #79849+.
6161
6162 2006-11-09  Chris Toshok  <toshok@ximian.com>
6163
6164         * TabControl.cs: initialize row_count to 0, and set it to 1 when
6165         we need to (if we have any tab pages).  Fixes unit test.
6166
6167 2006-11-09  Chris Toshok  <toshok@ximian.com>
6168
6169         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
6170         width is 0, not 3.  Fixes a unit test.
6171
6172 2006-11-09  Mike Kestner  <mkestner@novell.com>
6173
6174         * ListView.cs : use Implicit scrollbars so that focus isn't 
6175         stolen from the listview when they are clicked. Fixes #79850.
6176
6177 2006-11-09  Chris Toshok  <toshok@ximian.com>
6178
6179         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
6180         have a root item.  Fixes #79879.
6181
6182 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
6183
6184         * FileDialog.cs:
6185           - Fix ToString ()
6186           - An ArgumentException is now thrown if a wrong filter
6187             is applied (matches ms). The previous filter doesn't change
6188             anymore if an exception is thrown.
6189           - Changing the FileName property also affects FileNames
6190         * ColorDialog.cs: The length of the CustomColors array is always
6191           16. It doesn't matter if we use a smaller array or null to update
6192           or change the custom colors property.
6193         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
6194           for RootFolder if we get a undefined value.
6195
6196 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6197
6198         * StatusBarPanel.cs: 
6199         - Width is set to MinWidth if Width is smaller than
6200         MinWidth. Fixes #79842.
6201         - MinWidth now always overrides Width (MSDN says MinWidth
6202         is set to Width when AutoSize = None, but they do not 
6203         behave like that).
6204         - Style has now the the correct default value.
6205         
6206 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6207  
6208         * TrackBar.cs: 
6209         - The control is completely invalidated on 
6210         Got/LostFocus to draw the focus rectangle correctly.
6211         - When AutoSize then height is always 45 (width for 
6212         vertical controls).
6213         
6214         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
6215         on the mouse when moved and it doesn't move when grabbed
6216         until the mouse moves as well. Also fixed some wrong 
6217         calculations when clicking on the thumb (control thought
6218         click was outside of thumb and didn't grab it).
6219         Fixes some of the issues in #79718.
6220
6221 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
6222
6223         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
6224
6225 2006-11-08  Chris Toshok  <toshok@ximian.com>
6226
6227         * PropertyGridView.cs: only call ToggleValue if the item is not
6228         readonly.
6229
6230 2006-11-08  Jackson Harper  <jackson@ximian.com>
6231
6232         * TextBoxBase.cs: The RichTextBox and textbox have very different
6233         word selection methods.  Implement the textbox's simple word
6234         selection here, and let the RichTextBox override and provide it's
6235         own.
6236         - Don't do extra selection on mouseup
6237         * RichTextBox.cs: Use the documents word selection algorithm, I
6238         think ideally, this function will be pulled into the
6239         RichTextBox.cs code someday.
6240
6241 2006-11-08  Chris Toshok  <toshok@ximian.com>
6242
6243         * RootGridEntry.cs: new class to represent GridItemType.Root.
6244
6245         * CategoryGridEntry.cs: reformat, and add boilerplate.
6246         
6247         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
6248         returns the UI parent anyway, and we need special handling to
6249         implement the GetTarget method in the face of it.  Also, implement
6250         Select().
6251
6252         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
6253         a root grid item, and use that instead of PropertyGrid.grid_items.
6254         Also, make use of TypeConverters (and add limitted support for
6255         ICustomTypeDescriptors) when initially populating the grid.
6256         Arrays now show up more or less properly.
6257
6258 2006-11-08  Chris Toshok  <toshok@ximian.com>
6259
6260         * Application.cs: set the modal dialog to non modal after we close
6261         it.  Fixes bug #79866.
6262
6263 2006-11-08  Jackson Harper  <jackson@ximian.com>
6264
6265         * TextControl.cs: When combining lines carry over the line end
6266         style from the end line.
6267         - Invalidate the selected area when setting it, if it is visible.
6268         * TextBoxBase.cs: Only rich text box can do full line selects.
6269         - Make sure to set the cursor position when there is a click,
6270         otherwise two clicks in separate areas could cause a large chunk
6271         to be selected.
6272
6273 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6274
6275         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
6276         Fixes #79863.
6277
6278 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6279
6280         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
6281         time. Remove tooltips when ToolButton click events.  Fixes #79856.
6282
6283 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6284
6285         * MenuAPI.cs: Ignore right click for menu actions and fixes
6286         menu border when clicked.  Fixes #79846.
6287
6288 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6289
6290         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
6291         MouseState after create wParam for message, this fixes mouse button 
6292         equal none in mouse up events.
6293         
6294 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
6295
6296         * Control.cs : Focus() now calls Select to set the Container's
6297         Active Control and to give it focus. To avoid infinite recursion
6298         (because ActiveControl also calls Focus at one point), a check 
6299         is made in Focus with the help of a new internal variable
6300         is_focusing.
6301
6302 2006-11-07  Mike Kestner  <mkestner@novell.com>
6303
6304         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
6305         if there's a selection.  Fixes #79849.
6306
6307 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
6308
6309         * PropertyGrid.cs: Avoid fixed height of help description label.
6310         Fixes part of bug #79829.
6311
6312 2006-11-07  Chris Toshok  <toshok@ximian.com>
6313
6314         * XplatUIX11.cs: fix #79790 again, by using the
6315         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
6316
6317 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6318
6319         * ToolBar.cs: Fix left click checking.
6320
6321 2006-11-07  Chris Toshok  <toshok@ximian.com>
6322
6323         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
6324
6325 2006-11-07  Chris Toshok  <toshok@ximian.com>
6326
6327         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
6328         PropertyManager unit tests.
6329
6330         * PropertyManager.cs: make property_name internal.
6331
6332 2006-11-07  Chris Toshok  <toshok@ximian.com>
6333
6334         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
6335         pass a unit test.  Also, don't set image_index to anything in
6336         response to setting the ImageList property.
6337
6338 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
6339
6340         * ToolBar.cs: Ignore click events when mouse button is not a
6341         left button, only accepts other button for dropdown menus.  
6342         Fixes #79854.
6343
6344 2006-11-07  Chris Toshok  <toshok@ximian.com>
6345
6346         * DataGrid.cs: make the back and parent row buttons a little less
6347         ugly.
6348
6349 2006-11-07  Jackson Harper  <jackson@ximian.com>
6350
6351         * TextBoxBase.cs: When converting to Text don't put line breaks in
6352         for soft line breaks.
6353         * TextControl.cs: There is an initial "fake" line in the document,
6354         this is now a soft break line, so that an extra line feed doesn't
6355         get added to the end of documents.
6356
6357 2006-11-07  Chris Toshok  <toshok@ximian.com>
6358
6359         [ fix bug #79778 ]
6360         
6361         * CurrencyManager.cs: if the list is readonly, don't bother
6362         checking if IBindingList.AllowNew is true.
6363
6364         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
6365         for non-DataRowView datasources..  or rather, make it not crash.
6366         (DataGridPaintRelationRow): make sure we limit the row painting to
6367         the area not covered by the row header, and make our cell width at
6368         least large enough to cover the relation area.  This allows grids
6369         that have relations but no rows to render correctly.
6370         (DataGridPaintRowContents): same type of changes here.
6371         (SetDataSource): move back to always calling
6372         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
6373         navigating back through relations.
6374         (HitTest): handle the case where we have no cells but have
6375         relations.  Right now we generate a hit in cell 0 of whatever the
6376         row is, not sure if this is strictly correct, but it works for our
6377         purposes.
6378         
6379         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
6380         bother doing anything.
6381
6382 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
6383
6384         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
6385         early version of StatusStrip.  Not responsible for eaten
6386         application or firstborn children.
6387
6388 2006-11-06  Chris Toshok  <toshok@ximian.com>
6389
6390         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
6391         call GetTabRect with a -1 index.  Fixes #79847.
6392
6393 2006-11-06  Jackson Harper  <jackson@ximian.com>
6394
6395         * TreeNodeCollection.cs: Update scrollbars after clearing.
6396
6397 2006-11-06  Chris Toshok  <toshok@ximian.com>
6398
6399         * NumericUpDown.cs: fix the ToString method for some unit test
6400         love.
6401
6402 2006-11-06  Chris Toshok  <toshok@ximian.com>
6403
6404         * PropertyGrid.cs:
6405         - set the initial SelectedGridItem if we can.
6406
6407         - Exclude non-mergable properties only if we're merging > 1
6408         object.  Merging 1 object isn't really merging, obviously.
6409
6410         - Handle PropertySort.NoSort just like Alphabetical, which is
6411         wrong of course, but at least gets things on the screen.
6412         
6413         * PropertyGridView.cs:
6414         - Add method "FindFirstItem" which finds the first property grid
6415         item, so we can select it by default.
6416
6417         - make use of GridEntry.CanResetValue.
6418
6419         - Don't call RedrawBelowItemOnExpansion here anymore, the
6420         individual GridEntry's will do that.
6421
6422         - Remove the ITypeDescriptorContextImpl internal class.
6423         
6424         * GridEntry.cs:
6425         - this class needs to implement ITypeDescriptorContext, as it's
6426         what MS's PropertyDescriptorGridEntry does, which means we can
6427         remove the ITypeDescriptorContextImpl internal class from
6428         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
6429
6430         - keep a reference to our PropertyGridView, and move the call to
6431         RedrawBelowItemOnExpansion here from PGV.  This means
6432         programmaticly setting Expanded actually does something visible.
6433
6434         - add a CanResetValue() function which takes into account our
6435         possibly multiple "selected_objects" in the merged case.  Shifting
6436         PropertyGridView to use this method fixes another unreported
6437         crasher found running the test for #79829.
6438
6439         - when Top or Bounds is updated, make sure the PropertyGridTextBox
6440         is updated to reflect this.
6441
6442         * CategoryGridEntry.cs: the ctor takes the PGV now.
6443         
6444 2006-11-06  Jackson Harper  <jackson@ximian.com>
6445
6446         * TextControl.cs: These are 1 based.
6447         * TextBoxBase.cs: When setting the selected text, don't change the
6448         selected text tags, this is done by ReplaceText, just position the
6449         cursor at the end of the new text.
6450
6451 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
6452
6453         * ListView.cs: Allow label edit only when, when LabelEdit is
6454           set to true.
6455
6456 2006-11-06  Jackson Harper  <jackson@ximian.com>
6457
6458         * TextControl.cs: If a suitable wrapping position isn't found,
6459         just wrap right in the middle of a word.
6460
6461 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
6462
6463         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
6464           bug #79820.
6465
6466 2006-11-06  Jackson Harper  <jackson@ximian.com>
6467
6468         * TreeView.cs: Can't use the VisibleCount property when setting
6469         scrollbar heights, because this doesn't take into account whether
6470         or not the horz scrollbar just came visible.
6471
6472 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
6473
6474         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
6475         activated.  Fixes #79369, #79832.
6476
6477 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
6478
6479         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
6480           had to remove support for links that point to a directory. FileInfo
6481           returns no usefull information (means, the directory they point to)
6482           for such links. Replaced some empty string ("") with String.Empty.
6483
6484 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
6485
6486         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
6487         NullReferenceException when attempting to remove node that is not in
6488         collection. Throw NullReferenceException when null is passed to 
6489         Remove. Allow first element of the collection to be removed. Fixes
6490         bug #79831.  In GetEnumerator ().Current return null if positioned 
6491         before the first element of the collection. In GetEnumerator ().Reset,
6492         position before first element of the collection.
6493
6494 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
6495
6496         * PropertyGrid.cs: To match MS, remove default title and description
6497         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
6498         buttons.
6499
6500 2006-11-04  Chris Toshok  <toshok@ximian.com>
6501
6502         * Theme.cs: add a Clamp method, just for kicks.
6503
6504         * ThemeWin32Classic.cs: clamp all color components to [0..255].
6505
6506 2006-11-04  Chris Toshok  <toshok@ximian.com>
6507
6508         * Form.cs: if the form isn't visible, Close() does nothing.
6509
6510 2006-11-03  Chris Toshok  <toshok@ximian.com>
6511
6512         * Form.cs (Close): if the form is modal, don't Dispose of it, only
6513         Hide it.
6514         (WndProc): don't Dispose after handling the WM_CLOSE message.
6515
6516         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
6517         them as such, instead of using casts from Control to Form.  Also,
6518         don't Dispose of the modal dialog when we fall out of the loop -
6519         Close() it instead.
6520
6521         fixes bug #79813.
6522
6523 2006-11-03  Chris Toshok  <toshok@ximian.com>
6524
6525         * Control.cs (Dispose): only go through the dispose thing if we're
6526         @disposing, and we haven't already been disposed.  Fixes bug
6527         #79814.
6528
6529         * Form.cs: no reason to call "base.Dispose()" here instead of
6530         "Dispose()".
6531
6532 2006-11-03  Mike Kestner  <mkestner@novell.com>
6533
6534         * ComboBox.cs : use ToString instead of casts in AddItem for
6535         sorting functionality.  Fixes #79812.
6536
6537 2006-11-03  Chris Toshok  <toshok@ximian.com>
6538
6539         * Application.cs: pave the way for actually using the thread
6540         exception dialog.  it's ifdefed out at the moment.
6541
6542 2006-11-03  Chris Toshok  <toshok@ximian.com>
6543
6544         * ThreadExceptionDialog.cs: until we get a better layout, actually
6545         hide the details textbox and label when we shouldn't see them.
6546
6547 2006-11-03  Jackson Harper  <jackson@ximian.com>
6548
6549         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
6550         multiline textboxes anymore.  This method also determines the
6551         width/height of a textboxes canvas area.
6552         - Sorta a revert of the last patch.  For multiline just position
6553         the controls, then bail.  This way the scrollbar width won't be
6554         altered.
6555
6556 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
6557
6558         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
6559         it dont need.  Fixes #79537.
6560
6561 2006-11-02  Jackson Harper  <jackson@ximian.com>
6562
6563         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
6564         send the status after firing the DndOver event.
6565
6566 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6567
6568         * TrackBar.cs: Now orientation only switches height / width if
6569         the control's handle is created (Win32 does it like this). Also 
6570         fixed a typo in ToString() for a test to pass, changed the 
6571         exception thrown in set_LargeChange and set_SmallChange to 
6572         match Win32 behaviour, and added TrackBar tests to the unit 
6573         tests.
6574
6575 2006-11-02  Chris Toshok  <toshok@ximian.com>
6576
6577         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
6578         not _NET_WM_STATE_NO_TASKBAR.
6579
6580 2006-11-02  Jackson Harper  <jackson@ximian.com>
6581
6582         * TextControl.cs: Increment count by one, since in the update view
6583         count - 1 is used.
6584
6585 2006-11-02  Jackson Harper  <jackson@ximian.com>
6586
6587         * TextBoxBase.cs: Use client rectangle not bounds for checking if
6588         the mouse is in the client rectangle (duh).
6589
6590 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6591         
6592         * TrackBar.cs: Fixed trackbar jumping around when clicking
6593         on it - the trackbar was not detecting correctly at which
6594         side of the thumb the click was done. (fixes #79718)
6595
6596 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
6597
6598         * ListBox.cs: scroll visible area when change SelectedIndex to
6599         a non visible area.  Fixes #79481.
6600
6601 2006-11-01  Jackson Harper  <jackson@ximian.com>
6602
6603         * TextControl.cs: When replacing the selection move the selection
6604         start/end/anchor to the end of the new text.
6605
6606 2006-11-01  Jackson Harper  <jackson@ximian.com>
6607
6608         * XplatUIWin32.cs: When setting the parent change the controls
6609         visibility to it's visibility flag, not to it's old parents
6610         visibility (.Visible walks the parent chain).
6611
6612 2006-11-01  Chris Toshok  <toshok@ximian.com>
6613
6614         * XplatUIX11.cs: revert the #79790 fix, as the simple.
6615         XSetTransientForHint fix breaks paint .net's tool windows.  more
6616         work needed for that one.
6617
6618 2006-11-01  Chris Toshok  <toshok@ximian.com>
6619
6620         * ScrollBar.cs: throw ArgumentException instead of Exception in
6621         LargeChange/SmallChange setters.  fixes unit tests.
6622
6623 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
6624
6625         * ContainerControl.cs: reverted rev.67183 (which was itself
6626         a reversion of rev.66853... eh).
6627         
6628         * Control.cs: Fixes Reflector hang by changing Focus() call
6629         to what it was before rev.66643 (calling Select() here sets 
6630         ActiveControl, which in some situations calls back Focus and 
6631         eventually does a stack overflow). Temp fix.    
6632         Changes to GetNextControl() to not look for children to select when
6633         parent cannot be selectable (so it looks for siblings instead)  
6634         
6635 2006-10-31  Mike Kestner  <mkestner@novell.com>
6636
6637         * CheckedListBox.cs : off by one error in returned index from
6638         ObjectCollection.Add.  Fixes #79758.
6639
6640 2006-10-31  Chris Toshok  <toshok@ximian.com>
6641
6642         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
6643         calls for the textbox/spinner, to keep from recursing to the point
6644         where we crash.  Fixes #79760.
6645
6646 2006-10-31  Chris Toshok  <toshok@ximian.com>
6647
6648         * ListControl.cs (set_SelectedValue): don't throw exceptions on
6649         null/"" value, just return.  matches ms's behavior and fixes some
6650         failing tests.
6651
6652 2006-10-31  Chris Toshok  <toshok@ximian.com>
6653
6654         * Control.cs (set_Capture): make a logic a little easier to
6655         follow.
6656
6657         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
6658         if it's being destroyed.  A necessary fix surely, but a bandaid
6659         also, to fix the stuck capture problem in bug #78413.
6660
6661 2006-10-31  Chris Toshok  <toshok@ximian.com>
6662
6663         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
6664         convention of clearing hwnd.ClientRect when we set the
6665         width/height (so it'll be recalculated by Hwnd).
6666
6667 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
6668
6669         * ContainerControl.cs: reversed Contains check from
6670         ActiveControl due to hanging problems. This fix
6671         partly regresses #79667 (button does not have
6672         initial focus), so this might be a symptom for 
6673         a larger parenting problem (set_ActiveControl
6674         is being called but the child control does
6675         not have the parent set yet?)   
6676         
6677 2006-10-31  Mike Kestner  <mkestner@novell.com>
6678
6679         * MenuAPI.cs : fix keynav when menu is click activated.
6680
6681 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
6682
6683         * ToolStrip*: Version 0.2.
6684
6685         * MenuStrip.cs: Version 0.1.
6686
6687         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
6688
6689 2006-10-30  Chris Toshok  <toshok@ximian.com>
6690
6691         [ fixes the oversized notify icon issue in bug #79745 ]
6692         
6693         * NotifyIcon.cs: scale the icon down to the size we're given by
6694         the XplatUI layer (this would be faster if we did it once instead
6695         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
6696         since it's never invoked.
6697
6698         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
6699         pixels high by default, so let's hardcode our systray icon to that
6700         size.  The SYSTEM_TRAY protocol should really have a way for
6701         client apps to query for the correct icon size.. but oh well.  A
6702         couple of patches to deal with the screwy client_window ==
6703         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
6704         instance, and also make sure we don't XSelectInput twice).
6705
6706 2006-10-30  Chris Toshok  <toshok@ximian.com>
6707
6708         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
6709         recreating forms.  Control recreation is the bane of my existence.
6710         Fix it in a way that keeps everyone happy.
6711
6712 2006-10-30  Chris Toshok  <toshok@ximian.com>
6713
6714         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
6715         just non-CHILD ones.  otherwise sometimes scrollbars end up with
6716         client_windows not being resized to the proper size (ReportBuilder
6717         shows this extremely well).
6718
6719 2006-10-30  Chris Toshok  <toshok@ximian.com>
6720
6721         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
6722         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
6723         showing up in the gnome taskbar.  Fixes bug #79790.
6724
6725 2006-10-30  Chris Toshok  <toshok@ximian.com>
6726
6727         * ApplicationContext.cs: guard against a NRE.
6728
6729         * Application.cs: null out the old MainForm for the context, so we
6730         don't try to use it again once it's disposed.  Fixes bug #79783.
6731
6732 2006-10-30  Chris Toshok  <toshok@ximian.com>
6733
6734         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
6735         BindingContext, set the data source directly, otherwise do the
6736         lazy approach - the actual ListManager will be created when we get
6737         a BindingContext. Fixes bug #79700.
6738
6739 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6740
6741         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
6742           XplatUIX11.cs: Remove old 2 parameter SetVisible.
6743
6744         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
6745
6746 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
6747
6748         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
6749         of SetVisible that allows a window to be shown, but not activated.
6750         This is needed on Windows for MenuStrip, and can probably be used
6751         with MainMenu and ComboBox to fix the focus stealing issues on
6752         Windows.
6753
6754         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
6755
6756 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
6757
6758         * PictureBox.cs: Fix the output of the ToString method.
6759
6760 2006-10-29  Chris Toshok  <toshok@ximian.com>
6761
6762         * Control.cs (get_TopLevelControl): fix bug #79781.
6763
6764 2006-10-29  Chris Toshok  <toshok@ximian.com>
6765
6766         * ListControl.cs (set_DataSource): throw Exception here, not
6767         ArgumentException, to match MS behavior.
6768
6769 2006-10-29  Chris Toshok  <toshok@ximian.com>
6770
6771         * Form.cs: remove the try-catch's around calls to GetWindowState.
6772         We can just check the return value.
6773
6774         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
6775         Instead return -1.
6776
6777         * XplatUI.cs: Add note about additional return value for
6778         GetWindowState.
6779
6780 2006-10-29  Chris Toshok  <toshok@ximian.com>
6781
6782         * Control.cs (CreateHandle): when we create our handle, we also
6783         create the handles of our child controls.  Fixes one of the
6784         Control unit tests (CH11).
6785
6786 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
6787
6788         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
6789
6790 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
6791
6792         * ThemeClearlooks.cs: A little speedup.
6793
6794 2006-10-27  Chris Toshok  <toshok@ximian.com>
6795
6796         * Control.cs: implement Control.FromChildHandle in a way that
6797         matches the docs (and fixes the failed test.)
6798
6799 2006-10-27  Chris Toshok  <toshok@ximian.com>
6800
6801         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
6802         comments).
6803
6804         * DataGrid.cs: implement ResetForeColor such that the tests
6805         succeed.
6806         
6807 2006-10-27  Chris Toshok  <toshok@ximian.com>
6808
6809         * ToolBarButton.cs: setting text/tooltiptext to null results in it
6810         being set to "".  Fixes bug #79759.
6811
6812 2006-10-27  Jackson Harper  <jackson@ximian.com>
6813
6814         * TextControl.cs: We need to clear the entire selection area when
6815         setting the start, otherwise multiline selections are still
6816         visible.
6817
6818 2006-10-26  Chris Toshok  <toshok@ximian.com>
6819
6820         * PropertyGridView.cs: 
6821
6822         - ifdef all the code specific to the double
6823         buffer case, and provide some alternatives in the non-doublebuffer
6824         code, which makes heavy use of XplatUI.ScrollWindow to move things
6825         around without having to invalidate (and cause flicker).  There
6826         are still some drawing problems in the non-doublebuffered case, so
6827         DOUBLEBUFFER is defined by default.
6828
6829         - Fix the way dropdowns are handled.  now we explicitly watch for
6830         the events which might cause the dropdown to close, and break out
6831         of the nested event loop there.  This gets rid of all Capture
6832         code, at the expense of the Msg special casing.  Seems to work,
6833         though, and fixes bug #79743.
6834
6835 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
6836         * Control.cs: SetIsRecreating now recreates implicitly added
6837         child controls as well. Finally fixes #79629. The flag passed to 
6838         SetIsRecreating has also been removed since it wasn't used.
6839         
6840 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6841
6842         * PageSetupDialog.cs: Clean some code, fix some bits, 
6843         add some checks, and add a printer sub-dialog.
6844
6845 2006-10-26  Chris Toshok  <toshok@ximian.com>
6846
6847         * PropertyGrid.cs: make set_SelectedObject call
6848         set_SelectedObjects, and move the duplicate logic to the
6849         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
6850
6851         * PropertyGridView.cs: hide the textbox when we get a
6852         SelectedObjectsChanged event.
6853
6854         Fixes bug #79748.
6855
6856 2006-10-26  Chris Toshok  <toshok@ximian.com>
6857
6858         * PropertyGridView.cs: deal with the type converter not supporting
6859         GetStandardValues() or GetStandardValues() returning null, which
6860         is does in the default case.  Fixes #79742.
6861
6862 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6863
6864         * CheckedListBox.cs: nunit no longer crashes when selecting 
6865         Project/Edit menu option
6866         
6867 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6868
6869         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
6870         is no menu selected. fixes #79739
6871
6872 2006-10-25  Chris Toshok  <toshok@ximian.com>
6873
6874         * PropertyGridView.cs: factor out the splitter invalidation code
6875         into the SplitterPercent setter, and for kicks implement the
6876         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
6877         amount in either direction.
6878
6879 2006-10-25  Chris Toshok  <toshok@ximian.com>
6880
6881         * PropertyGridView.cs: do some cleanup of the brush used to draw
6882         text - read only fields should be grayed out.  not sure how to do
6883         this with the textbox, though.  but the textbox's should also be
6884         readonly now at least.  Also, hide/show the textbox when resizing
6885         the control.
6886         
6887         * CursorConverter.cs: use System.Reflection when getting the
6888         properties of Cursors, as TypeDescriptor.GetProperties isn't
6889         returning static properties.
6890
6891 2006-10-25  Chris Toshok  <toshok@ximian.com>
6892
6893         * PropertyGridView.cs: factor out the up/down handling, and reuse
6894         it for page up/down.  also add End/Home support.
6895
6896 2006-10-25  Chris Toshok  <toshok@ximian.com>
6897
6898         * PropertyGridView.cs:
6899
6900         - ensure the selected grid item is visible in the scrolled area,
6901         fixes bug #79572.
6902
6903         - fix Keys.Down handling when you're on the last item in the
6904         propertygrid.
6905
6906 2006-10-25  Mike Kestner  <mkestner@novell.com>
6907
6908         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
6909         clicks too.  Fixes #79725.
6910
6911 2006-10-24  Chris Toshok  <toshok@ximian.com>
6912
6913         * PropertyGrid.cs: use property.Converter instead of
6914         TypeDescriptor.GetConverter(property.PropertyType), so we catch
6915         TypeConverters declared on the property as well as on the
6916         PropertyType.  Fixes bug #79678.
6917
6918 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
6919
6920         * MimeIcon.cs, Mime.cs:
6921           Fallback to the default platform handler if no shared mime info
6922           stuff exists (fixes #79693).
6923
6924 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6925         * ContainerControl.cs: Incorrect contains check in ActiveControl 
6926         from previous fix (duh).
6927
6928 2006-10-20  Chris Toshok  <toshok@ximian.com>
6929
6930         * PropertyGridView.cs: the dropdown should be MIN(number of items
6931         in list, 15).  Fixes #79551.
6932
6933 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6934         Fixes #79384, #79394, #79652, #79667
6935         * Application.cs: 
6936         
6937         - Modal windows are now destroyed in the proper order for windows
6938         
6939         * ContainerControl.cs:
6940         
6941         - ActiveControl setter has more conditions on when to return:
6942                 - if we're reselecting the active control, but it actually
6943                 didn't have focus (window hidden or some such), it runs
6944                 - if the active control being selected doesn't actually 
6945                 exist in the container, it returns
6946         
6947         * Form.cs
6948         
6949         - The ShowDialog now gets the current form as the owner when
6950         invoking without parameters, and correctly activates the owner 
6951         when returning
6952         
6953         * MessageBox.cs
6954         
6955         - MessageBox now catches the Escape key to exit
6956
6957 2006-10-20  Chris Toshok  <toshok@ximian.com>
6958
6959         * PropertyGridView.cs: fix a number of issues (bug #78565, and
6960         most of bug #79676):
6961
6962         - you can navigate around the property grid with the arrow keys.
6963
6964         - the dropdown is sized properly when the pg has a vertical
6965         scrollbar.
6966
6967         - fix the indentation for subentries, and properly select the
6968         entire label rect.
6969
6970         - fix the gray bar's drawing (only draw it to the last element,
6971         not for the height of the control.  Also make sure we draw that
6972         last horizontal grid line.
6973
6974         - use the same mechanism the datagrid uses wrt the editing textbox
6975         when scrolling/resizing/etc.  Namely, we hide it first, do the
6976         operation, then show it again (if it's still visible).
6977         
6978         - aggressively remove a lot of unnecessary refreshes (and also
6979         calls to Invalidate(). call more limited variants, and only redraw
6980         what we need.)
6981         
6982         * PropertyGrid.cs:
6983
6984         - when we're populating the merged collection, fill in the UI
6985         parent with either the passed in item, or the category item we
6986         create.
6987
6988         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
6989
6990         * GridItem.cs: drop some fully qualified names.
6991         
6992         * GridEntry.cs: add a "UIParent", which is basically the parent
6993         treenode.
6994
6995         * GridItemCollection.cs: add an IndexOf method.
6996
6997 2006-10-20  Mike Kestner  <mkestner@novell.com>
6998
6999         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
7000         a working win32 NC invalidation mechanism, we can't invalidate
7001         menus.  [Fixes #79705]
7002
7003 2006-10-20  Mike Kestner  <mkestner@novell.com>
7004
7005         * ListBox.cs : don't update the VScrollbar if the list is empty,
7006         just hide it.  [Fixes #79692]
7007
7008 2006-10-20  Jackson Harper  <jackson@ximian.com>
7009
7010         * RichTextBox.cs: Handle some special chars better, and don't skip
7011         the entire group when we encounter a special char that we don't
7012         handle correctly.
7013
7014 2006-10-18  Chris Toshok  <toshok@ximian.com>
7015
7016         * PropertyGridView.cs: address a number of issues from bug #79676,
7017         mostly of the cosmetic variety.
7018
7019         - The highlight rectangle for indented items not extends all the
7020         way to the left.
7021
7022         - Indented items aren't indented so much.
7023
7024         - the dropdown is properly sized width-wise if the pg has a
7025         vertical scrollbar.
7026
7027 2006-10-18  Chris Toshok  <toshok@ximian.com>
7028
7029         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
7030         systray stuff is rather convoluted to begin with.
7031
7032         systray icons are a single window for some reason (that I haven't
7033         figured out yet), and for them, client_window == whole_window.
7034         Given the way the tests are structured elsewhere to determine
7035         which paints are pending (client vs. nc), that situation will
7036         always yield PAINT, not NCPAINT.  So, if we have a pending
7037         nc_expose and no pending expose, remove the hwnd from the paint
7038         queue, and also set nc_expose_pending to false, to keep us from
7039         blocking further expose's adding the hwnd to the paint queue.
7040
7041         phew.  like i said, a rather convoluted change.  Fixes the
7042         notifyicon repaint issues in bug #79645.
7043
7044 2006-10-18  Chris Toshok  <toshok@ximian.com>
7045
7046         * Form.cs: when getting the backcolor of the form, don't get
7047         base.BackColor, as this allows parents to influence the background
7048         color.  This breaks mdi forms.  Instead, if the background_color
7049         is empty, return the default.
7050
7051 2006-10-18  Chris Toshok  <toshok@ximian.com>
7052
7053         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
7054         to being private instead of internal static.
7055
7056         * Control.cs: remove all the stupid ParentWaitingOnRecreation
7057         crap, it wasn't working for more deeply nested controls anyway,
7058         and we already have the is_recreating flag - use that instead.
7059         Before calling DestroyHandle in RecreateHandle, recurse through
7060         the control tree setting it to true.  this returns the recreate
7061         code to much of its original simplicity, while now guaranteeing we
7062         actually recreate everything we're supposed to.  This change gets
7063         fyireporting actually showing mdi children.
7064
7065 2006-10-17  Chris Toshok  <toshok@ximian.com>
7066
7067         * Form.cs: remove some debug spew, and collapse some duplicate
7068         code at the end of SetClientSizeCore.
7069
7070         * XplatUIX11.cs: 
7071         - add some more debug spew here too wrt Destroy handling.
7072         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
7073         in Control's handling of WM_DESTROY.
7074         - Remove the handling of zombie window DestroyNotifies from the
7075         event loop - we don't need it.  Now the only DestroyNotifies we
7076         actually handle are ones generated by X.
7077         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
7078         match gtk's (functioning) handling of this. This keep metacity
7079         from leaving droppings in the form of wm borders with no window
7080         contents all over the place.
7081
7082         * Control.cs:
7083         - add a bunch of debug spew wrt control recreation.
7084         - fix a bug where we weren't tracking Visible properly on
7085         recreated hwnds.
7086         - fixed the WM_PAINT double buffer handling to support re-entrant
7087         calls (yes, i know it's gross, but it's happening to us).
7088
7089 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7090         * ThemeWin32Classic.cs: changed drawing of selected days
7091         to make them look better.
7092
7093 2006-10-16  Chris Toshok  <toshok@ximian.com>
7094
7095         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
7096         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
7097
7098         * XplatUIX11.cs: move away from using hwnd.client_dc and
7099         hwnd.non_client_dc and on to a stack of dc's (and in window's
7100         case, PAINTSTRUCT's), so we can deal with nested Paint calls
7101         without puking or not disposing of Graphics objects.
7102
7103         * XplatUIOSX.cs: same.
7104
7105         * XplatUIWin32.cs: same.
7106
7107 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
7108
7109         * FileDialog.cs: Don't call on_directory_changed inside
7110           OnSelectedIndexChanged (it changes the SelectedIndex too).
7111           Instead move it to OnSelectionChangeCommitted.
7112
7113 2006-10-13  Chris Toshok  <toshok@ximian.com>
7114
7115         * XplatUIX11.cs: more Destroy work.  the current code does the
7116         following things, in order:
7117
7118         1. Enumerates all handles of all controls at or below the one
7119         being destroyed, in pre-order.  As it is doing this, it marks the
7120         handles as zombie and clears all references to them.
7121         
7122         2. calls XDestroyWindow on the window passed in.
7123
7124         3. SendMessage's WM_DESTROY to all he handles in the accumulated
7125         list.
7126
7127 2006-10-13  Chris Toshok  <toshok@ximian.com>
7128
7129         * XplatUIX11.cs: set hwnd.zombie to true before calling
7130         SendMessage (WM_DESTROY).  this keeps us from marking the new
7131         window a zombie, and also keeps us from calling sendmessage at
7132         all.
7133
7134 2006-10-13  Jackson Harper  <jackson@ximian.com>
7135
7136         * TextControl.cs: Do not show the caret and selection at the same
7137         time.  Reduces ugliness by 35%.
7138
7139 2006-10-13  Chris Toshok  <toshok@ximian.com>
7140
7141         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
7142         zombie after we do the recursive call, so we actually do call
7143         SendMessage on the children controls.
7144         (GetMessage): if we find a pending paint event for a zombie hwnd,
7145         remove the hwnd from the paint queue, or else it will always be
7146         there (and we'll effectively loop infinitely)
7147
7148 2006-10-13  Mike Kestner  <mkestner@novell.com>
7149
7150         * MenuItem.cs : add Selected format under keynav too.
7151         Fixes #79528.
7152
7153 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
7154
7155         * PropertyGrid.cs: Fixed some NRE's and small difference between our
7156         implementation and that of MS.
7157
7158 2006-10-13  Chris Toshok  <toshok@ximian.com>
7159
7160         * Control.cs (OnInvalidated) only futz with the invalid_region if
7161         the control is double buffered.  this fixes the apparent hang in
7162         the ListView unit tests.  Someone needs to make the
7163         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
7164
7165 2006-10-13  Chris Toshok  <toshok@ximian.com>
7166
7167         * PropertyGridView.cs:
7168
7169         - do a little refactoring so that only one place calls
7170         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
7171         else call that.  Also make it Refresh, since there are redraw bugs
7172         otherwise (we should take a look at that...)
7173
7174         - do a little more refactoring work to share the body of code
7175         involved with the drop down.  it was duplicated in the code
7176         dealing with the listbox handling and in the code dealing with the
7177         UITypeEditors.
7178
7179         - add a Capture to the dropdown form's control once it's
7180         displayed, and add a MouseDown handler that checks to make sure
7181         the position is inside the control.  If it's not, close the
7182         dropdown.  This fixes #78190.
7183
7184         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
7185         if the value is different than the initial value.
7186         
7187 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
7188
7189         * Control.cs: see #78650
7190         - Fixed GetNextControl for several cases:
7191                 - Changed FindFlatForward to return 
7192                 correct sibling control when more than one
7193                 control has same TabIndex as the currently 
7194                 focused one.
7195                 - Changed FindFlatBackward to loop children
7196                 from last to first and apply same logic as in
7197                 FindFlatForward
7198                 - Changed FindControlForward to search for
7199                 children when control is not a container
7200                 but has children, or search for siblings if
7201                 control is a container...
7202                 - Changed FindControlBackward   to continue
7203                 searching for child controls when hitting 
7204                 Panel-like parents
7205                 
7206         - Fixed Focus method to update ActiveControl
7207         (FocusTest.FocusSetsActive failure)
7208         
7209         * TabControl.cs:
7210         - Focus rectangle now refreshes when gaining
7211         or losing focus
7212         - Removed grab for Tab key on IsInputKey that 
7213         was keeping tab navigation from working (#78650)
7214
7215 2006-10-13  Chris Toshok  <toshok@ximian.com>
7216
7217         * PropertyGridView.cs:
7218         - Rewrite SetPropertyValue to loop over SelectedGridItem's
7219         SelectedObjects.
7220
7221         - Deal with GridItem.Value == null a few places.
7222
7223         * PropertyGrid.cs: 
7224         - replace the PopulateGridItemCollection with a pair of methods
7225         which compute the intersection of all the properties in the
7226         SelectedObjects array.  Fixes #79615.
7227
7228         - Throw ArgumentException from set_SelectedObjects if there's a
7229         null in the array.
7230
7231         - Add GetTarget method which can be used to traverse up the
7232         GridItem.Parent chain.  It depends on the assumption that
7233         selected_objects for different GridEntries are always in the same
7234         order (a safe assumption).  Use this method and loop over all the
7235         selected objects in the entry when calling RemoveValueChanged and
7236         AddValueChanged.
7237         
7238         * GridEntry.cs: Make this handle multiple selected objects.
7239         .Value returns null if not all the selected objects share the same
7240         value.
7241
7242 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
7243         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
7244           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
7245           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
7246           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
7247           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
7248         add additional functionality.
7249
7250 2006-10-12  Mike Kestner  <mkestner@novell.com>
7251
7252         * ErrorProvider.cs : new ToolTipWindow ctor sig.
7253         * HelpProvider.cs : new ToolTipWindow ctor sig.
7254         * ToolTip.cs : remove ToolTip param from Window sig since it is
7255         not used.
7256         * ToolBar.cs : add tooltip support.  Fixes #79565.
7257
7258 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7259
7260         * ComboBox.cs: move the events in set_SelectedIndex to 
7261         after the call to HighlightIndex in order to avoid 
7262         possible recursion and subsequent problems with the call
7263         to HighlightIndex and include a range check in 
7264         set_HighlightIndex. Fixes #79588
7265         
7266 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7267
7268         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
7269         to ui thread's settings instead of sunday. 
7270         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
7271
7272 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
7273
7274         * DateTimePicker.cs
7275         * MonthCalendar.cs
7276         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
7277         and implement missing functionality (selecting different parts 
7278         of the date and edit them individually with the keyboard).
7279         
7280 2006-10-11  Chris Toshok  <toshok@ximian.com>
7281
7282         * Control.cs (OnInvalidated): fix NRE relating to last change.
7283
7284 2006-10-11  Chris Toshok  <toshok@ximian.com>
7285
7286         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
7287         atoms in _NET_WM_STATE here if the window is maximized.  We need
7288         to do this because we're *replacing* the existing _NET_WM_STATE
7289         property, so those atoms will be lost otherwise, and any further
7290         call to GetWindowState will return Normal for a window which is
7291         actually maximized.  Fixes #79338.
7292
7293 2006-10-11  Jackson Harper  <jackson@ximian.com>
7294
7295         * TextControl.cs: Special case for setting selection end to
7296         selection start, we basically kill the anchor.
7297         - some todo comments.
7298
7299 2006-10-11  Chris Toshok  <toshok@ximian.com>
7300
7301         * Control.cs: switch to using an "invalid_region" to track which
7302         parts of the image buffer need updating.  This is more code than
7303         the simple fix from r66532.  That version just attempted to always
7304         fill the entire buffer on redraw, which turns out to be
7305         inefficient when invalidating small rectangles.  This version
7306         simply adds the invalid rectangle to the invalid region.  When we
7307         get any WM_PAINT message we see if it can be filled using the
7308         image buffer, and if it can't (if the paint event's clip rectangle
7309         is visible in the invalid region) we first fill the image buffer.
7310         So, the image buffer is still a cache, we just fill it lazily.
7311
7312         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
7313         need it any longer.
7314
7315 2006-10-11  Chris Toshok  <toshok@ximian.com>
7316
7317         * XplatUIX11.cs (SetWindowPos): we need to update both position as
7318         well as size after calling XMoveResizeWindow.  This keeps us from
7319         ignoring future SetWindowPos calls.  Fixes the disappearing
7320         DateTimePicker in the ToolBarDockExample from bug #72499.
7321
7322 2006-10-11  Chris Toshok  <toshok@ximian.com>
7323
7324         * TextBoxBase.cs: reorder things a bit when it comes to
7325         resizing-causing-recalculation.  we were recalculating the
7326         document when our position was changed, which shouldn't happen.
7327         We only care about size changes.  Clear up some more redundant
7328         recalculation calls while I'm at it.  This makes the toolbar dock
7329         example snappy when you're just dragging toolbars around (since it
7330         causes a relayout whenever you move one.)
7331
7332 2006-10-11  Chris Toshok  <toshok@ximian.com>
7333
7334         * ToolBarButton.cs (get_Rectangle): this only returns
7335         Rectangle.Empty if Visible == false, or Parent == null.
7336         Parent.Visible doesn't matter.
7337
7338 2006-10-10  Chris Toshok  <toshok@ximian.com>
7339
7340         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
7341         by .net 1.1, so switch to an internal method instead.
7342
7343 2006-10-10  Chris Toshok  <toshok@ximian.com>
7344
7345         * Control.cs (WM_PAINT): when a control is double buffered we draw
7346         initially to the ImageBuffer and then copy from there.  But when a
7347         parent control which has child controls is double buffered, the
7348         initial drawing doesn't encompass the entire ClientRectangle of
7349         the parent control, so we end up with uninitialized bits (this is
7350         easily seen by dragging the top toolbar in
7351         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
7352         manually set the ClipRectangle of the paint_event (only the one we
7353         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
7354         of the nastiness in bug #72499.
7355
7356         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
7357         which we use in Control.cs's WM_PAINT handling.
7358
7359 2006-10-10  Jackson Harper  <jackson@ximian.com>
7360
7361         * TextBoxBase.cs: Finish off the autoscrolling stuff.
7362
7363 2006-10-10  Chris Toshok  <toshok@ximian.com>
7364
7365         * Cursor.cs: Apply a slightly different patch to the one suggested
7366         in #79609.
7367
7368 2006-10-10  Jackson Harper  <jackson@ximian.com>
7369
7370         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
7371         not the parent form.
7372         * TextControl.cs: use difference in old line count vs new count to
7373         calculate how many lines were added, this takes into account soft
7374         line breaks properly.
7375
7376 2006-10-10  Chris Toshok  <toshok@ximian.com>
7377
7378         * LinkLabel.cs: don't call MeasureCharacterRanges against a
7379         rectangle located at 0,0 and the size of the text.  Use
7380         ClientRectangle instead.  This fixes rendering of non-left aligned
7381         link labels.
7382
7383 2006-10-10  Jackson Harper  <jackson@ximian.com>
7384
7385         * TextBoxBase.cs: When we set the selection start position the
7386         caret.
7387         * TextControl.cs: Need to update the caret when we decrement it to
7388         zero.
7389         - Make sure that the selection_visible flag gets reset to false if
7390         the selection isn't visible.  Before this you could get it set to
7391         visible by changing the selection start, then changing the end to
7392         equal the start.
7393
7394 2006-10-09  Jackson Harper  <jackson@ximian.com>
7395
7396         * TreeView.cs: Don't update scrollbars when we aren't visible.
7397         * TreeNodeCollection.cs: Only need to update scrollbars if being
7398         added to an expanded visible node or the root node.
7399
7400 2006-10-09  Chris Toshok  <toshok@ximian.com>
7401
7402         * XplatUIX11.cs (SendMessage): fix NRE.
7403
7404 2006-10-09  Jackson Harper  <jackson@ximian.com>
7405
7406         * TextBoxBase.cs: Implement horizontal autoscrolling.
7407         * TextControl.cs: Add a movement types that allows moving forward
7408         and backwards without wrapping.
7409
7410 2006-10-09  Mike Kestner  <mkestner@novell.com>
7411
7412         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
7413         with focus "expansion" of labels.  Fixes #79532 and then some.
7414         * ThemeWin32Classic.cs : add LineLimit to ListView label format
7415         when wrapping.
7416
7417 2006-10-09  Jackson Harper  <jackson@ximian.com>
7418
7419         * TextBoxBase.cs: Set the default max values to MaxValue since
7420         we use the scrollbar for autoscrolling and the default value is
7421         100.  If we don't do this the caret won't keep up with typing
7422         after about 18 characters.
7423         * TextControl.cs: Make sure the selection is offset by the
7424         viewport x.  This fixes selection when using auto scrolling.
7425
7426 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
7427         
7428         * Form.cs: The active control should be selected after the 
7429         OnLoad so that any child control initialization that affects
7430         the selection is done. Fixes #79406
7431
7432 2006-10-06  Chris Toshok  <toshok@ximian.com>
7433
7434         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
7435         to have no evil effects.
7436
7437         - Stop selecting StructureNotifyMask on non-toplevel windows.
7438
7439           The only way children should be resized is by using the SWF api,
7440           and we already send WM_WINDOWPOSCHANGED messages in those cases.
7441           Toplevel windows can be interacted with via the window manager,
7442           and so we keep the input mask there.
7443
7444           The other event StructureNotifyMask gives us (that we care
7445           about) is DestroyNotify.  The code is already structured such
7446           that it assumes we won't be getting a DestroyNotify event for
7447           the window we pass to XDestroyWindow (which is what
7448           StructureNotifyMask is supposed to guarantee.)  So, that code
7449           shouldn't be affected by this either.
7450
7451         - Stop selecting VisibilityChangeMask altogether.
7452
7453           We weren't doing anything with the resulting events anyway.
7454         
7455         This vastly reduces the number of X requests and events we see
7456         when resizing/laying out a large ui.
7457
7458 2006-10-06  Chris Toshok  <toshok@ximian.com>
7459
7460         * ScrollableControl.cs (DisplayRectangle): we need to take into
7461         account the DockPadding regardless of whether or not auto_scroll
7462         == true.  rework this slightly to this effect, and fix bug #79606,
7463         and part of #72499 (you can now see the drag handles and drag
7464         toolbars around).
7465
7466 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
7467
7468         * ListViewItem.cs: Collections of selected and checked items are now
7469         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
7470         we mark the collection "dirty".
7471         * ListView.cs: Marked collections readonly. Modified UpdateSelection
7472         to only clear SelectedItems when a new item is selected and MultiSelect
7473         is enabled. CheckedItems and SelectedItems now subscribe to Changed
7474         event of ListViewItemCollection, and mark its list dirty whenever
7475         that event is fire. This allows us to return selected/checked items 
7476         in the same order as they are in the Items collection. This matches
7477         the MS behavior.
7478
7479 2006-10-06  Chris Toshok  <toshok@ximian.com>
7480
7481         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
7482         right mouse clicks.  Fixes bug #79593.
7483
7484 2006-10-06  Chris Toshok  <toshok@ximian.com>
7485
7486         * Splitter.cs: doh, fix splitters that don't want to cancel the
7487         movement when you drag them.  Also, impose the limits on the
7488         values we send to the SplitterMovingEvent.  Fixes #79598.
7489
7490 2006-10-06  Jackson Harper  <jackson@ximian.com>
7491
7492         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
7493         since we use this for auto scrolling also.
7494
7495 2006-10-05  Chris Toshok  <toshok@ximian.com>
7496
7497         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
7498         beginning to think that most datagrid column types don't need this
7499         method.  Fixes bug #79392.
7500
7501 2006-10-05  Chris Toshok  <toshok@ximian.com>
7502
7503         * DataGrid.cs: move back to a more lazy scheme for creating the
7504         CurrencyManager, so we aren't updating it every time you set
7505         either DataSource or DataMember.  Also, don't call
7506         RecreateDataGridRows if the currency manager hasn't changed.
7507
7508 2006-10-05  Chris Toshok  <toshok@ximian.com>
7509
7510         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
7511         emitted, SelectedIndex should already be updated.  Fixes bug
7512         #78929.
7513
7514 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
7515
7516         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
7517           ToolStripTextBox.cs: Initial commit.
7518         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
7519
7520 2006-10-05  Jackson Harper  <jackson@ximian.com>
7521
7522         * TabControl.cs: We need to invalidate the tab control area when
7523         new ones are added (duh).
7524
7525 2006-10-03  Chris Toshok  <toshok@ximian.com>
7526
7527         * Form.cs (ProcessDialogKey): if the focused control is in this
7528         form and is a button, call its PerformClick method here.  Fixes
7529         #79534.
7530
7531 2006-10-04  Jackson Harper  <jackson@ximian.com>
7532
7533         * TabPage.cs: Ignore setting of Visible, and add an internal
7534         method for setting the controls visibility.  TabPage's Visible
7535         property is a little strange on MS, this seems to make us
7536         compatible, and fixes cases where people set all the tab pages to
7537         visible.
7538         * TabControl.cs: Use the new internal setting on tab pages
7539         visibility.
7540
7541 2006-10-03  Mike Kestner  <mkestner@novell.com>
7542
7543         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
7544
7545 2006-10-03  Mike Kestner  <mkestner@novell.com>
7546
7547         * ListView.cs : use is_visible instead of Visible to check if 
7548         scrollbars should be placed/sized.  Also some max_wrap_width
7549         love for LargeIcon view.  [Fixes #79533]
7550
7551 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
7552
7553         * TextControl.cs :
7554           Make set_TextAlign() do actually update the align. Fixed #78403.
7555
7556 2006-10-03  Chris Toshok  <toshok@ximian.com>
7557
7558         * DataGrid.cs: fix a crash when switching datasources if the
7559         vertical scrollbar is at someplace other than Value = 0.  Also,
7560         reduce the number of recalculation passes we do in SetDataSource
7561         from 2 to 1.
7562
7563 2006-10-03  Jackson Harper  <jackson@ximian.com>
7564
7565         * TextBoxBase.cs: Move the if value the same bail check up, we
7566         don't want to empty the document if it is already empty, this
7567         seems to severly mess up the caret.  TODO: I should probably fix
7568         the empty statement to update teh caret somehow.
7569
7570 2006-10-03  Chris Toshok  <toshok@ximian.com>
7571
7572         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
7573         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
7574         reflection, an internal row type, properties on said type, etc.)
7575         will work with our datagrid.  Fixes #79531.
7576
7577 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
7578
7579         * FileDialog.cs: Don't crash if a path is not accessible
7580           (System.UnauthorizedAccessException). Fixes #79569.
7581         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
7582           a ':' too. Return unknown icon for those paths/files.
7583
7584 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
7585
7586         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
7587         GetContainerControl returns null.
7588
7589 2006-10-02  Chris Toshok  <toshok@ximian.com>
7590
7591         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
7592         call to XGetWindowAttributes instead of "handle".  fixes an X
7593         error using notifyicon after the NotifyIconWindow to Form base
7594         class switch.
7595
7596 2006-10-02  Chris Toshok  <toshok@ximian.com>
7597
7598         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
7599         server grab and looping we need to do to get down to the most
7600         deeply nested child window.
7601         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
7602         QueryPointer again after the WarpPointer so we can generate a
7603         proper (fake) MotionNotify event to be enqueued in the destination
7604         window's queue.
7605         (GetCursorPos): call QueryPointer.
7606
7607         Fixes #79556.
7608
7609 2006-10-02  Jackson Harper  <jackson@ximian.com>
7610
7611         * NotifyIcon.cs: Derive the notify icon from a form, so things
7612         like FindForm work on it.
7613         - Swallow the WM_CONTEXTMENU message, since that is generated on
7614         mouse down, and context menu is a mouse up kinda guy.  I believe
7615         the correct fix here is probably to make the notify icon entirely
7616         NC area, but this seems to work fine for anyone not manipulating
7617         WndProc.
7618
7619 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
7620
7621         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
7622           ToolStripItemCollection.cs, ToolStripLabel.cs,
7623           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
7624           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
7625           Initial implementation.
7626         * TextRenderer.cs: Provide padding to MeasureText.
7627
7628 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
7629
7630         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
7631         of ButtonBaseAccessibleObject. Fix bug #79552.
7632
7633 2006-10-02  Jackson Harper  <jackson@ximian.com>
7634
7635         * MdiWindowManager.cs: When maximizing use the containers client
7636         rect, not it's bounds, so nc area is accounted correctly.
7637         - Use the parent form's size for the menu position, since the
7638         client isn't always the full form size.
7639
7640 2006-10-01  Chris Toshok  <toshok@ximian.com>
7641
7642         * ScrollableControl.cs: make sure neither right_edge or
7643         bottom_edge are < 0, since they're used as LargeChange for the
7644         horiz/vert scrollbars respectively.  Fixes #79539.
7645
7646 2006-10-01  Chris Toshok  <toshok@ximian.com>
7647
7648         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
7649         the xplatuix11 code can cause us to destroy/recreate our handle.
7650
7651         * XplatUIX11.cs
7652         (SystrayAdd):
7653         - this code can be invoked many times for the same Hwnd.  Make
7654           sure we only destroy the client window once (the first time this
7655           method is called).  This fixes bug #79544.
7656         - Remove the call to the improperly bound XSync.  why we had two
7657           bindings to this, I will never know, but this call resulted in
7658           events being discarded from the queue(!).
7659         - correct a misunderstanding of _XEMBED_INFO - the second atom is
7660           not our current state but the state we wish to be in.  So, 0 if
7661           we don't want to be mapped.  Change it to 1.
7662         (SystrayRemove): The XEMBED spec makes mention of the fact that
7663         gtk doesn't support the reparent of client windows away from the
7664         embedder.  Looking at gtksocket-x11.c seems to agree with this.
7665         The only avenue we have for removing systray icons is to destroy
7666         them.  We don't want the handle to go away for good, though, so
7667         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
7668         #79545.
7669         
7670 2006-10-01  Chris Toshok  <toshok@ximian.com>
7671
7672         * Form.cs (WndProc): inline the native_enabled variable usage into
7673         the cases in which it's used.  Fixes #79536.
7674
7675 2006-09-29  Mike Kestner  <mkestner@novell.com>
7676
7677         * ListView.cs : toggle the selection state for ctrl clicks in 
7678         multiselect mode. [Fixes #79417]
7679
7680 2006-09-29  Mike Kestner  <mkestner@novell.com>
7681
7682         * ListView.cs : kill CanMultiSelect and refactor the selection
7683         code to support multiselection in the absence of mod keys. Steal
7684         arrow/home/end keys by overriding InternalPreProcessMessage to
7685         restore regressed keynav behavior.
7686         [Fixes #79416]
7687
7688 2006-09-29  Jackson Harper  <jackson@ximian.com>
7689
7690         * MdiClient.cs: Repaint the titlebars when the active window is
7691         changed.
7692
7693 2006-09-29  Chris Toshok  <toshok@ximian.com>
7694
7695         * Application.cs: when entering a runloop with a modal, make sure
7696         the hwnd is enabled.  Fixes #79480.
7697
7698 2006-09-29  Chris Toshok  <toshok@ximian.com>
7699
7700         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
7701         when ListManager.CanAddRows == false, bump us back one.
7702
7703         * DataGridColumnStyle.cs (ParentReadOnly): remove the
7704         listmanager.CanAddRows check.  This makes ArrayLists uneditable
7705         using a datagrid, which is not right.
7706         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
7707         is an IEditable, but call property_descriptor.SetValue regardless.
7708         fixes #79435.
7709
7710 2006-09-29  Chris Toshok  <toshok@ximian.com>
7711
7712         * DataGridBoolColumn.cs: we need to test equality in the face of
7713         possible null values (as is the case with the default NullValue).
7714         This patch keeps us from crashing in that case.
7715
7716 2006-09-29  Jackson Harper  <jackson@ximian.com>
7717
7718         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
7719         here, since it will get called for every node collection in the
7720         tree. This is now done in the treeview once the sorting is
7721         finished.
7722         * TreeView.cs: Recalculate the visible order, and update the
7723         scrollbars after sorting, set the top nope to the root so that the
7724         recalc actually works.
7725
7726 2006-09-29  Chris Toshok  <toshok@ximian.com>
7727
7728         * LinkLabel.cs: more handling of the default link collection in
7729         the face of LinkArea manipulation.  The default link collection
7730         contains 1 element (start=0,length=-1).  If the user sets LinkArea
7731         to anything and the links collection is the default, clear it.
7732         Then only add the link if its nonempty.  Fixes #79518.
7733
7734 2006-09-29  Chris Toshok  <toshok@ximian.com>
7735
7736         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
7737         piece correctly when we hit a '\n'.  Fixes #79517.
7738
7739 2006-09-29  Chris Toshok  <toshok@ximian.com>
7740
7741         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
7742         change the binding of gdk_init_check to take two IntPtr's, and
7743         pass IntPtr.Zero for both of them.  Fixes #79520.
7744
7745 2006-09-29  Mike Kestner  <mkestner@novell.com>
7746
7747         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
7748         [Fixes #78779]
7749
7750 2006-09-28  Jackson Harper  <jackson@ximian.com>
7751
7752         * XplatUIX11.cs: When translating NC messages make sure we go from
7753         whole window to screen, not client window to screen.
7754         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
7755         method doesn't exist
7756         - Skip over controls that aren't forms when arranging.
7757
7758 2006-09-28  Jackson Harper  <jackson@ximian.com>
7759
7760         * XplatUIWin32.cs: Clip the rect to the parent window.
7761         * XplatUIStructs.cs: Add clipping modes struct.
7762         * InternalWindowManager.cs: New private method that factors title
7763         bar heights in when calculating the pos of an NC mouse message.
7764         - Use SendMessage to force a paint when the form's size is changed
7765         instead of painting the decorations immediately.
7766         - Don't let the NC button click messages get to DefWndProc,
7767         because they will attempt to handle windowing themself, and this
7768         messes up z-order (it will put them in front of the scrollbars).
7769         * XplatUIX11.cs: Make sure that we don't reset window managers if
7770         we already have one (ie the window is an MDI window).
7771
7772 2006-09-28  Chris Toshok  <toshok@ximian.com>
7773
7774         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
7775         menu code really needs going over.
7776
7777 2006-09-27  Chris Toshok  <toshok@ximian.com>
7778
7779         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
7780         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
7781         window is maximizable.  So, we need to make sure that even if we
7782         clear the border/wm frame of those functions, they're still
7783         available (basically, we remove the decoration without removing
7784         the function).  Half the fix for #79338.
7785
7786 2006-09-27  Chris Toshok  <toshok@ximian.com>
7787
7788         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
7789         Fixes bug #79515.
7790
7791 2006-09-27  Chris Toshok  <toshok@ximian.com>
7792
7793         * Splitter.cs: reorder things a bit so that we don't actually
7794         draw/move the splitter until after calling OnSplitterMoving.  This
7795         lets users cancel/disallow the movement by explicitly setting
7796         event.SplitX/SplitY.  Fixes #79372.
7797
7798 2006-09-27  Jackson Harper  <jackson@ximian.com>
7799
7800         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
7801         because it is most likely on a window being destroyed, and that
7802         will give us an X11 error.
7803
7804 2006-09-27  Chris Toshok  <toshok@ximian.com>
7805
7806         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
7807         the dropdown button now toggles between showing and hiding the
7808         dropdown.  Also, get rid of dropdown_form_showing and just use
7809         dropdown_form.Visible.  We still don't do a grab, but I'll leave
7810         that part to someone who has handled Capture-fu before.
7811
7812 2006-09-27  Chris Toshok  <toshok@ximian.com>
7813
7814         * DataGrid.cs: return false if alt isn't pressed when '0' is
7815         pressed.  this keeps the '0' key from being swallowed, and fixes
7816         bug #79350.
7817
7818 2006-09-27  Chris Toshok  <toshok@ximian.com>
7819
7820         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
7821         Calling Refresh (in response to a scrollbar event) screws up the
7822         scrollbar painting.  Fixes bug #78923.
7823
7824 2006-09-27  Chris Toshok  <toshok@ximian.com>
7825
7826         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
7827         then insert into hashtable" blocks threadsafe.
7828
7829 2006-09-27  Chris Toshok  <toshok@ximian.com>
7830
7831         * MessageBox.cs (CreateParams): the styles should be |'ed with our
7832         baseclass's, since otherwise the
7833         ControlBox/MinimizeBox/MaximizeBox assignments above have no
7834         effect.  This gets the close button back in messageboxes.
7835
7836 2006-09-27  Chris Toshok  <toshok@ximian.com>
7837
7838         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
7839         flag, not just != 0.  this makes flags that are actually multiple
7840         bits (like WS_CAPTION) work.  fixes bug #79508.
7841
7842 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
7843
7844         * PageSetupDialog.cs: add support for getting and settings the 
7845         paper size, source and orientation.
7846
7847 2006-09-26  Chris Toshok  <toshok@ximian.com>
7848
7849         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
7850         and caption == "", we need to remove the resize handles as well as
7851         the title bar.
7852
7853         * Control.cs (set_Text): turns out that setting Text on a form
7854         should change the WM styles on the window, since if ControlBox ==
7855         false, the only way to get a window border is to have a non-""
7856         Text property.  check winforms/forms/text.cs for an example.  so,
7857         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
7858         update both window styles and title.  This fixes a lot of dialogs
7859         (including the preferences dialog in MonoCalendar.)
7860
7861 2006-09-26  Chris Toshok  <toshok@ximian.com>
7862
7863         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
7864         control isn't a Form), call Win32ShowWindow to hide the window,
7865         but don't update the control Visible property.  When we reparent
7866         back to a parent control, call SetVisible in order for the
7867         window's visibility to be reinstated.
7868
7869         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
7870         the FosterParent.
7871
7872         * Control.cs (ControlCollection.Remove): remove that value.Hide()
7873         call for good, since it breaks MonoCalendar (and other things I'm
7874         sure.) Also, set all_controls to null *after* the owner calls,
7875         which end up regenerating it.
7876         (ChangeParent): allow new_parent to be == null, passing
7877         IntPtr.Zero down to XplatUI.
7878
7879         this fixes #79294 the right way.
7880
7881 2006-09-26  Mike Kestner  <mkestner@novell.com>
7882
7883         * GridEntry.cs : internal SetParent method.
7884         * PropertyGrid.cs : attach to property changed on the proper
7885         target if we have a hierarchical grid with subobjects. Setup
7886         GridItem.Parent for hierarchical items.
7887         * PropertyGridView.cs : Set value on the correct target for
7888         hierarchical grids. [Fixes #78903]
7889
7890 2006-09-26  Chris Toshok  <toshok@ximian.com>
7891
7892         * Control.cs (ChildNeedsRecreating): this should return true if
7893         either we're being recreated and the child is in our list, or our
7894         parent is waiting for our recreation.
7895
7896 2006-09-26  Chris Toshok  <toshok@ximian.com>
7897
7898         * Control.cs (ControlCollection.Remove): reinstate the
7899         value.Hide() call as suggested in bug #79294.
7900
7901 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
7902
7903         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
7904         coordinates (versus a relative move).
7905
7906 2006-09-26  Chris Toshok  <toshok@ximian.com>
7907
7908         * Control.cs: rework child recreation a little bit.  It turns out
7909         that we race between the DestroyNotify the WM_DESTROY message.  If
7910         the parent gets its DestroyNotify before the child gets the
7911         WM_DESTROY message, the child ends up not recreating (since the
7912         parent finishes its recreation on DestroyNotify, and the child
7913         checks ParentIsRecreating.)
7914
7915         So, instead we store off a list of all the child controls which
7916         need to be recreated when the parent control starts to recreate
7917         itself.  Then, when child controls get their WM_DESTROY message we
7918         check to see if they're in the parent's pending recreation list,
7919         and if so, we recreate.  This removes all dependency on ordering
7920         from the code and fixes the initial MonoCalendar upgrade dialog.
7921         
7922 2006-09-26  Jackson Harper  <jackson@ximian.com>
7923
7924         * TextControl.cs: Use the Line to get the length of the line,
7925         since soft line breaks can change the end line.
7926
7927 2006-09-26  Chris Toshok  <toshok@ximian.com>
7928
7929         * Control.cs (ControlCollection.AddImplicit): don't add the
7930         control again if it's already in one of our lists.  This keeps us
7931         from adding controls over and over again for comboboxes when their
7932         handle gets recreated (as the combobox adds implicit controls in
7933         OnHandleCreated).  Fixes the X11 errors in bug #79480.
7934
7935 2006-09-26  Jackson Harper  <jackson@ximian.com>
7936
7937         * TextControl.cs: When deleting characters make sure that any
7938         orphaned zero lengthed tags get deleted.
7939         - Fix ToString for zero lengthed tags.
7940
7941 2006-09-25  Jackson Harper  <jackson@ximian.com>
7942
7943         * TextControl.cs: When getting a tag at the location there can be
7944         multiple tags at the same spot, these are 0-lengthed tags that
7945         appear when extra formatting has been stuck in a location.  We
7946         need to pull out the last of these 0 lengthed tags.
7947
7948 2006-09-25  Jackson Harper  <jackson@ximian.com>
7949
7950         * TextControl.cs: Fix print out in debug method.
7951         * TextBoxBase.cs: When text is set bail if we are setting to the
7952         previous value.
7953         
7954 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
7955
7956         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
7957           It is now possible to change the selected index in a FontXXXListBox
7958           with the up and down arrow keys from the FontXXXTextBoxes.
7959           Also, send the FontXXXTextBox mouse wheel event to the corresponding
7960           FontXXXListBoxes to match ms.
7961
7962 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
7963
7964         * SystemInformation.cs: Return a clone of the theme's MenuFont because
7965         anyone can dispose it, anytime. All other properties returns enums, 
7966         structs or basic types so they don't need such tricks.
7967
7968 2006-09-22  Jackson Harper  <jackson@ximian.com>
7969
7970         * XplatUI.cs:
7971         * XplatUIWin32.cs:
7972         * Clipboard.cs:
7973         * DataFormats.cs:
7974         * XplatUIOSX.cs:
7975         * XplatUIDriver.cs: Update interface to add a primary selection
7976         flag, so the driver can use the primary selection buffer if
7977         needed.
7978         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
7979
7980         * RichTextBox.cs: We need to supply the data object to paste now
7981         (so we can choose to supply CLIPBOARD or PRIMARY).
7982         * TextBoxBase.cs: Supply data object to paste (see above).
7983         - Middle click uses the primary selection data object.
7984         
7985 2006-09-21  Chris Toshok  <toshok@ximian.com>
7986
7987         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
7988         of SetWMStyles.  It's still a rat's nest and is largely
7989         order-dependent which I dislike immensely.  This also fixes the X
7990         button disappearing from toplevel forms.
7991
7992 2006-09-21  Mike Kestner <mkestner@novell.com>
7993
7994         * ListBox.cs: move Jordi's click/dblclick raising code to the
7995         mouse up handler.
7996
7997 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
7998
7999         * ListBox.cs: Fixes 79450
8000
8001 2006-09-21  Mike Kestner <mkestner@novell.com>
8002
8003         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
8004         to deal with people updating the TreeNodeCollection after the tree
8005         is disposed.  "Fixes" 79330.
8006
8007 2006-09-20  Jackson Harper <jackson@ximian.com>
8008
8009         * TextControl.cs: Push the cursor record onto the undo stack
8010         before the delete action. This fixes 78651.
8011
8012 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
8013
8014         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
8015         CreateParams. Fixes 79329.
8016
8017 2006-09-19  Chris Toshok  <toshok@ximian.com>
8018
8019         * XplatUIX11.cs: a couple of blanket code massage passes to clean
8020         things up a bit.  First, get rid of the NetAtoms array (and the NA
8021         enum), and just embed the atoms as static fields.  Also, add a
8022         couple of functions (StyleSet and ExStyleSet) to clean up all the
8023         bitmask testing of styles.
8024
8025         * X11Structs.cs: remove the NA enum, not needed anymore.
8026         
8027 2006-09-19  Chris Toshok  <toshok@ximian.com>
8028
8029         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
8030         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
8031         added cleanup to get MessageBox titles appearing again, which were
8032         broken by my earlier fix for caption-less/ControlBox-less windows.
8033
8034 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
8035
8036         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
8037           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
8038           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
8039           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
8040           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
8041           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
8042           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
8043           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
8044           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
8045           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
8046           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
8047             Inital import.
8048         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
8049           ToolStripButton.cs: Stubs needed for above.
8050         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
8051
8052 2006-09-15  Chris Toshok  <toshok@ximian.com>
8053
8054         * XplatUIX11.cs:
8055         - make the MessageQueues hashtable Synchronized.
8056         
8057         - SendMessage: if the Hwnd is owned by a different thread, use the
8058         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
8059         thread.  Fixes bug #79201.
8060
8061 2006-09-15  Chris Toshok  <toshok@ximian.com>
8062
8063         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
8064         ControlBox == false, we disallow maximize/minimize/close.  If the
8065         form Caption is "" we also disallow move (and get rid of the Title
8066         decoration).  Unfortunately, regardless of how things are set,
8067         we're stuck with the Title and WM menu.
8068
8069 2006-09-15  Chris Toshok  <toshok@ximian.com>
8070
8071         * Application.cs: add locking around the static message_filters
8072         ArrayList, part of #79196.
8073
8074 2006-09-15  Chris Toshok  <toshok@ximian.com>
8075
8076         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
8077         Form.ControlBox == false, the window has no titlebar nor resize
8078         handles.  fixes bug #79368.
8079
8080 2006-09-15  Chris Toshok  <toshok@ximian.com>
8081
8082         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
8083         >= 0.  Fixes bug #79370.
8084
8085 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
8086         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
8087         * Control.cs:
8088             Add properties: LayoutEngine, Margin, DefaultMargin.
8089             Add method: GetPreferredSize.
8090             Move layout logic from PerformLayout to layout engines. 
8091
8092 2006-09-13  Chris Toshok  <toshok@ximian.com>
8093
8094         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
8095         fix for #79326 broke #78718, so this change addresses that.
8096
8097         - in SendWMDestroyMessages remove the call to
8098         CleanupCachedWindows, since we might be recreating the control and
8099         need to maintain the references to right Hwnd handles.  Also, set
8100         the zombie flag to true for each of the children in the hierarchy
8101         instead of calling hwnd.Dispose.  This will cause GetMessage to
8102         ignore all events for the window except for DestroyNotify.
8103
8104         - In GetMessage, ignore messages except for DestroyNotify for
8105         zombie hwnds.
8106         
8107         * Control.cs: revert the is_recreating fix from the last
8108         ChangeLog.  It's definitely "right", but it breaks switching from
8109         an MDI form to a non-MDI form.  Will need to revisit that.
8110
8111         * Hwnd.cs: add a zombie flag, which means "the
8112         client_window/whole_window handles are invalid, but we're waiting
8113         for the DestroyNotify event to come in for them".  Set the flag to
8114         false explicitly if setting WholeWindow/ClientWindow, and also
8115         when Disposing.
8116         
8117 2006-09-13  Chris Toshok  <toshok@ximian.com>
8118
8119         * XplatUIX11.cs: rework window destruction slightly.
8120
8121         - when destroying the windows associated with a control, we don't
8122         need 2 separate XDestroyWindow calls.  Just the one for the
8123         whole_window (or for client_window if whole_window is somehow
8124         IntPtr.Zero -- can this happen?) is enough.
8125
8126         - reworked SendWMDestroyMessages slightly, so we always dispose
8127         the child control hwnd's after sending the messages.
8128         
8129         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
8130         the two places it was used (one was even using hwnd.Handle and the
8131         other hwnd.client_window.  ugh), adding another call in
8132         SendWMDestroyMessages.  We need this new call because now the
8133         DestroyNotify events in the queue will be ignored for the child
8134         controls (as their hwnd's were disposed, and the window id's
8135         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
8136
8137         - this fixes bug #79326.
8138
8139 2006-09-13  Chris Toshok  <toshok@ximian.com>
8140
8141         * Control.cs: don't always set is_recreating to false at the end
8142         of RecreateHandle, since sometimes we're not done (and won't be
8143         until WndProc handles the WM_DESTROY message).  Also, set
8144         is_recreating to false in the WM_DESTROY handling code.  Part of
8145         the fix for bug #79326.
8146
8147 2006-09-13  Miguel de Icaza  <miguel@novell.com>
8148
8149         * X11DesktopColors.cs: Start the droppage of debugging messages.
8150
8151         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
8152
8153 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
8154
8155         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
8156
8157 2006-09-12  Chris Toshok  <toshok@ximian.com>
8158
8159         * DataGrid.cs (get_ListManager): if the list_manager is null, try
8160         to create it using SetDataSource.  Fixes bug #79151.
8161
8162 2006-09-11  Chris Toshok  <toshok@ximian.com>
8163
8164         * XEventQueue.cs: add a DispatchIdle property.
8165
8166         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
8167         either the queue is null, or the queue has DispatchIdle set to
8168         true.
8169         (DoEvents): set queue.DispatchIdle to false around the
8170         peek/translate/dispatch message loop in this method.  This keeps
8171         Application.Doevents from emitting idle events.  Part of the fix
8172         for #78823.
8173
8174 2006-09-11  Chris Toshok  <toshok@ximian.com>
8175
8176         * DataGrid.cs (set_DataSource): make this work for both the
8177         winforms/datagrid test and ReportBuilder.  It seems as though when
8178         we've created a ListManager (or maybe it's if we have a
8179         BindingContext?), when we set the DataSource it clears the
8180         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
8181         #79333.
8182
8183 2006-09-11  Chris Toshok  <toshok@ximian.com>
8184
8185         * XplatUIX11.cs: deal with queue being null, which happens in all
8186         the Clipboard functions.  Fixes one of the two problems mentioned
8187         in #78612.
8188
8189 2006-09-11  Chris Toshok  <toshok@ximian.com>
8190
8191         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
8192         button on various spots (including outside the menu) works closer
8193         to MS, and doesn't crash.  Fixes #79343.
8194
8195 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
8196
8197         * ListView.cs: Do not initialize item_sorter in init. To match MS,
8198         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
8199         and the internal comparer is set. When a new ListViewItemSorter is set,
8200         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
8201         was specified. No further processing is necessary if SortOrder is set
8202         to it's current value. If Sorting is modified to None, and View is
8203         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
8204         (either custom or our internal ItemComparer) to null, on 1.0 profile
8205         only set item_sorter to null if its our internal IComparer. If Sorting
8206         is modified to Ascending or Descending, then use our internal IComparer
8207         if none is set, and if the current IComparer is our internal one then:
8208         on 2.0 profile always replace it with one for new Sorting, and on 1.0
8209         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
8210         Enum.IsDefined to verify whether a valid View value is specified in
8211         its setter. Automatically sort listview items when listview is
8212         created. In Sort, do nothing if ListView is not yet created, or if
8213         no item_sorter is set (no Sorting was set, Sorting was explicitly set
8214         to None or ListViewItemSorter was set to null). Added Sort overload
8215         taking a bool to indicate whether the ListView should be redrawn when
8216         items are sorted (we use this in ListViewItemCollection to avoid double
8217         redraws). Modified our internal IComparer to take the sort order into
8218         account. In Add and AddRange methods of ListViewItemCollection, also
8219         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
8220         view), but use overload with noredraw option to avoid double redraw.
8221         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
8222         true when View is Tile, and do the same when attempting to set View to
8223         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
8224         for selected/checked indices, as it involves overhead when sorting is
8225         done while these collections are not used all that often. Instead
8226         we'll build the indices on demand. Modified IList implementation of
8227         CheckedIndexCollection to use public methods if object is int.
8228         Modified CheckedListViewItemCollection to hide checked items if
8229         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
8230         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
8231         IList implementation in SelectedIndexCollection to use public methods
8232         if object is int. Modified SelectedListViewItemCollection to hide
8233         selected items if listview is not yet created.
8234         * ListViewItem.cs: CheckedIndices list no longer needs to be
8235         maintained separately (see ListView changes). Also clone font, fixes
8236         test failure.
8237
8238 2006-09-11  Mike Kestner  <mkestner@novell.com>
8239
8240         * ComboBox.cs: if we are updating the contents of the currently
8241         selected index, refresh the control or the textbox selection.
8242         [Fixes #79066]
8243
8244 2006-09-11  Mike Kestner  <mkestner@novell.com>
8245
8246         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
8247         the 'specified' logic has been moved there.  This seems like a bug 
8248         in Control.cs, since our current SetBoundsCore completely ignores 
8249         the specified parameter.  Peter's commit seems to indicate that is 
8250         the way the MS control implementation works.  [Fixes #79325]
8251
8252 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
8253
8254         * XplatUI.cs: Set default_class_name to be composed
8255         of current domain id. This allows MWF to be loaded in multiple
8256         domains on Win32.
8257
8258 2006-09-09  Miguel de Icaza  <miguel@novell.com>
8259
8260         * X11Keyboard.cs: If we are unable to obtain the input method, do
8261         not call CreateXic to create the input context.   Should fix
8262         #78944/79276.
8263
8264 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
8265
8266         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
8267           Simplified gnome support by adding more pinvokes to get the
8268           icon for a file or mime type.
8269
8270 2006-09-08  Jackson Harper  <jackson@ximian.com>
8271
8272         * MenuAPI.cs: Deslect popup context menu items before closing the
8273         window, so that you don't see the previously selected item
8274         selected when you reopen the menu.
8275         * TextControl.cs: Update the cursor position even if we don't have
8276         focus.  This fixes typing in things like the ComboBox.  I'm not
8277         totally sure we should always set the visibility if we don't have
8278         focus, but couldn't find any corner cases where the cursor showed
8279         up when it shouldn't.
8280
8281 2006-09-08  Chris Toshok  <toshok@ximian.com>
8282
8283         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
8284         our arrays are length 256.  & 0xff before indexing.  Fixes the
8285         crash in bug #78077.
8286         
8287 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8288
8289         * ThemeWin32Classic.cs: 
8290         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
8291         is true. Handle that check box too.
8292
8293 2006-09-07  Chris Toshok  <toshok@ximian.com>
8294
8295         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
8296         79244.
8297
8298 2006-09-07  Chris Toshok  <toshok@ximian.com>
8299
8300         * Control.cs: in set_BackColor only do the work if
8301         background_color != value.
8302
8303         * XplatUIX11.cs: move the clearing of invalid areas (both client
8304         and nc) to the same block of code where we set (nc_)expose_pending
8305         to false.  That is, move it from PaintEventEnd to PaintEventStart,
8306         so things that cause invalidates from within OnPaint will trigger
8307         another call to OnPaint.  Fixes bug #79262.
8308
8309 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
8310
8311         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
8312         * FileDialog.cs: Fix typo
8313
8314 2006-09-07  Jackson Harper  <jackson@ximian.com>
8315
8316         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
8317         for tab pages if they have any.
8318
8319 2006-09-06  Mike Kestner  <mkestner@novell.com>
8320
8321         * Splitter.cs: use the "current" rect when finishing drag handle
8322         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
8323
8324 2006-09-06  Mike Kestner  <mkestner@novell.com>
8325
8326         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
8327         support offset splitters. [Fixes #79298]
8328
8329 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
8330
8331         * Mime.cs: Fixed a bug that could override the global mime type
8332           result.
8333
8334 2006-09-05  Jackson Harper  <jackson@ximian.com>
8335
8336         * TabControl.cs: Better calculation method for setting the slider
8337         pos. Prevents crashes on really wide tabs.
8338         - Draw Image on tab pages if an image list is used.
8339
8340 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8341
8342         * MonthCalendar.cs: When Font changes, the Size should be
8343         updated to fit the new font's space requirements.
8344
8345 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
8346
8347         * ListBox.cs: If the items are cleared with Items.Clear set
8348           top_index to 0.
8349
8350 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8351
8352         * MonthCalendar.cs: Handle arrow keys as input keys. Also
8353         fire DateChanged event instead of DateSelected event when
8354         the date was changed by keyboard interaction.
8355
8356 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8357
8358         * DateTimePicker.cs: Handle DateChanged for the associated
8359         month_calendar control, and set month_calendar.Font from 
8360         OnFontChanged method, as well as resize the height of the
8361         control when needed. Make PreferredHeight proportional.
8362
8363 2006-09-01  Chris Toshok  <toshok@ximian.com>
8364
8365         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
8366         properties.
8367
8368         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
8369
8370 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
8371
8372         * FileDialog.cs: Set ClientSize instead of window size, to allow space
8373           for decorations (Fixes #79219)
8374
8375 2006-09-01  Mike Kestner  <mkestner@novell.com>
8376
8377         * ComboBox.cs: first stab at sorting plus some selection handling
8378         fixes to bring us more in line with MS behavior.  Also switches back
8379         to index based selection.  Alternative patches for index-based 
8380         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
8381         and latency@gmx.de on bug 78848.  I assume they were similar to this
8382         code I've had simmering in my tree forever.
8383         [Fixes #78848]
8384
8385 2006-09-01  Chris Toshok  <toshok@ximian.com>
8386
8387         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
8388         when setting list position guard against ending up with a -1 index
8389         (the other part of the fix for #78812).  Should probably make sure
8390         we don't need the analogous fix in the ItemDeleted case.
8391
8392         * DataGrid.cs:
8393         - in SetDataSource, work around the fact that the way
8394         OnBindingContextChanged is invoked will cause us to re-enter this
8395         method.  I'll remove the hack once I investigate
8396         OnBindingContextChanged.
8397
8398         - fix the logic in set_DataSource and set_DataMember (basically
8399         what to do if the other of the two is null.)
8400         
8401         - in OnListManagerItemChanged, we need to take into account the
8402         edit row when deciding whether or not to call RecreateDataGridRows
8403         (part of the fix for #78812).
8404
8405 2006-09-01  Jackson Harper  <jackson@ximian.com>
8406
8407         * Splitter.cs: Don't do anything if there is no control to affect
8408         (prevents us from crashing in weird tet cases).
8409         * TreeView.cs: Bounding box for the mouse movement reverting
8410         focus/selection back to previously selected node.  This matches
8411         MS, and makes the tree a lot more useable.
8412         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
8413         use clipping so they are not drawn.  This fixes when the control
8414         is set to have a transparent background, or if it was over an
8415         image.
8416
8417 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
8418
8419         * MimeIcon.cs: Improved handling for reading default icons when
8420           using gnome (2.16 made it necessary). Check and read svg icons
8421           first, then 48x48 and then 32x32 icons.
8422
8423 2006-08-31  Chris Toshok  <toshok@ximian.com>
8424
8425         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
8426         visible.
8427
8428         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
8429         ProcessKeyPreview.  Fixes part of #77806.
8430
8431         * DataGrid.cs: big patch.
8432
8433         - revert the queueing up of DataSource/DataMember if inside
8434         BeginInit/EndInit calls.  That's not the way the datagrid achieves
8435         its delayed databinding.  Instead, call SetDataSource in
8436         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
8437         #78811.
8438
8439         - Also, it wasn't mentioned in #78811, but the test case exhibits
8440         behavior that was lacking in our datagrid implementation - Columns
8441         that have mapping names that don't exist in the datasource's
8442         properties aren't shown.  Yuck.  To fix this I added the bound
8443         field to the column style, and basically any calculation to figure
8444         out anything about columns uses a loop to find the bound columns.
8445         still need to investigate if I can cache an array of the bound
8446         columns or if the indices must be the same.
8447
8448         - When setting CurrentCell, we no longer abort if the cell being
8449         edited was in the add row.  This fixes the other part of #77806.
8450
8451         - The new code also fixes #78807.
8452         
8453         * ThemeWin32Classic.cs: perpetrate the same disgusting
8454         column.bound field hack, and only render bound fields.
8455
8456 2006-08-31  Chris Toshok  <toshok@ximian.com>
8457
8458         * DataGridColumnStyle.cs: add bound field.  this field is true if
8459         the datasource has a property corresponding to the mapping name.
8460
8461         * DataGridTableStyle.cs: set the bound field on the column styles
8462         depending on whether or not we have a column for that property.
8463
8464 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
8465
8466         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
8467           splitter control (fixes #79228)
8468
8469 2006-08-31  Chris Toshok  <toshok@ximian.com>
8470
8471         * DataGridColumnStyle.cs: we need to delay the assignment of
8472         property descriptor until the last possible moment due to the lazy
8473         databinding stuff in the datagrid.  Also, fix the exceptions
8474         thrown by CheckValidDataSource to match MS.
8475
8476 2006-08-31  Jackson Harper  <jackson@ximian.com>
8477
8478         * Form.cs: When activated select the active control, if there is
8479         no active control, we select the first control.
8480         * XplatUIX11.cs: If there is no focus control when we get a
8481         FocusIn event, find the toplevel form and activate it.  This
8482         occurs when you popup a window, it becomes the focus window, then
8483         you close that window, giving focus back to the main window.
8484
8485 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8486
8487         * MonthCalendar.cs: 
8488         * ThemeWin32Classic.cs: Cache Font in bold style, as well
8489         as StringFormat with Center alignments in MonthCalendar,
8490         instead of creating new ones when drawing the control. 
8491         Also, draw the month name in bold style.
8492
8493 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
8494
8495         * Control.cs:
8496           - PerformLayout(): It would seem MS performs the fill even if the 
8497             control is not visible (part of #79218 fix)
8498           - ResetBackColor(): Use the setter to reset the color, to allow
8499             overriders to catch the change.
8500         * Form.cs:
8501           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
8502           - CreateHandle(): dito (part of $79218 fix)
8503           - Don't set an icon if we have a dialog
8504         * ScrollableControl.cs:
8505           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
8506           - ScrollIntoView(): No need to scroll if control is already visible
8507             (resolves fixme and fixes #79218)
8508
8509 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8510
8511         * MonthCalendar.cs: Change proportions in SingleMonthSize
8512         to match the aspect of the original control.
8513
8514 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
8515
8516         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
8517           get updated when they get maximized.
8518
8519 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
8520
8521         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
8522
8523 2006-08-29  Chris Toshok  <toshok@ximian.com>
8524
8525         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
8526
8527 2006-08-29  Jackson Harper  <jackson@ximian.com>
8528
8529         * TreeView.cs: Need to track selected node and highlighted node,
8530         they aren't always the same thing, when the mouse is down on a
8531         node it is hilighted, but not selected yet.
8532         - Do the HideSelection stuff right
8533         - Need to focus on rbutton mouse down. And redraw selection when
8534         right click is mouse upped.
8535
8536 2006-08-29  Mike Kestner  <mkestner@novell.com>
8537
8538         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
8539         when SubItems.Count < Columns.Count.  [Fixes #79167]
8540
8541 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
8542
8543         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
8544
8545 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
8546
8547         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
8548           from X. Only send based on ConfigureNotify if we don't have the
8549           correct location in hwnd (if the window manager moved us)
8550
8551 2006-08-28  Mike Kestner  <mkestner@novell.com>
8552
8553         * ListView.cs: remove a TODO. 
8554         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
8555         [Fixes ListView part of #79166]
8556
8557 2006-08-28  Mike Kestner  <mkestner@novell.com>
8558
8559         * ListView.cs: move wheel handler to parent since it is focused
8560         instead of the item_control now.  [Fixes #79177]
8561
8562 2006-08-28  Mike Kestner  <mkestner@novell.com>
8563
8564         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
8565         when the control is focused. [Fixes #79171]
8566
8567 2006-08-28  Mike Kestner  <mkestner@novell.com>
8568
8569         * ListView.cs: size the item and header controls for empty and
8570         unscrollable views.
8571         * ThemeWin32Classic.cs: draw disabled backgrounds.
8572         [Fixes #79187]
8573
8574 2006-08-28  Chris Toshok  <toshok@ximian.com>
8575
8576         * Form.cs: remove unused "active_form" static field.
8577
8578         * Hwnd.cs: lock around accesses to static windows collection.
8579
8580         * Application.cs: lock threads in Exit ().
8581
8582 2006-08-28  Chris Toshok  <toshok@ximian.com>
8583
8584         * NativeWindow.cs: lock around accesses to window_collection.
8585         
8586 2006-08-28  Chris Toshok  <toshok@ximian.com>
8587
8588         * Control.cs: err, fix this the right way, by locking on controls
8589         when using it.  not by making it synchronized.
8590
8591 2006-08-28  Chris Toshok  <toshok@ximian.com>
8592
8593         * Control.cs: make the static "controls" field synchronized, as it
8594         gets updated from multiple threads.
8595
8596 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
8597
8598         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
8599           Prevent other threads from exiting when calling thread sets quit state.
8600         * XEventQueue.cs: Added PostQuitState property
8601
8602 2006-08-27  Chris Toshok  <toshok@ximian.com>
8603
8604         * AsyncMethodData.cs: add a slot for the window handle.
8605
8606         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
8607         window (the destination control's window, not the foster window).
8608
8609         * Control.cs (BeginInvokeInternal): store the window's handle in
8610         the AsyncMethodData.
8611         
8612
8613 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
8614
8615         * XplatUIX11.cs:
8616           - PostQuitMessage: Removed resetting S.D display handle, we might have
8617             another loop started after calling PostQuitMessage (Fixes #79119)
8618           - Created destructor to reset S.D handle
8619
8620 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
8621
8622         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
8623
8624 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8625
8626         * TextControl.cs (Insert): Update the caret position even if we don't
8627           have a handle yet, just don't call the driver in that case.
8628         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
8629           to the end of the new selection text (Fixes #79184)
8630
8631 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8632
8633         * Form.cs (Activate): Only activate if the handle is created)
8634         * Control.c:
8635           - Mark window as invisible when it's disposed
8636           - Check if window handle is created when setting window visible, 
8637             instead of relying just on the is_created variable
8638           - Check if object is disposed when creating the control (Fixes #79155)
8639
8640 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8641
8642         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
8643           when allowing layout again. Otherwise we re-generate the anchoring 
8644           distance to the border again and actually alter what the user wanted
8645           This is ugly, it'd be better if we used DisplayRectangle instead of
8646           ClientRectangle for Control.UpdateDistances, but that causes us to
8647           have other problems (initial anchoring positons would be wrong)
8648           (Fixes #78835)
8649
8650 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8651
8652         * Control.cs:
8653           - The size and location setters shouldn't go directly to 
8654             SetBoundsCore, but to SetBounds, which triggers layout on the
8655             parent, then calls SetBoundsCore. (Related to fix for #78835)
8656           - SetBounds: Moved actual location update code into this function
8657             from SetBoundsCore, to match MS. Added call to PerformLayout if
8658             we have a parent (to trigger resizing of anchored parents if the 
8659             child size has changed (see testcase for #78835) 
8660         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
8661           new control code
8662         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
8663
8664 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8665
8666         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
8667           System.Drawing when a toplevel window gets closed; there might
8668           be other toplevel windows belonging to the same app (Fixes #78052)
8669
8670 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
8671
8672         * FileDialog.cs: After reading FileDialog settings from mwf_config
8673           use Desktop prefix only if a real folder doesn't exist anymore.
8674         * FontDialog.cs: Added char sets.
8675           It is now possible to select the font, size or style with the
8676           textboxes.
8677
8678 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
8679
8680         * PrintPreviewDialog.cs: Use assembly name constants.
8681
8682 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8683
8684         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
8685           scrollbar from whacking it's buttons)
8686
8687 2006-08-24  Chris Toshok  <toshok@ximian.com>
8688
8689         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
8690         in this patch (aggregating setting Left/Top/Width/Height to
8691         setting Bounds on the scrollbars), but the crux of the fix is in
8692         Recalculate, where we scroll by the remaining scroll_position if
8693         we're hiding a scrollbar.  The 2*$5 reward in the comment is
8694         serious.
8695
8696 2006-08-24  Jackson Harper  <jackson@ximian.com>
8697
8698         * MdiClient.cs:
8699         * MdiWindowManager.cs: If the form is made a non-mdi window we
8700         need to remove the form closed event so that closing forms works
8701         correctly.
8702
8703 2006-08-24  Jackson Harper  <jackson@ximian.com>
8704
8705         * Control.cs: Make IsRecreating internal so that the driver can
8706         check it
8707         - Temporarily remove the Hide when controls are removed, its
8708         making a whole bunch of things not work because visibility isn't
8709         getting reset elsewhere correctly
8710         * Form.cs: Need to do a full handle recreation when the mdi parent
8711         is set.
8712         * XplatUIX11.cs: If we are recreating handles don't dispose the
8713         HWNDs.  What was happening is the handles were being recreated in
8714         SendWMDestroyMessages, but then flow continued on in that method
8715         and destroyed the new handles.
8716
8717 2006-08-23  Jackson Harper  <jackson@ximian.com>
8718
8719         * Form.cs: MdiClient is always at the back of the bus
8720         * Control.cs: When the order of items in the collection is changed
8721         we need to reset the all_controls array
8722         - do the same sorta setup thats done when adding a control when a
8723         control is set on the collection.
8724
8725 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
8726
8727         * TextBoxBase.cs (get_Text): Return an empty array if our document
8728           is empty (fixes #79052)
8729
8730 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8731
8732         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
8733           on WM_SYSCHAR messages (fixes #79053)
8734
8735 2006-08-23  Chris Toshok  <toshok@ximian.com>
8736
8737         * DataGrid.cs: fix flickering when scrolling vertically.
8738
8739 2006-08-23  Chris Toshok  <toshok@ximian.com>
8740
8741         * DataGrid.cs (EndEdit): only invalidate the row header when we
8742         need to.
8743
8744 2006-08-23  Chris Toshok  <toshok@ximian.com>
8745
8746         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
8747         methods.  fixes the flicker when scrolling around.
8748
8749 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8750
8751         * FileDialog.cs: Making sure the control is created before we get a 
8752           chance to use it with BeginInvoke (Fixes #79096)
8753
8754 2006-08-23  Chris Toshok  <toshok@ximian.com>
8755
8756         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
8757         width to use when painting the rows.
8758
8759 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
8760
8761         * TextBoxBase.cs:
8762           - Throw ArgumentException if a negative value is passed to SelectionLength
8763           - Update the selection end if start is moved. end needs to be always
8764             after start. (Fixes #79095)
8765           - Track selection length; MS keeps the selection length even if start
8766             is changed; reset on all other operations affection selection
8767
8768 2006-08-22  Jackson Harper  <jackson@ximian.com>
8769
8770         * TreeView.cs: Make sure both scrollbars get displayed and sized
8771         correctly when the other bar is visible.
8772         - Use the original clip rectangle for checking if the area between
8773         the two scrollbars is visible, not the viewport adjusted clipping
8774         rectangle.
8775
8776 2006-08-22  Jackson Harper  <jackson@ximian.com>
8777
8778         * Binding.cs: We don't use IsBinding because it requires the
8779         control to be created, which really shouldn't be necessary just to
8780         set a property on the control.
8781
8782 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8783
8784         * ComboBox.cs: Some CB.ObjectCollection methods must throw
8785         ArgumentNullReferenceException when the argument is null.
8786
8787 2006-08-21  Jackson Harper  <jackson@ximian.com>
8788
8789         * Timer.cs: Track the thread that the timer is started in (NOT
8790         CREATED), this way messages for it will only be triggered on its
8791         queue.
8792         * XEventQueue.cs: Track the timers here, this makes timers per
8793         thread, like MS.
8794         * XplatUIX11.cs: The timers are moved to the XEventQueue.
8795
8796 2006-08-19  Chris Toshok  <toshok@ximian.com>
8797
8798         * XplatUIX11.cs: after further communication with pdb, we get the
8799         best of both worlds.  SetZOrder working for un-Mapped windows, and
8800         no X errors for un-mapped windows.
8801
8802 2006-08-19  Chris Toshok  <toshok@ximian.com>
8803
8804         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
8805         as it was causing pdn toolbars to not have the correct stacking.
8806
8807 2006-08-18  Mike Kestner  <mkestner@novell.com> 
8808
8809         * ListView.cs : guard against negative ClientArea.Width in scrollbar
8810         calculation.  Not sure why control should ever be setting a negative
8811         width though.  Fixes #78931.
8812
8813 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8814
8815         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
8816         null items in ObjectCollection class.
8817         * ListBox.cs.: Likewise.
8818
8819 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
8820
8821         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
8822           as the base method in ThemeWin32Classic should work fine.
8823           Fixed bug #78607.
8824
8825 2006-08-18  Jackson Harper  <jackson@ximian.com>
8826
8827         * Binding.cs: When validating if the value entered doesn't convert
8828         properly reset to the old value.
8829         * RadioButton.cs: Don't fire click when we get focus.
8830
8831 2006-08-18  Jackson Harper  <jackson@ximian.com>
8832
8833         * FileDialog.cs: Paint the selection on the directory combobox the
8834         same way as on MS. 
8835
8836 2006-08-17  Jackson Harper  <jackson@ximian.com>
8837
8838         * ErrorProvider.cs: Don't allow the error control to be selected.
8839         * Control.cs: Don't send the SetFocus messages, the control
8840         activation will do this, and if we do it blindly here validation
8841         does not work.
8842
8843 2006-08-17  Jackson Harper  <jackson@ximian.com>
8844
8845         * Control.cs:
8846         * ContainerControl.cs: Make validation events fire in the correct
8847         order.  TODO: For some reason the first validation event is not
8848         getting fired.
8849
8850 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8851
8852         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
8853
8854 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8855
8856         * ComboBox.cs : implement scroll wheel support for popped-down
8857         state. Fixes #78945. 
8858
8859 2006-08-17  Jackson Harper  <jackson@ximian.com>
8860
8861         * TreeView.cs: Specify treeview actions (old patch that didn't get
8862         committed for some reason).
8863         - Don't let the mouse wheel scroll us too far.  Just want to make
8864         the bottom node visible, not scroll it all the ways to the top.
8865
8866 2006-08-17  Jackson Harper  <jackson@ximian.com>
8867
8868         * XplatUIX11.cs: Mouse wheel events go to the focused window.
8869
8870 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8871
8872         * ComboBox.cs : don't do mouseover selection in simple mode.
8873
8874 2006-08-16  Jackson Harper  <jackson@ximian.com>
8875
8876         * Form.cs: Fire the closing events for all the mdi child windows
8877         when a window is closed.  If the cancel args are set to true, the
8878         main window still gets the event fired, but it doesn't not close.
8879         * MdiWindowManager.cs: Do this closing cleanup in a Closed
8880         handler, instead of when the button is clicked, so cancelling the
8881         close works correctly.
8882         * ComboBox.cs: Send the mouse down to the scrollbar.
8883
8884 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8885
8886         * ListBox.cs: When passing 'null' to SelectedItem,
8887         set SelectedIndex to -1, to unselect items. This is the
8888         observed behaviour in .Net.
8889
8890 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
8891
8892         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
8893           MS flags saying there won't be any. (fixes #78800)
8894         * Control.cs (HandleClick): Made virtual
8895
8896 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
8897
8898         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
8899           cultures. Fixed bug #78399.
8900
8901 2006-08-16  Jackson Harper  <jackson@ximian.com>
8902
8903         * Form.cs: Use the MdiClients MdiChildren property to access
8904         MdiChildren instead of creating the array from the child controls.
8905         * MdiClient.cs: Maintain a separate array of the mdi children, so
8906         that insertion order is maintained when the Z-order is changed.
8907
8908 2006-08-16  Mike Kestner  <mkestner@novell.com> 
8909
8910         * ListView.cs : add an ItemComparer and default to it for sorting.
8911         Fixes #79076, but sorting needs a complete overhaul to be compat with
8912         MS.
8913
8914 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8915
8916         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
8917
8918 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8919
8920         * Hwnd.cs (Mapped): Properly traverse the tree
8921
8922 2006-08-15  Chris Toshok  <toshok@ximian.com>
8923
8924         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
8925         pass manager.Current.GetType() to ParseData.  It has to be the
8926         property type.  So, hold off doing the ParseData until we're in
8927         SetPropertyValue where we know the type.  This fixes the crash in
8928         #78821 but the textbox is still empty.
8929
8930 2006-08-15  Chris Toshok  <toshok@ximian.com>
8931
8932         * DataGrid.cs:
8933         - when we're scrolling, only call Edit() again if the
8934         current cell is still unobscured. Fixes bug #78927.
8935         - when handling mousedown on a cell, ensure the cell is visible
8936         before calling Edit.
8937         - remove the properties from DataGridRow, and remove the
8938         DataGridParentRow class altogether.
8939         
8940
8941 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8942
8943         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
8944           fire OnTextChanged by ourselves. There's no point calling base,
8945           we don't set the base value anywhere else. Fixes #78773.
8946
8947 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8948
8949         * ListBox.cs: Call CollectionChanged when modifying
8950         an item from Items indexer, to update the actual items
8951         in the list box.
8952
8953 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8954
8955         * PrintDialog.cs: Small fixes for focus and a pair of checks,
8956         to match .Net behaviour.
8957
8958 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8959
8960         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
8961
8962 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8963
8964         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
8965
8966 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8967
8968         * MessageBox.cs: Prevent potential NRE exception.
8969         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
8970
8971 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8972
8973         * MessageBox.cs: Calculate the owner of a messagebox, also make
8974           it topmost. Fixes #78753
8975
8976 2006-08-14  Chris Toshok  <toshok@ximian.com>
8977
8978         * XplatUIX11.cs: A couple of fixes so that metacity will let us
8979         programmatically move windows.  first, set the PPosition hint as
8980         well as the USPosition hint.  Second include some code from pdb
8981         that sets the window type to NORMAL when we set the transient for
8982         hint.  This is because, in the absence of a window type, metacity
8983         thinks any window with TransientFor set is a dialog, and refuses
8984         to let us move it programmatically.  fascists.
8985
8986 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8987
8988         * XplatUIX11.cs: When setting normal hints, take into consideration
8989           an different hints previously set so we don't delete them (fixes #78866)
8990
8991 2006-08-12  Chris Toshok  <toshok@ximian.com>
8992
8993         * ToolBarButton.cs: make Layout return a boolean, if something to
8994         do with the button's layout changed.
8995
8996         * ToolBar.cs:
8997         - add another parameter to Redraw, @force, which all existing
8998           calls set to true.
8999         - make the Layout function return a boolean which is true if the
9000           layout has actually changed.  Redraw now uses this (and @force)
9001           to determine when to invalidate.  At present the only place
9002           where @force can be false is the call from OnResize, when
9003           background_image == null.  So, resizing a toolbar when the
9004           layout doesn't change results in no drawing.
9005
9006 2006-08-12  Chris Toshok  <toshok@ximian.com>
9007
9008         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
9009         the VScrollBar and HScrollbar reversed.  oops.
9010
9011         * DataGrid.cs: fix the logic that assigns sizes to the implicit
9012         scrollbars.  we were assigning them twice (once in
9013         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
9014         therefore causing two scrollbar resizes (and redraws?) to happen
9015         per grid resize.
9016
9017 2006-08-12  Chris Toshok  <toshok@ximian.com>
9018
9019         * ToolBarButton.cs: redraw the entire button if the theme tells us
9020         to.
9021
9022         * Theme.cs: add ToolBarInvalidateEntireButton.
9023
9024         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
9025         buttons, just the border.
9026
9027         * ThemeNice.cs: redraw the entire toolbar button since we need to
9028         draw the highlight image.
9029
9030         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
9031         we need to redraw the entire button (not just the border).
9032
9033 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9034
9035         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
9036           for vertical bars. Fixes the mismatches shown by #78513
9037
9038 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
9039
9040         * FileDialog.cs: If a saved/remembered path doesn't exist
9041           anymore, fall back to "Desktop".
9042
9043 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
9044
9045         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
9046           parent. It's apparently legal to not have one
9047         * XplatUIX11.cs:
9048           - SetZOrder: Don't try to set Z-Order on an unmapped window
9049           - CreateWindow: 0,0 are legal coordinates for a window. don't move
9050             it unless the coordinates are negative
9051
9052 2006-08-10  Mike Kestner  <mkestner@novell.com>
9053
9054         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
9055         when setting to null per msdn docs.  Fixes #78854.
9056
9057 2006-08-10  Chris Toshok  <toshok@ximian.com>
9058
9059         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
9060         flickering by setting a clip rectangle on the Graphics when we
9061         need to redraw just a particular menuitem.  Also, rename "OnClick"
9062         to "OnMouseDown" to reflect what it actually is.
9063         
9064         * Form.cs: track the OnMouseDown change.
9065
9066 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
9067
9068         * CommonDialog.cs: Properly inherit the CreateParams from the form
9069           and only change what we need. Fixes #78865
9070
9071 2006-08-10  Chris Toshok  <toshok@ximian.com>
9072
9073         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
9074         flickering in flat mode (and most of the flickering in general) by
9075         only invalidating the button border (and not the entire rectangle)
9076         when the state changes.  A couple of cases still flicker:
9077         ToggleButtons, and the dropdown arrow case when the user mouse
9078         ups.
9079
9080 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
9081
9082         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
9083           for german keyboards. Numlock state shouldn't affect the behaviour
9084           of the Del key. Fixes bug #78291.
9085
9086 2006-08-10  Chris Toshok  <toshok@ximian.com>
9087
9088         * ListControl.cs: remove the items.Clear line from BindDataItems,
9089         as this is the first thing done by both subclasses in their
9090         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
9091         passed -1, refresh the list.  This gets databinding working when
9092         the datasource is set on the list before the datasource is
9093         populated (as in wf-apps/ReportBuilder.)
9094
9095         * ComboBox.cs: remove the argument to BindDataItems.  This call
9096         should really go away, and be initiated by the ListControl code.
9097
9098         * ListBox.cs: same.
9099
9100 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9101
9102         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
9103           if no data is in the document when the control is displayed
9104
9105 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
9106
9107         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
9108           yes (fixes #78806)
9109         * TextControl.cs: 
9110           - PositionCaret: Allow positioning of caret but don't call methods 
9111             requiring a handle if the window isn't created yet
9112           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
9113           - owner_HandleCreated: Don't position the caret, just update it's 
9114             location. User might have already set a different position
9115
9116 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
9117
9118         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
9119           windows. Screws up the returned coordinates for child windows. 
9120           Fixes #78825. I'm hoping this doesn't break something, since the
9121           code was explicitly put in 8 months ago, but no bug was attached.
9122           Menus still seem to work properly.
9123
9124 2006-08-08  Chris Toshok  <toshok@ximian.com>
9125
9126         * DataGrid.cs: make BeginInit/EndInit actually do what they're
9127         supposed to do - delay data binding until the EndInit call.  Also,
9128         make the table style collection's CollectionChangeAction.Refresh
9129         work properly.
9130
9131         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
9132         (with action = Refresh) when a consituent table's MappingName is
9133         changed.
9134
9135 2006-08-08  Chris Toshok  <toshok@ximian.com>
9136
9137         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
9138         Invalidate, since changing the text can change the size of the all
9139         toolbar buttons.
9140
9141 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9142
9143         * Form.cs (AddOwnedForm): Still need to add the form to our listif
9144           we don't have it yet
9145
9146 2006-08-08  Chris Toshok  <toshok@ximian.com>
9147
9148         * PrintControllerWithStatusDialog.cs: don't .Close() the status
9149         dialog, as this causes X errors later on, since we actually
9150         destroy the window.  Instead, .Hide() it.
9151
9152 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
9153
9154         * ComboBox.cs: Added focus reflection for popup window
9155         * XplatUIX11.cs: 
9156           - Removed transient setting for non-app windows for now, not sure it
9157             was needed
9158           - Fixed logic checking if we have captions when deciding 
9159             override_redirect, WS_CAPTION is two bits and a 0 check was not
9160             sufficient
9161           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
9162             complicated
9163         * Form.cs: 
9164           - AddOwnedForm: Don't just add the form to the list, call the property
9165             to ensure the driver is informed about the ownership as well
9166           - CreateHandle: Set the TopMost status in the driver if we have an owner
9167         * XplatUI.cs: Fixed debug statement
9168
9169 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
9170         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9171           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
9172           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
9173           TrackBarRenderer.cs: Make constructor private.
9174         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
9175         * ProfessionalColorTable.cs: Make properties virtual.
9176
9177 2006-08-06  Duncan Mak  <duncan@novell.com>
9178
9179         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
9180         is not changing.
9181
9182 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9183         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
9184           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
9185           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
9186           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
9187           Initial import of new 2.0 classes.
9188
9189 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9190         * Application.cs: Add 2.0 VisualStyles properties.
9191
9192 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
9193         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9194           XplatUIX11.cs: Create property to allow access to existing private
9195           variable "themes_enabled"
9196
9197 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9198
9199         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
9200         file size, as otherwise our class libraries fail using windows. Fixes
9201         bug #78759.
9202
9203 2006-08-04  Jackson Harper  <jackson@ximian.com>
9204
9205         * Form.cs:
9206         * XplatUIX11.cs: Move the toolwindow window manager creation into
9207         the X11 driver, this way on win32 we can let windows create/handle
9208         the toolwindows.
9209
9210 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9211
9212         * PrintDialog.cs: Remove some redundant checks, add some others,
9213         clean some code, and move the focus to the text boxes when the
9214         values are incorrect.
9215
9216 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
9217
9218         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
9219
9220 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9221
9222         * NumericUpDown.cs: Setting the Minimum and Maximum is now
9223           handled correctly. Fixes bug #79001.
9224
9225 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9226
9227         * PrintDialog.cs: The "Copies" numeric up down must have
9228         set the Minimum property to 1; only if the value is bigger
9229         than 1, activate "Collate" check box. This is the behaviour of .Net.
9230         Also modify the Document elements only if it is not null.
9231
9232 2006-08-03  Jackson Harper  <jackson@ximian.com>
9233
9234         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
9235         length. (We have a larger array then actual node count).
9236                 
9237 2006-08-03  Jackson Harper  <jackson@ximian.com>
9238
9239         * ComboBox.cs: Don't show selection by default.
9240         - The SelectAll isn't needed here, since the focus code should do
9241         that
9242         - DDL style lists to manual selection drawing, so when they
9243         get/lose focus they have to invalidate.
9244
9245 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
9246
9247         * TextBoxBase.cs: Don't always show all selections by default.
9248
9249 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
9250         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
9251           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
9252           Fixed various typos.
9253
9254 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
9255
9256         * Control.cs: Removing the controls in a ControlCollection with
9257           Clear now hides the controls as expected. Fixes bug #78804. 
9258
9259 2006-08-03  Jackson Harper  <jackson@ximian.com>
9260
9261         * Control.cs: Revert previous focus patch, it breaks reflector.
9262
9263 2006-08-03  Jackson Harper  <jackson@ximian.com>
9264
9265         * ComboBox.cs: Cleanup selection and focus with the combobox.
9266         This also eliminates some duplicated keyboard code, since now
9267         everything is handled by the main class.
9268         - Make list selection work on mouse up instead of down, to match
9269         MS.
9270
9271 2006-08-02  Jackson Harper  <jackson@ximian.com>
9272
9273         * Control.cs: Setting focus needs to go through the whole
9274         selection mechanism.
9275
9276 2006-08-02  Chris Toshok  <toshok@ximian.com>
9277
9278         * PrintPreviewDialog.cs: change MinimumSize to use
9279         base.MinimumSize so it works.
9280
9281 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
9282
9283         * TextControl.cs:
9284           - UpdateCaret: Added sanity check in case caret isn't defined yet
9285           - Line.Delete: Now updating selection and caret markers if we're
9286             transfering a node (Properly fixes #78323)
9287           - SetSelectionEnd: Added sanity check
9288         * TextBoxBase.cs: Removed broken attempt to fix #78323
9289
9290 2006-08-01  Chris Toshok  <toshok@ximian.com>
9291
9292         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
9293         Close() call is handled in Form, not here.
9294
9295 2006-08-01  Chris Toshok  <toshok@ximian.com>
9296
9297         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
9298         layout/rendering.
9299
9300         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
9301         for sizes < 100% zoom.  The code now aggressively attempts to keep
9302         from calling document.Print (), and tries not to use the scaling
9303         g.DrawImage whenever possible (it still does if you scale to >
9304         100%, since usually that involves huge images).
9305
9306         * PrintPreviewControl.cs: hook up the close button.
9307
9308 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
9309         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
9310           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
9311           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
9312           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
9313           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
9314           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
9315           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
9316           Removed [Serializable] for 2.0 Event Handlers.
9317
9318 2006-07-31  Jackson Harper  <jackson@ximian.com>
9319
9320         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
9321         * TextControl.cs: Uncomment out the body of this method.
9322
9323 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
9324
9325         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
9326           standard cursors.
9327
9328 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9329
9330         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
9331           that embed TextBox and need selections visible even if textbox is not
9332           focused to enforce that behaviour.
9333         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
9334           selection drawing
9335
9336 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9337
9338         * TextControl.cs:
9339           - Added new SetSelectionStart/SetSelectionEnd overloads
9340           - Fixed viewport width assignment to be accurate
9341           - Adjusted alignment line shift calculations to allow cursor on right
9342             aligned lines to be always visible at the right border (like MS)
9343         * TextBoxBase.cs:
9344           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
9345           - TextBoxBase_SizeChanged: recalculating canvas on size changes
9346           - CalculateScrollBars: Use ViewPort size instead of window size, to
9347             properly consider space occupied by the border and scrollbars 
9348             (Fixes #78661)
9349           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
9350             calculations; no longer leaves artifacts
9351           - CaretMoved: Adjusted window scrolling to match MS and fixed several
9352             calculation bugs (Still missing right/center align calculations)
9353
9354 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
9355
9356         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
9357           use of both scroll rect and clip rect, as they do the same.
9358
9359 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
9360
9361         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
9362           in the event handler (fixes #78912)
9363
9364 2006-07-31  Chris Toshok  <toshok@ximian.com>
9365
9366         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
9367         grid.ListManager.Count, since grid.ListManager might be null.
9368         This of course begs the question "why are we drawing rows for a
9369         grid with no list manager (and therefor no rows)?"  Fixes the
9370         crash in bug #78929.
9371
9372 2006-07-31  Chris Toshok  <toshok@ximian.com>
9373
9374         * RelatedPropertyManager.cs: Don't always chain up to the parent
9375         ctor.  instead, call SetDataSource if the parent's position is !=
9376         -1.  Fixes the crash in #78822.
9377
9378 2006-07-31  Chris Toshok  <toshok@ximian.com>
9379
9380         * DataGrid.cs (get_ListManager): use field instead of property
9381         accessors for datasource and datamember.
9382         (RowsCount): make internal again.
9383         (OnMouseDown): end edits before resizing columns/rows.
9384         (OnMouseUp): restart edits after resizing columns/rows.
9385
9386 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
9387
9388         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
9389           This fixes the situation where the last set cursor is displayed
9390           whenever the mouse is over scrollbars.
9391
9392 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9393
9394         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
9395         Document properties, as well as initial values.
9396
9397 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
9398
9399         * XplatUIWin32.cs (SetBorderStyle): Setting both border
9400           and ClientEdge results in a 3-pixel border, which is
9401           wrong.
9402
9403 2006-07-28  Jackson Harper  <jackson@ximian.com>
9404
9405         * TreeNodeCollection.cs: Fix the clear method.
9406         - Fix the Shrink also
9407
9408 2006-07-27  Jackson Harper  <jackson@ximian.com>
9409
9410         * TreeView.cs: Make sure the visible order is computed when we
9411         attempt to size the scrollbars (for trees that mess with the
9412         scrolling when they shouldn't.
9413         - Make sure to give the scrollbars valid values.
9414
9415 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
9416
9417         * XplatUIX11.cs: Move motion compression code to where it
9418           has less performance impact
9419
9420 2006-07-26  Jackson Harper  <jackson@ximian.com>
9421
9422         * UpDownBase.cs: When the control is selected make the child
9423         controls non selectable, so that a click on them won't do a
9424         focus/unfocus cycle.
9425         - Don't give focus to the text box when the spinner is selected.
9426         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
9427
9428 2006-07-26  Chris Toshok  <toshok@ximian.com>
9429
9430         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
9431         satisfied with this solution.  If the bitmaps are small, we should
9432         just cache them in the PrintPreviewDialog and draw them here.
9433         Also, the layout is broken for the 2-up and 3-up cases.
9434
9435         * Theme.cs: add PrintPReviewControlPaint.
9436
9437         * PrintPreviewDialog.cs: first pass implementation.
9438
9439         * PrintPreviewControl.cs: first pass implementation.  No
9440         scrollbars yet.
9441
9442         * PrintDialog.cs: only validate fields if that particular portion
9443         of the UI is enabled.  Also, set the document's controller to a
9444         PrintControllerWithStatusDialog wrapping the document's print
9445         controller.
9446
9447         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
9448         bring up a SaveFileDialog (i hope we don't want to match the
9449         behavior of the crappy windows file entry) and set the
9450         PrinterSettings.PrintFileName accordingly.
9451
9452 2006-07-26  Jackson Harper  <jackson@ximian.com>
9453
9454         * ContainerControl.cs: Add a field that disables auto selecting
9455         the next control in a container when the container is activated.
9456         * UpDownBase.cs: Don't select the text box when the up down is
9457         selected.
9458
9459 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
9460
9461         * XEventQueue.cs: Added methods for peeking (used for compression
9462           of successive events)
9463         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
9464           mouse move events (fixes #78732)
9465
9466 2006-07-25  Jackson Harper  <jackson@ximian.com>
9467
9468         * UpDownBase.cs: Use an internal class for the textbox so that we
9469         can control focus.  the updown control should always have focus,
9470         if either the text area or the buttons are clicked.
9471         - Send the key messages to the textbox, since it never actually
9472         has focus
9473         - Activate and decativate the textbox caret.
9474
9475 2006-07-24  Jackson Harper  <jackson@ximian.com>
9476
9477         * Control.cs: Use the directed select when selecting a control,
9478         this way the container controls override will get called and the
9479         whole ActiveControl chain will get triggered.  TODO: probably need
9480         to make sure this gets done everywhere instead of the old
9481         Select(Control).
9482         * ContainerControl.cs: Implement the directed Select method to
9483         find and activate the correct child control.    
9484         
9485 2006-07-22  Mike Kestner  <mkestner@novell.com>
9486
9487         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
9488         menu handling code so that clicks without a grab work too.
9489         [Fixes #78914]
9490
9491 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
9492
9493         * FileDialog.cs: Enable the BackButton when dirstack has one element.
9494           Added some small optimizations.
9495
9496 2006-07-21  Matt Hargett  <matt@use.net>
9497
9498         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
9499
9500 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
9501
9502         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
9503           tests pass and match MS in some strange border cases.
9504
9505 2006-07-21  Chris Toshok  <toshok@ximian.com>
9506
9507         * ThemeWin32Classic.cs: handle drawing of the relation links and
9508         parent row buttons.
9509
9510         * Theme.cs: change args to DataGridPaintParentRow.
9511
9512         * DataGrid.cs: Don't use controls for the relation links and
9513         parent buttons, so we have to handle all their interactions in
9514         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
9515         when we're navigating through child tables, so we can reinstate
9516         selection, expanded state, current cell, etc.
9517
9518 2006-07-20  Chris Toshok  <toshok@ximian.com>
9519
9520         * ToolBar.cs: When we redraw a button, for whatever reason,
9521         there's no reason to redraw the entire toolbar.  Also, don't call
9522         Control.Refresh from within Redraw, as it's much heavier than
9523         Invalidate (which is really what we want).
9524
9525 2006-07-20  Chris Toshok  <toshok@ximian.com>
9526
9527         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
9528         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
9529         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
9530         traces from within a debug IBindingList datasource
9531         (in mono/winforms/datagrid) for *days*, I've finally gotten things
9532         to work in a similar fashion.
9533
9534 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9535
9536         * ListBox.cs: Don't call Sort () when setting 
9537         the Sorted property to false (avoid an unnecessary sort).
9538
9539 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9540
9541         * ListControl.cs: DataSource should throw an ArgumentException
9542         instead of a normal exception when the argument is not of the 
9543         correct type.
9544
9545 2006-07-20  Mike Kestner  <mkestner@novell.com>
9546
9547         * Control.cs: add InternalPreProcessMessage to allow us to steal
9548         key events before MWF gets its paws on them.  Adapted from a
9549         suggestion by eno.
9550         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
9551         up/down/left/right navigation. Override the new internal control
9552         method to steal the events since they never make it to WndProc.
9553         * ToolBarButton.cs: don't worry about pushed when setting hilight
9554         since the drawing code prefers pushed to hilight. Invalidate on 
9555         Hilight changes. Fixes #78547 and #78525.
9556
9557 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
9558
9559         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
9560           the canvas size. Fixes #78868
9561
9562 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
9563
9564         * Splitter.cs: Track requested split position until first layout
9565           is performed. Fixes #78871
9566
9567 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
9568
9569         * Application.cs: Removed code that forces 1.x for the version
9570           number if the version started with 0. Not sure why that code was
9571           there and I couldn't find any bugs that indicated we needed it.
9572           Fixes #78869
9573
9574 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
9575
9576         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
9577           ResetDefaults(), just write some output to the console until it's
9578           implemented. Fixes bug #78907 for now. Eliminated two warnings.
9579
9580 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
9581
9582         * PropertyGridView.cs: set StartPosition of drop down forms
9583         so they appear in correct initial spot.  Fixes #78190.
9584
9585 2006-07-19  Mike Kestner  <mkestner@novell.com>
9586
9587         * ThemeWin32Classic.cs: use parent background color when drawing
9588         flat toolbars.  Restructure the conditionals to make sure non-flat
9589         non-Divider toolbars are filled too.  Fixes #78837.
9590
9591 2006-07-19  Mike Kestner  <mkestner@novell.com>
9592
9593         * ListBox.cs: Sort on collection changes even if the handle
9594         isn't created yet.  Fixes #78813.
9595
9596 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9597
9598         * ListControl.cs: DisplayMember should never be null,
9599         and now we assign String.Empty when null is passed to it (this
9600         is the .Net way).
9601
9602 2006-07-17  Mike Kestner  <mkestner@novell.com>
9603
9604         * ListViewItem.cs: restructure Font and subitem Font handling 
9605         to hold a specific font and refer back to owner on null.
9606         Fixes #78761.
9607
9608 2006-07-17  Mike Kestner  <mkestner@novell.com>
9609
9610         * ToolBar.cs: bandaid for side-effect of previous patch which was
9611         discarding explicit heights for non-AutoSize toolbars.  Need to
9612         extend my format tester to deal with AutoSize=false. Fixes #78864.
9613
9614 2006-07-15  Jackson Harper  <jackson@ximian.com>
9615
9616         * LabelEditTextBox.cs:
9617         * TreeView.cs: Use a new LabelEdit class for node editing, this
9618         class automatically 'closes' itself when it gets the enter key or
9619         loses focus.
9620         - Use the client rectangle when setting the trees scrollbars, so
9621         border style is taken into account.
9622         
9623 2006-07-14  Jackson Harper  <jackson@ximian.com>
9624
9625         * TreeNode.cs:
9626         * TreeView.cs: Make the editing work similar to MSs, firing the
9627         events correctly and ending edits correctly.
9628
9629 2006-07-14  Mike Kestner  <mkestner@novell.com>
9630
9631         * ToolBarButton.cs:
9632         * ToolBar.cs: layout restructuring and redraw enhancements to support
9633         formatting changes gracefully, like setting TextAlign, ImageList, 
9634         ButtonSize, and Appearance.  Handles explicit button sizing quirks
9635         of the MS controls.  Things like flat toolbars ignoring button size
9636         but becoming constant sized at the largest button's size.  Normal
9637         toolbars with an image set cannot be shrunk smaller than the image,
9638         but text can be clipped/ignored.
9639         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
9640         is zero.  Seems like DrawString should be smart enough to not put
9641         anything on screen though. Also trim labels and ellipsize at the char
9642         boundary, not word.
9643         Fixes #78711 and #78483.
9644
9645 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9646
9647         * FolderBrowserDialog.cs: Disable "New Folder" button and
9648           "New Folder" contextmenu menuitem if a folder like "My Computer"
9649           is selected.
9650
9651 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9652
9653         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
9654         * FolderBrowserDialog.cs:
9655           - Use MWFConfig to store and read size and position settings
9656           - Added code to create a new folder (button or context menu).
9657             Use TreeView labeledit to change the name of the new folder.
9658
9659 2006-07-14  Jackson Harper  <jackson@ximian.com>
9660
9661         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
9662         when the tree is scrolled we end editing.
9663
9664 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
9665
9666         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
9667           Down arrows
9668
9669 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
9670
9671         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
9672         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
9673         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
9674         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
9675         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
9676         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
9677         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
9678         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
9679         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
9680         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
9681         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
9682         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
9683         ListViewItemSelectionChangedEventHandler.cs,
9684         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
9685         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
9686         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
9687         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
9688         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
9689         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
9690         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
9691         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
9692         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
9693         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
9694         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
9695         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
9696         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
9697         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
9698         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
9699         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
9700         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
9701         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
9702         WebBrowserNavigatingEventHandler.cs, 
9703         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
9704
9705 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
9706
9707         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
9708         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
9709         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
9710         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
9711         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
9712         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
9713         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
9714         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
9715         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
9716         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
9717         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
9718         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
9719         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
9720         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
9721         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
9722         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
9723         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
9724         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
9725         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
9726         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
9727         ListViewItemStates.cs, MaskFormat.cs: Added
9728
9729 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
9730
9731         * PropertyGridView.cs: Fix keyboard navigation of drop down.
9732         Patch from eno for bug 78558.
9733         
9734 2006-07-13  Jackson Harper  <jackson@ximian.com>
9735
9736         * TreeView.cs: When an edit is finished make sure that the
9737         selected node is visible.
9738         - When setting the top/bottom use the scrollbars is_visible, so
9739         everything will be set correctly even if the tree isn't visible
9740         yet.
9741
9742 2006-07-13  Jackson Harper  <jackson@ximian.com>
9743
9744         * ComboBox.cs: Revert the item->index part of my previous patch.
9745         * TreeView.cs: Use LostFocus instead of Leave for detecting when
9746         the edit box has lost focus (duh).
9747         - Just make the edit box not visible when we get return, that will
9748         take the focus, which will call EndEdit
9749         * TreeNode.cs When we start editing, notify the treeview.
9750
9751 2006-07-12  Jackson Harper  <jackson@ximian.com>
9752
9753         * ComboBox.cs: Clear out old items before setting the item list.
9754         This prevents databound controls from having their items added
9755         twice.
9756         - Switch the combobox to use indices whereever possible instead of
9757         using Item's.  This allows usto navigate through lists that have
9758         more then one item with the same string value (ie a, b, b, a).
9759         - Scroll the listboxes scrollbar when a non visible item is
9760         highlighted
9761         - Allow keypress to cycle through all the possible values. For
9762         example if you have b1, b2, b3 and hold down the B key all the
9763         values will be cycled through.
9764         
9765 2006-07-12  Jackson Harper  <jackson@ximian.com>
9766
9767         * TextBoxBase.cs:
9768         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
9769         this using the internal methods.
9770         * Control.cs: Add OnGotFocusInternal.  A new method that allows
9771         controls to "override" OnGotFocus and change focus behavior if
9772         needed.
9773         - Same thing for LostFocus
9774         * ComboBox.cs: Pass off focus to the text control properly.
9775
9776 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
9777
9778         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
9779         * FolderBrowserDialog.cs: Almost a complete rewrite.
9780           - Better support for Environment.Specialfolders
9781           - Added support for MWFVFS
9782           - Made setting SelectedPath work
9783
9784 2006-07-12  Jackson Harper  <jackson@ximian.com>
9785
9786         * Control.cs: Optimze getting all the controls.
9787
9788 2006-07-11  Jackson Harper  <jackson@ximian.com>
9789
9790         * ContainerControl.cs: Override SETFOCUS in the container control,
9791         so that it is not selected on mouse click.
9792
9793 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
9794
9795         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
9796           Hopefully we will have a better way once all of focus is complete.
9797
9798 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
9799
9800         * ThemeWin32Classic.cs: Commented out some debug code and fixed
9801           a compile error with csc.
9802
9803 2006-07-11  Jackson Harper  <jackson@ximian.com>
9804
9805         * Control.cs: When hiding a control only select the next control
9806         if the current control was focused.
9807         - Don't handle enter/leave when setting/killing focus, this is
9808         done by the container control.
9809         - Remove is_selected, it's not needed anymore.
9810         - Add utility methods for selecting a child control, and for
9811         firing the Enter/Leave events.
9812         * ContainerControl.cs: When a control is activated fire the
9813         enter/leave events.
9814         - Don't wrap when processing the tab key, so that focus can be
9815         moved outside of the container.
9816         - Use the correct active control
9817
9818 2006-07-11  Jackson Harper  <jackson@ximian.com>
9819
9820         * ComboBox.cs: Remove some debug code that was blinding me.
9821         * UpDownBase.cs: These controls actually aren't implicit, they are
9822         visible to the user.
9823
9824 2006-07-10  Chris Toshok  <toshok@ximian.com>
9825
9826         * DataGrid.cs: move back to the is_adding boolean field.  god i
9827         hate this is_editing/is_adding/is_changing stuff.
9828
9829 2006-07-10  Chris Toshok  <toshok@ximian.com>
9830
9831         * DataGridTableStyle.cs: just check if the property type is bool.
9832         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
9833         Don't use CanRenderType.
9834
9835         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
9836         if our text == NullText.  Remove CanRenderType.
9837
9838         * DataGridBoolColumn.cs: nuke CanRenderType.
9839
9840         * DataGrid.cs: reenable some code to end the current edit inside
9841         of set_CurrentCell.  This fixes the other 1.1.16 regression.
9842         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
9843         Also, remove the visible_row_count arg from CalcRowHeaders, since
9844         we don't need to worry about the actual height of the area.
9845
9846 2006-07-10  Chris Toshok  <toshok@ximian.com>
9847
9848         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
9849         mode, just return.
9850
9851         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
9852         the real sense of the IsInEditOrNavigateMode property (true =
9853         navigate, false = edit).  Also, update OnKeyPress to reflect this.
9854
9855         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
9856         column style exists, we still need to set its property descriptor
9857         to match up with our list manager.
9858
9859 2006-07-10  Chris Toshok  <toshok@ximian.com>
9860
9861         * ThemeWin32Classic.cs: implement the new row/header painting
9862         approach.  The parent row painting will likely go away and
9863         replaced with label controls, but the rest seems to work ok (and
9864         efficiently).
9865
9866         * Theme.cs: change the way we draw datagrid rows.  we don't draw
9867         the row headers as a block now.  Instead we draw them in the
9868         normal draw-row loop.  Add some calls for drawing parent rows and
9869         relation rows.
9870
9871         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
9872         a default table style.  Set the defaults from ThemeEngine.Current,
9873         not SystemColors.  Fix lots of misc issues with property setters.
9874
9875         * DataGrid.cs: move loads of style information out of this class
9876         as it's being duplicated with DataGridTableStyle.  keep track of a
9877         special DataGridTableStyle for the properties we used to mirror
9878         here.  Switch all the style properties to access this table style
9879         instead of instance fields of this class.  Also add a internal
9880         class to represent parent rows (more needs to be stored here, like
9881         the selection state from the parent table, as well as the
9882         expansion state.)  Also, for datasources with relations, do the
9883         right thing for collapse/expand, and add support for the
9884         navigation/parent row buttons.
9885
9886         Lastly, fix the crash in the 1.1.16 build.
9887
9888         * GridTableStylesCollection.cs: make the explicit interface
9889         implementations call the class's methods as opposed to duplicating
9890         them.
9891
9892         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
9893         0 so the text doesn't jump around when we move the cursor.
9894
9895 2006-07-10  Jackson Harper  <jackson@ximian.com>
9896
9897         * TextBoxBase.cs:
9898         * ListBox.cs: Match MS's ToString (this makes debugging focus
9899         stuff infinitely easier).
9900
9901 2006-07-10  Jackson Harper  <jackson@ximian.com>
9902
9903         * Control.cs (SelectNextControl): When checking the control's
9904         parent use this instead of ctrl.parent so that null can be passed
9905         to SelectNextControl. (I have unit tests for this).
9906         - Remove unused var.
9907
9908 2006-07-10  Chris Toshok  <toshok@ximian.com>
9909
9910         * CurrencyManager.cs: correct one regression, the removal of the
9911         finalType field.  Also, add a MonoTODO on CanAddRows, implement
9912         Refresh() correctly, and fix some event emission in
9913         ListChangedHandler.
9914
9915 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9916
9917         * FileDialog.cs: Don't use brackets for new folders if they exist
9918           under *nix. Instead use -(number of existing folders +1).
9919
9920 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9921
9922         * FileDialog.cs:
9923           - Fixed really nasty bug #78771
9924           - Don't block the whole GUI when reading directories with a lot of
9925             entries. Use an other thread instead and call BeginInvoke to
9926             update the ListView in MWFFileView
9927
9928 2006-07-07  Chris Toshok  <toshok@ximian.com>
9929
9930         * Control.cs (Dispose): release any Capture when disposing.
9931
9932 2006-07-07  Chris Toshok  <toshok@ximian.com>
9933
9934         * LinkLabel.cs (Select): if we chain up to the parent, set
9935         focused_index to -1 so we'll search for the first available link
9936         the next time the user tabs into us.  Also, if the direction is
9937         backward and focused_index == -1, start the search from the last
9938         element.
9939
9940 2006-07-07  Chris Toshok  <toshok@ximian.com>
9941
9942         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
9943         is beyond the end of the text, don't do anything.
9944         (CreateLinkPieces): set our ControlStyles.Selectable based on
9945         whether or not we have any links.
9946         (Link.Invalidate): use a loop instead of foreach.
9947         (Link.set_Start): null out owner.sorted_links so it'll be
9948         recreated by CreateLinkPieces.
9949
9950 2006-07-06  Chris Toshok  <toshok@ximian.com>
9951
9952         * LinkLabel.cs: revert the SetStyle change.
9953
9954 2006-07-06  Chris Toshok  <toshok@ximian.com>
9955
9956         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
9957         (OnEnableChanged): s/Refresh/Invalidate
9958         (OnGotFocus): if we have a focused index already, refocus it (so
9959         if we mouse out/in to the window it'll focus the right link).
9960         (OnKeyDown): move the tab handling out of here.
9961         (OnLostFocus): don't set focused_index to -1, so we can refocus it
9962         when we lose focus.
9963         (OnMouseDown): don't Capture here - Control handles it.  Also,
9964         focus the active link.
9965         (OnMouseUp): don't deal with Capture.
9966         (OnPaintBackgroundInternal): remove.
9967         (OnTextAlignChanged): CreateLinkPieces before calling the
9968         superclass's method.
9969         (OnTextChanged): call CreateLinkPieces before calling superclass's
9970         method.
9971         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
9972         move around.
9973         (Select): implement this, moving the selection between different
9974         links, and call parent.SelectNextControl if we don't have another
9975         link to focus in the given direction.
9976         (CreateLinkPieces): call Invalidate instead of Refresh.
9977         
9978 2006-07-06  Chris Toshok  <toshok@ximian.com>
9979
9980         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
9981         new LinkLabel internals.
9982
9983         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
9984         over pieces looking for active/focused/etc links.  also, deal with
9985         runs of text (and links) with embedded \n's in them, and use
9986         MeasureCharacterRanges instead of MeasureString to figure out the
9987         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
9988         two-step.
9989
9990 2006-07-04  Jackson Harper  <jackson@ximian.com>
9991
9992         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
9993         XKB or key auto repeat, do it manually.  Without key auto repeat,
9994         when a key is held down we get key press, key release, key press,
9995         key release, ... with auto repeat we get key press, key press, key
9996         press ..., and then a release when the key is actually released.
9997
9998 2006-07-03  Jackson Harper  <jackson@ximian.com>
9999
10000         * TabControl.cs:
10001         * ThemeWin32Classic.cs: Tabs do not obey normal background color
10002         rules, they are always control color regardless of the background
10003         color.
10004
10005 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
10006
10007         * FileDialog.cs: Added internal class MWFConfig.
10008           Removed Registry support and replaced it with support for the new
10009           MWFConfig class. See MWFConfig comments for more information.
10010
10011 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
10012
10013         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
10014           rectangle. Added some patches from eno from bug #78490 and fixed
10015           the arrow position for small up and down CPDrawScrollButtons.
10016
10017 2006-06-30  Jackson Harper  <jackson@ximian.com>
10018
10019         * InternalWindowManager.cs: Remove some debug code.
10020         * Form.cs: When an MdiParent is set to null, the window is
10021         "detatched" and becomes a normal window.
10022         * MdiClient.cs: Don't bring the new child form to the front until
10023         it is activated (setting it as active does this), this makes the
10024         previously active forms titlebar get redrawn as inactive.
10025
10026 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
10027
10028         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
10029           with later controls
10030
10031 2006-06-29  Mike Kestner  <mkestner@novell.com>
10032
10033         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
10034         arrow in keynav state.  Fixes #78682.
10035
10036 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10037
10038         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
10039           order (fixes #78393)
10040
10041 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
10042
10043         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
10044           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
10045           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
10046           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
10047           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
10048           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
10049           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
10050           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
10051           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
10052           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
10053           enumerations (FlagsAttribute, SerializableAttribute, added/removed
10054           values)
10055
10056 2006-06-28  Mike Kestner  <mkestner@novell.com>
10057
10058         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
10059
10060 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
10061
10062         * PropertyGrid.cs,
10063           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
10064           item lines from other area (It also makes BackColor consistent and
10065           compatible with .NET). Fixed bug #78564.
10066
10067 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
10068
10069         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
10070         Patch from Eno for #78555.
10071
10072 2006-06-27  Chris Toshok  <toshok@ximian.com>
10073
10074         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
10075
10076         * DataGridColumnStyle.cs: same.
10077
10078         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
10079         
10080         * DataGridDrawingLogic.cs: nuke.
10081
10082 2006-06-27  Chris Toshok  <toshok@ximian.com>
10083
10084         * DataGridTableStyle.cs: clean up the constructors, and build the
10085         list of child relations for this table.  I have no idea if this is
10086         where we should be doing it (it probably isn't), but since we're
10087         already iterating over the properties..
10088
10089         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
10090         struct and array for keeping track of row information, similar to
10091         what's shown in a hack on
10092         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
10093
10094         * Theme.cs: be consistent about the naming of DataGrid methods,
10095         prefering ColumnWidths and RowHeights over columnsWidths and
10096         RowsHeights.
10097
10098         * ThemeWin32Classic.cs: same, and also add support for variable
10099         sized rows (and the +/- expansion icons for related rows).
10100
10101 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10102
10103         * TextBoxBase.cs: Applied Eno's patch from #78660
10104
10105 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10106
10107         * Form.cs (ScaleCore): We don't want to scale our form if it's
10108           state is minimized or maximized, but we still need to scale our
10109           child windows. Also, added try/finally block to ensure layout
10110           gets reset (Fixes #78697)
10111
10112 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
10113
10114         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
10115
10116 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
10117
10118         * Form.cs: Fixed c+p error and added check to resize form if minimum
10119           size is bigger than current size (Fixes #78709)
10120
10121 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
10122
10123         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
10124
10125 2006-06-26  Mike Kestner  <mkestner@novell.com>
10126
10127         * ComboBox.cs: only do Keypress handling in the combo when there  
10128         are items in the collection. Fixes #78710.
10129
10130 2006-06-26  Chris Toshok  <toshok@ximian.com>
10131
10132         * Binding.cs: make this work bi-directionally.  also, clear up
10133         other mixups between Push/Pull Data (e.g. we're supposed to pull
10134         data when validating).
10135
10136         * BindingManagerBase.cs: trim some fully qualified collection
10137         types.
10138
10139         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
10140
10141 2006-06-23  Chris Toshok  <toshok@ximian.com>
10142
10143         * PropertyManager.cs: It appears (according to the unit tests)
10144         that PropertyManager doesn't use
10145         PropertyDescriptor.AddValueChanged to track propery value changes
10146         in its datasource, but uses the same scheme as Binding, where it
10147         looks for a <Property>Changed event and binds to it.
10148
10149         Also, according to the docs, IsSuspended always returns false for
10150         a property manager with a non-null datasource.
10151
10152 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
10153
10154         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
10155           need to update the actual DialogResult. (Fixes #78613)
10156
10157 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
10158
10159         * Form.cs (ShowDialog): Release any captures before running the
10160           new message pump (fixes #78680)
10161
10162 2006-06-22  Mike Kestner  <mkestner@novell.com>
10163
10164         * ListView.cs: Layout column widths properly in details mode even 
10165         if HeaderStyle.None is set.  Fixes #78691.
10166
10167 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
10168
10169         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
10170
10171 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
10172
10173         * Control.cs (ContainsFocus): Using new driver method to get focused
10174           window, instead of trying to use internal tracking var, which can
10175           recursion issues (Fixes #78685)
10176         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10177           XplatUIWin32.cs: Added GetFocus method to return focused window
10178
10179 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10180
10181         * ColorDialog.cs: when the mouse button is pressed inside the color
10182         matrix, don't let the cursor move out of it until the button is
10183         released, which is the behavior on windows. Changed 'colours' by
10184         'colors' to use the same word consistently.
10185
10186 2006-06-21  Chris Toshok  <toshok@ximian.com>
10187
10188         * DataGrid.cs: add in some basic navigation stuff (navigating to a
10189         child relation and back, using a stack).  Also, remove
10190         GetDataSource and the code that calls it - it's not needed.  Also,
10191         track CurrencyManager.ListName's removal.
10192
10193 2006-06-21  Chris Toshok  <toshok@ximian.com>
10194
10195         * CurrencyManager.cs: push some of the original type checking from
10196         BindingContext.CreateBindingManager to here, and remove some of
10197         the finalType stuff.  Need more tests to make sure I've got the
10198         ListName part right, and we might need more in SetDataSource.
10199
10200         * PropertyManager.cs: add a ctor that takes just the datasource,
10201         and no property name.  Make SetDataSource work with a null
10202         property_name, and make Current return the data_source if the
10203         property descriptor is null.  this makes 'string foo = "hi";
10204         BindingContext[foo].Current' return "hi" as it should.
10205
10206         * RelatedCurrencyManager.cs: make this code more generic - there's
10207         no reason the parent manager has to be CurrencyManager, and
10208         there's no reason to pass the DataRelation.  It suffices to use a
10209         BindingManagerBase and PropetyDescriptor.
10210
10211         * RelatedPropertyManager.cs: make a similar change here.
10212         
10213         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
10214         flower I knew it could be.
10215
10216 2006-06-20  Chris Toshok  <toshok@ximian.com>
10217
10218         * PropertyManager.cs: the PropertyChangedHandler is invoked when
10219         data in the source has changed and we need to update the control,
10220         so s/PullData/PushData.
10221
10222         * CurrencyManager.cs: Refresh is meant to update the control from
10223         data in the datasource.  So, s/PullData/PushData.
10224
10225         * BindingContext.cs: add more ugliness (we weren't handling the
10226         case where data_source = DataTable and data_member = column_name).
10227
10228         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
10229         from the perspective of the datasource.  PullData pulls from the
10230         control, PushData pushes to the control.
10231
10232 2006-06-20  Chris Toshok  <toshok@ximian.com>
10233
10234         * BindingContext.cs: rewrite the CreateBindingManager code to
10235         handle navigation paths more or less properly.  This could
10236         definitely stand some more work, in particular to push the
10237         recursion up to the toplevel.  But that relies on fixes in other
10238         places (System.Data comes to mind).
10239
10240         Also, move to a flat hashtable (and encode the twolevel nature of
10241         the dictionary into the hash key).  This lets us implement the
10242         IEnumerable.GetEnumerator method.
10243
10244         * RelatedCurrencyManager.cs: new class.  Update our view based on
10245         our relation and our parent CurrencyManager's position.
10246
10247         * CurrencyManager.cs: split out some logic from the ctor into
10248         SetView, so it can be called from the new RelatedCurrencyManager
10249         subclass.
10250
10251         * RelatedPropertyManager.cs: new class.  Update our datasource
10252         based on the position of our parent CurrencyManager.
10253
10254         * PropertyManager.cs: split out some logic from the ctor into
10255         SetDataSource, so it can be called from the new RelatedDataSource
10256         subclass.  Also, make the Current getter return the value
10257         of the PropertyDescriptor, not the data_source.
10258
10259         * Binding.cs: no need to duplicate the string splitting code here.
10260
10261 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10262
10263         * Control.cs:
10264           - set_Enabled: OnEnabledChanged is not called if the inherited state 
10265             of the control is not altered, even though  we might be changing the
10266             internal state of the control (#78458)
10267           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
10268             OnEnabledChanged, to allow easy altering of any child window state
10269           - OnEnabledChanged: Added code to enable/disable driver window state
10270           - OnParentEnabledChanged: Instead of firing the event, call 
10271             OnEnabledChanged, which will fire the event and also a) set driver
10272             window state and pass the enabled state to any grandchildren (#78458)
10273
10274 2006-06-19  Jackson Harper  <jackson@ximian.com>
10275
10276         * InternalWindowManager.cs: We don't set the cursor explicitly
10277         thats done via the response to NCHITTESTs.
10278         - Don't need to adjust for titlebar heights anymore, the
10279         coordinates are coming in the correct coordinates now (see peters
10280         last patch).
10281
10282
10283 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
10284
10285         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
10286           being translated relative to whole window, instead of client window.
10287           That caused broken offsets on mouseclick (and caused gas for our
10288           InternalWindowManager)
10289
10290 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10291
10292         * TextControl.cs:
10293           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
10294           - Undo(): Added replay of cursor move on DeleteChars action; added
10295             calling Undo() again if a recorded cursor move is invalid (to
10296             ensure that some action is performed on Undo)
10297         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
10298
10299 2006-06-16  Jackson Harper  <jackson@ximian.com>
10300
10301         * MdiClient.cs: Instead of just sizing maximized windows when
10302         there is a resize we also have to adjust the Y of minimized
10303         windows, so they stay pinned to the bottom of the mdi container.
10304         - Eliminate separate tracking of the active control, we can just
10305         get this from the controls collection.
10306         - Paint the decorations for the newly activated titlebar so we get
10307         a pretty blue bar.
10308         * InternalWindowManager.cs:
10309         * ThemeWin32Classic.cs: Minimized windows get all three buttons
10310         even if they are a tool window.
10311         
10312 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
10313
10314         * TextControl.cs (Undo): Handle non-existent cursor locations in the
10315           undo buffer, these can happen when text was deleted and the cursor
10316           was recorded first. Since we will also have a recorded cursor
10317           after the delete this is not an issue. (Fixes #78651)
10318
10319 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
10320
10321         * AccessibleObject.cs: Remove dependence on Control.is_selected;
10322           instead properly track control states internally (allows us to
10323           remove is_selected from Control)
10324
10325 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10326
10327         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
10328         whose width is not a multiple of 8.
10329
10330 2006-06-13  Jackson Harper  <jackson@ximian.com>
10331
10332         * MdiClient.cs:  Only maximize the next child if the current one
10333         is maximized.
10334
10335 2006-06-13  Chris Toshok  <toshok@ximian.com>
10336
10337         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
10338         modified.  Also, guard against grid or grid_drawing being null in
10339         Invalidate.
10340
10341         * DataGrid.cs: Reformat tons of getters/setters.  In the
10342         DataMember setter, just call SetNewDataSource instead of
10343         duplicating some of its functionality.  In SetNewDataSource, don't
10344         check ListManager for null, since the property getter creates the
10345         object if needed.
10346
10347         * DataGridTableStyle.cs: don't set TableStyle or call
10348         SetDataGridInternal on the column here, it's done in
10349         GridColumnStylesCollection.Add.
10350
10351         * GridColumnStylesCollection.cs: fix all the explicit interface
10352         implementations to just call our methods.  Nuke AddInternal() and
10353         move the body of it to Add().  Also, add a call to
10354         column.SetDataGridInternal to Add().
10355
10356         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
10357         base()+duplicate code.  Also, use the Format property instead of
10358         format to generate an Invalidate ala MS.  Lastly, create the
10359         textbox here, unconditionally.
10360         (set_Format): call Invalidate.
10361         (get_TextBox): no need to call EnsureTextBox.
10362         (Commit): remove the message box.
10363         (Edit) remove the call to EnsureTextBox.
10364         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
10365         (EnterNullValue): no need to check textbox for null.
10366         (HideEditBox): no need to check textbox for null.
10367         (SetDataGridInColumn): add the textbox to the grid's controls.
10368         (EnsureTextBox): nuke.
10369         
10370 2006-06-13  Jackson Harper  <jackson@ximian.com>
10371
10372         * MdiWindowManager.cs: Hook up to the maximized menus paint event
10373         and redraw the buttons when needed. Unhook when the window is
10374         unmaximized.
10375         * MainMenu.cs: Add an internal Paint event, the mdi window manager
10376         needs this so that it can redraw its buttons when the menu is
10377         repainted.
10378         * InternalWindowManager.cs:
10379         * Form.cs: The method order has changed for DrawMaximizedButtons,
10380         so that it can be a PaintEventHandler.
10381         
10382 2006-06-13  Jackson Harper  <jackson@ximian.com>
10383
10384         * MdiClient.cs: When we close a maximized mdi window, the next mdi
10385         window is activated and maximized, even if it wasn't before.
10386         - When  a new window is activated repaint the decorations of the
10387         old one, so that it no longer has the Active "look" (the blue
10388         titlebar).
10389         * InternalWindowManager.cs: Open up CreateButtons to base classes
10390         so they can recreate the buttons on state changes.
10391         - If a window is maximized give it all three buttons
10392         * MdiWindowManager.cs: Create the titlebar buttons when the state
10393         is changed, this is needed because a toolwindow will not have all
10394         three buttons until it is maximized.
10395
10396 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
10397
10398         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
10399           Fixed bug #78609.
10400
10401 2006-06-12  Jackson Harper  <jackson@ximian.com>
10402
10403         * KeysConverter.cs: Make sure we handle the Ctrl special case
10404         if its the only key.
10405         
10406 2006-06-12  Jackson Harper  <jackson@ximian.com>
10407
10408         * Theme.cs: Add a method to get the size of a managed window
10409         toolbar button.
10410         * InternalWindowManager.cs: Remove the ButtonSize property, this
10411         should be retrieved from the theme.
10412         * MdiWindowManager.cs: Get the button size from the theme
10413         * ThemeWin32Classic.cs: Make the method to get the managed window
10414         titlebar button size public.
10415         - Handle the different button sizes of maximized toolwindows
10416         (should match any maximized window).
10417         - Get the titlebar height from the theme, not the WM (which gets
10418         it from the theme).
10419
10420 2006-06-12  Jackson Harper  <jackson@ximian.com>
10421
10422         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
10423         event down to the mdi window manager.
10424         - Expose some extra stuff to base classes
10425         - Make sure to end the Capture on an NC Mouse up, so that we can
10426         get double clicks properly, and the sizing doens't stick.
10427         - When doing PointToClient contain it in the workable desktop
10428         area, this prevents windows from changing size when the cursor is
10429         pulled outside of the working area while sizing.
10430         * MdiWindowManager.cs: When we get a double click maximize the
10431         window.
10432         - Reset the cursor after handling mode changes.
10433
10434 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
10435
10436         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
10437           current desktop, instead of just assuming a 0, 0 origin. This
10438           is needed for our internal window manager, to know the top
10439           margin of the desktop
10440
10441 2006-06-12  Chris Toshok  <toshok@ximian.com>
10442
10443         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
10444         we need this to get rid of the selected background in the bool
10445         column.
10446         (CancelEditing): move the ConcedeFocus call to above the Abort
10447         call.  Also, set is_changing to false and invalidate the row
10448         header if we were changing before.
10449         (ProcessKeyPreviewInternal): remove, since noone outside this
10450         class calls it anymore.  Roll the code into ProcessKeyPreview.
10451         (EndEdit): remove the internal version.
10452         (InvalidateCurrentRowHeader): make private.
10453
10454         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
10455         Keys.Escape handling (and with it the last call to
10456         DataGrid.EndEdit from outside the class.)
10457
10458
10459 2006-06-12  Chris Toshok  <toshok@ximian.com>
10460
10461         * DataGridTextBox.cs (.ctor): isedit defaults to false.
10462         (OnKeyPress): set isedit to true.
10463         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
10464         already handled by the grid.
10465
10466         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
10467         right.  ugh.
10468         (set_DataSource): SetDataSource always returns true, so stop
10469         putting it in an if statement.
10470         (EndEdit): get rid of some {}'s
10471         (ProcessGridKey): return true in case Keys.Escape.
10472         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
10473         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
10474         PositionChanged, stopped connecting to CurrentChanged.
10475         (GetDataSource): simplify this a bunch.
10476         (SetDataSource): change return type from bool to void.
10477         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
10478         to this, and make sure we don't set ListManager.Position inside
10479         set_CurrentCell.
10480         (OnListManagerItemChanged): if we're passed an actual index,
10481         redraw that row.
10482
10483         * CurrencyManager.cs (set_Position): don't call PullData here.
10484
10485 2006-06-09  Jackson Harper  <jackson@ximian.com>
10486
10487         * TreeNode.cs:  Recalculate the visible order before doing the
10488         Expand/Collapse Below calls, because those calls generate an
10489         expose.
10490         - Reduce calls to the TreeView property, which is mildly expensive
10491         by using a local var.
10492         * Form.cs: Layout the MDI child windows when creating the parent
10493         form.
10494         - Don't use the internal constructor anymore
10495         * MdiClient.cs: use the parent form width/height (if available)
10496         when laying out the child windows, we do this because the
10497         mdiclient isn't docked yet when the initial layout is done.
10498         - Don't need an internal constructor anymore.
10499
10500 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10501
10502         * FileDialog.cs: handle access errors when trying to create a folder
10503         or changing to a directory. No need to initialize out parameters.
10504
10505 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10506
10507         * FileDialog.cs: Append a number when creating a new folder if the
10508           folder already exists (use parenthesis instead of square brackets)
10509
10510 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10511
10512         * FileDialog.cs:
10513           - Disabled registry support for windows and added better registry
10514             error checking for other systems (need to investigate why it
10515             works perfectly on my system)
10516           - If a folder already exist show an error MessageBox instead of
10517             trying to create an indexed name.
10518           - Fixed a non intentional typo.
10519
10520 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10521
10522         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
10523
10524 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10525
10526         * FileDialog.cs: When creating a new folder don't crash if the
10527           folder already exists.
10528
10529 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10530
10531         * FileDialog.cs: Allmost a complete rewrite.
10532           - added a "virtual" file system that handles the differences
10533             between unix and windows file systems (especially the directory
10534             structure). Moved most of the directory and file handling code
10535             into the vfs.
10536             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
10537             UnixFileSystem and FSEntry.
10538           - Recently used folder/directory, size, location and used file names
10539             (file name ComboBox) are now stored in the registry and get read
10540             before the dialog shows up (fixes part 6 of bug #78446).
10541           - Creation of new folders/directories is now possible (context menu
10542             or ToolBar). Added TextEntryDialog for this that fills in the gap
10543             until ListView.LabelEdit works.
10544           - Fixed cursor handling (bug #78527) and focus handling for
10545             PopupButtonPanel
10546           - Various "Search in" ComboBox enhancements. The content of the
10547             dropdown listbox now almost matches ms.
10548           - Changed the behaviour when the user switches to SpecialFolder
10549             Recent to show the ListView in View.Details.
10550           - Beside using the ToolBar to change the View property of the
10551             file ListView it is now possible to use the context menu too.
10552
10553 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
10554
10555         * ComboBox.cs: Don't create a new ObjectCollection when an item
10556           gets inserted. Just insert the item in the existing object_items
10557           ArrayList.
10558
10559 2006-06-08  Jackson Harper  <jackson@ximian.com>
10560
10561         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
10562         that the treeview and root node checks are done also, this fixes a
10563         regression i caused in the unit tests.
10564
10565 2006-06-07  Wade Berrier <wberrier@novell.com> 
10566
10567         * RichTextBox.cs: More ISO8859-1 -> unicode
10568
10569 2006-06-07  Mike Kestner  <mkestner@novell.com>
10570
10571         * ComboBox.cs : use items to hold highlight/selection so that
10572         collection insertions don't require synchronization.
10573
10574 2006-06-07  Jackson Harper  <jackson@ximian.com>
10575
10576         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
10577         routine.  We now always keep the sized edge at the cursor instead
10578         of computing movement and adjusting rects.  There is one buglet
10579         with this method though when the cursor is moved over area that
10580         the window can not expand too (such as the toolbars on the desktop).
10581
10582 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10583
10584         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
10585         here. Fixes crash on startup in AlbumSurfer.
10586
10587 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
10588
10589         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
10590           values
10591
10592 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10593
10594         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
10595         statement to avoid calling XNextEvent which will block if another thread
10596         took the event that we were expecting. Fixes bug #78605.
10597
10598 2006-06-07  Mike Kestner  <mkestner@novell.com>
10599
10600         * ListView.cs : isolated checkbox clicking from the selection logic.
10601         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
10602
10603 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10604
10605         * Form.cs: Check that the value passed to Form.DialogResult
10606         is a valid enum value.
10607
10608 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10609
10610         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
10611         Computer'. Clicking it in the network view goes to 'My Computer'.
10612         Added CIFS filesystem type. Display the mount point of filesystems.
10613         Avoid duplicate mount points (happens for me with CIFS);
10614
10615 2006-06-06  Jackson Harper  <jackson@ximian.com>
10616
10617         * InternalWindowManager.cs: Draw the maximized windows buttons
10618         when resizing.
10619
10620 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10621
10622         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
10623         all other dialogs. Fixes bug #78585.
10624
10625 2006-06-06  Mike Kestner  <mkestner@novell.com>
10626
10627         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
10628         Only invalidate checkbox on checkstate changes to avoid flicker.
10629         * ListBox.cs : avoid unselect/select when clicking selected item.
10630         avoid reselection flicker for already multiselected items.
10631         Fixes #78382.
10632
10633 2006-06-06  Jackson Harper  <jackson@ximian.com>
10634
10635         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
10636         the parent form so that the menu is removed if needed.
10637
10638 2006-06-06  Mike Kestner  <mkestner@novell.com>
10639
10640         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
10641         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
10642
10643 2006-06-06  Mike Kestner  <mkestner@novell.com>
10644
10645         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
10646
10647
10648 2006-06-06  Jackson Harper  <jackson@ximian.com>
10649
10650         * Control.cs: Use the property (instead of the field) to get the
10651         default cursor so it is instantiated correctly.
10652         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
10653         resizes so we need to manually repaint the window decorations here.
10654         - Set the titlebar button locations as soon as they are created,
10655         otherwise they are not set correctly on win32.
10656         
10657 2006-06-06  Chris Toshok  <toshok@ximian.com>
10658
10659         * CurrencyManager.cs (set_Position): call PullData before
10660         OnCurrentChanged.
10661         (AddNew): after calling IBindingList.AddNew, update our
10662         listposition, and call OnCurrentChanged/OnPositionChanged (without
10663         calling PullData).
10664         (OnCurrentChanged): remove the call to PullData from here.
10665         (OnItemChanged): remove the call to PushData from here.
10666         (OnPositionChanged): change the test from == null to != null to
10667         match the other methods.
10668         (ListChangedHandler): the grossest part of the patch.  Implement
10669         this such that it passes the unit tests in CurrencyManagerTest and
10670         the output more or less matches that of MS's implementation.
10671  
10672 2006-06-06  Mike Kestner  <mkestner@novell.com>
10673
10674         * ListView.cs : only update check state on single click.
10675         * ThemeWin32Classic.cs : fix focus drawing for details view without
10676         fullrowselect.  Fixes #78454.
10677         * XplatUIX11.cs : fix for double click emission.
10678
10679 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
10680
10681         * PropertyGridView.cs : Applied Atsushi's patch to fix
10682         font dialog bug  (#78197).
10683
10684 2006-06-05  Jackson Harper  <jackson@ximian.com>
10685
10686         * TreeNode.cs: Compute the next node for expanding/collapsing
10687         correctly. We now factor in nodes without a NextNode
10688         correctly. (Fixes somes cases in nunit-gui).
10689         * InternalWindowManager.cs: Set the bounds when updating the
10690         virtual position of a tool window.
10691         
10692 2006-06-05  Chris Toshok  <toshok@ximian.com>
10693
10694         * DataGrid.cs: rename cached_currencymgr to list_manager.
10695         (set_CurrentCell): move SetCurrentCell code here, and clean it up
10696         some.
10697         (CurrentRow, CurrentColumn): single accessors so we can make the
10698         cursor movement code a lot easier to understand.
10699         (CurrentRowIndex): implement this in terms of CurrentRow.
10700         (BeginEdit): clean this up a bit.
10701         (CancelEditing): sort out the is_editing/is_changing/is_adding
10702         stuff a little.
10703         (EndEdit): minor changes.
10704         (OnKeyDown): add a comment about a (most likely) unnecessary
10705         check.
10706         (OnMouseDown): cancel editing when we click on a row header.  And
10707         use the CurrentRow setter, not CurrentCell.
10708         (ProcessDialogKey): directly call ProcessGridKey.
10709         (UpdateSelectionAfterCursorMove): factor out this common block of
10710         code (it's used everywhere that we move the cursor by updating row
10711         or column).
10712         (ProcessGridKey): pretty substantial overhaul.  Use the
10713         CurrentRow/CurrentColumn properties to make the code a lot more
10714         readable.  Only use the CurrentCell property when we have to
10715         modify both row and column at once.  Tab behavior is still broken,
10716         and Delete is untested.
10717         (Select): if we have no selected rows, set selection_start to
10718         @row.
10719         (EditCurrentCell): rename EditCell this.  It was only ever invoked
10720         with CurrentCell as the arg, so drop the arg and rename it.
10721
10722         * DataGridColumnStyle.cs: clean up the constructors a little, and
10723         drop CommonConstructor().
10724
10725         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
10726         actually get notified when the user hits it.
10727         (ProcessKeyMessage): *substantially* simplify this method.
10728         There's no reason (that I can see) for the textbox to be making
10729         calls into the datagrid at all.  Remove all of them but the ones
10730         for Enter handling.  those will take some more work.
10731
10732         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
10733         calling HideEditBox.
10734         (HideEditBox): if we have an active textbox, render it invisible
10735         without causing a re-layout of the datagrid.
10736
10737 2006-06-05  Mike Kestner  <mkestner@novell.com>
10738
10739         * ListView.cs : fix NRE crasher when focuseditem is cleared by
10740         collection changes by resetting it to Items[0].  Fixes #78587.
10741
10742 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10743
10744         * MessageBox.cs: if the height of the text is larger than the icon_size,
10745         use that. Fixes bug #78575.
10746
10747 2006-06-05  Jackson Harper  <jackson@ximian.com>
10748
10749         * TreeView.cs: Fix line drawing when scrolling.  To do this each
10750         node is basically responsible for drawing its entire horizontal
10751         area.  When drawing a node it draws its parent node lines if
10752         needed.
10753         - Adjust the clip area to the viewport rectangle
10754         - Fix Left/Right key handling to match MS. (It expand/collapses
10755         and moves to parents/first child but does not move selection to
10756         sibling nodes).
10757         - Fix SetTop to work with new bound calculation code
10758         - When scrollbars are no longer needed we need to reset scrolling
10759         vars and recalculate the visible order so the redraw is correct
10760         * TreeNode.cs: We can't expand/collapse nodes with no children.
10761
10762 2006-06-03  John Luke  <john.luke@gmail.com> 
10763
10764         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
10765         so the colors work without dev packages
10766         
10767 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
10768
10769         * Control.cs 
10770           - Select: Implemented to just use activate. Seems to match MS 
10771             behaviour closest. Documented to only do actual control walking 
10772             based on it's parameters if in a container control so I moved 
10773             the code there.
10774           - Removed selection check logic from our internal Select() method
10775         * ContainerControl.cs:
10776           - Select: Moved selection logic from Control here, since MS documents
10777             that containers obey the bool arguments. No longer calling base
10778
10779 2006-06-02  Jackson Harper  <jackson@ximian.com>
10780
10781         * TreeView.cs: If the selected node isn't changed when we get
10782         focus update the previously selected node so that we see the
10783         selection box.
10784
10785 2006-06-02  Mike Kestner  <mkestner@novell.com>
10786
10787         * ComboBox.cs: restructure grab and general mouse event handling.
10788         Make the composite control raise mouse events like it was a single
10789         control for leaves/enters/motion/up/down events.  fix dropdown list
10790         coordinate mangling and refactor it into the scrollbar subclass to
10791         reduce code duplication.  Fixes #78282 #78361 and #78457.
10792
10793 2006-06-02  Mike Kestner  <mkestner@novell.com>
10794
10795         * ScrollBar.cs: remove Capture setting/clearing, as it happens
10796         automatically in the Control.WndProc.
10797
10798 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10799
10800         * FileDialog.cs: fix crash when running SharpChess, which sets the
10801         FilterIndex to 2 with only one Filter.
10802
10803 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10804
10805         * ToolBar.cs: add SizeSpecified property.
10806         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
10807         try to figure out our real size, otherwise fallback to what the
10808         container says.
10809
10810 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
10811
10812         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
10813         * Control.cs (WndProc): MS always calls the DefWndProc to pass
10814           up the event
10815
10816 2006-06-01  Mike Kestner  <mkestner@novell.com>
10817
10818         * ListView.cs: revamp the focus management in ListView.  It still
10819         causes churn of LostFocus/GotFocus emissions on clicks, but it's
10820         better than not handling focus at all.  Will revisit when pdb feels
10821         the general focus handling is solid.  Fixes #78526.
10822
10823 2006-06-01  Jackson Harper  <jackson@ximian.com>
10824
10825         * TreeView.cs: Set the default border style in the constructor.
10826         - Move painting to use OnPaintInternal instead of capturing
10827         WM_PAINT, this is the correct way of doing things
10828         - UpdateBelow shouldn't invalidate the scrollbar area
10829         - Cap the top on update below in case the node was above the top
10830         of the viewport rectangle.
10831         - ExpandBelow and Collapse below need to obey Begin/End Update.
10832         * TreeNode.cs: Make is_expanded internal so the treenode
10833         collection can change it without firing the whole event chain.
10834         * TreeNodeCollection.cs: When clearing all the child nodes make
10835         sure to recalc the visible order.
10836         - Improve algo for remove the top node
10837
10838 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
10839
10840         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
10841           SendMessage directly calling window procedures, which in turn might
10842           call SetFocus()
10843
10844 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
10845
10846         * Control.cs: Don't handle WM_SETFOCUS if the same window already
10847           has focus (works around X11 sending a FocusIn after our SetFocus)
10848         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
10849
10850 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
10851
10852         * Mime.cs: Fix for the NET_2_0 build.
10853           NameValueCollection needs StringComparer now.
10854
10855 2006-05-31  Chris Toshok  <toshok@ximian.com>
10856
10857         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
10858         return (via an out parameter) the starting X of the column.
10859         (UpdateVisibleColumn): track change to FromPixelToColumn.
10860         (HitTest): add a ColumnResize case here.
10861         (DrawResizeLine): new function, probably poorly named.
10862
10863         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
10864         only need to keep one reference.
10865         (set_ListManager): same.
10866         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
10867         Also, add support for HitTestType.ColumnResize.
10868         (OnMouseMove): add column resize behavior here, and change the
10869         cursor to the correct one as we move around the datagrid.
10870         (OnMouseUp): terminate the column resize if we're resizing.
10871         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
10872         for the current cell.
10873         (ConnectListManagerEvents): use cached_currencymgr.
10874         (DisconnectListManagerEvents): fill this in, using
10875         cached_currencymgr.
10876         (SetCurrentCell): remove cached_currencymgr_events handling.
10877         (SetDataMember): only call DisconnectListManagerEvents if
10878         cached_currencymgr is != null.
10879         (SetDataSource): same.
10880         (OnListManagerCurrentChanged): cached_currencymgr_events ->
10881         cached_currencymgr.
10882
10883 2006-05-31  Jackson Harper  <jackson@ximian.com>
10884
10885         * BindingManagerBase.cs: Remove somedebug code that creeped into
10886         SVN.
10887         * TreeNode.cs: We get the indent level dynamically right now, so
10888         don't track it as a member.
10889         * TreeNodeCollection.cs: Make sure all nodes added to the list
10890         have parents, treeviews/topnodes setup properly.
10891         - Don't attempt to track indent level.
10892
10893 2006-05-30  Jackson Harper  <jackson@ximian.com>
10894
10895         * BindingContext.cs: Create the currency manager tables here.
10896         This allows us to more easily create null tables (when bad data
10897         members are used), and more easily create related currency
10898         managers.
10899         * CurrencyManager.cs: All the table creation stuff is done by the
10900         binding context now.
10901         - Current should throw an exception if listposition is -1.
10902         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
10903         been bound yet.
10904
10905 2006-05-30  Mike Kestner  <mkestner@novell.com>
10906
10907         * ListView.cs: allow reexpansion of zero-width column headers.
10908         Fixes #78528.
10909
10910 2006-05-28  Chris Toshok  <toshok@ximian.com>
10911
10912         * CurrencyManager.cs (get_Current): after the late binding
10913         listposition = -1 fix, we need to guard against it here and return
10914         null, otherwise we raise an exception (which is swallowed
10915         elsewhere, and breaks datagrid databinding.)
10916
10917 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10918
10919         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
10920           than WM_SYSKEY, don't throw if get something unexpected (#78507)
10921
10922 2006-05-26  Jackson Harper  <jackson@ximian.com>
10923
10924         * ControlPaint.cs:
10925         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
10926         values, it's faster and it's all we care about (we don't care if
10927         the names aren't equal).
10928         * KeyboardLayouts.cs: Eliminate some dead code.
10929         - Lazy init things
10930         * X11Keyboard.cs: Lazy init keyboard detection.
10931         - Cleanup access modifiers a little.
10932
10933 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10934
10935         * XplatUIX11.cs: Once again, attempting to get layout just right.
10936
10937 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
10938
10939         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
10940           the sizes of each link section, that will result in sizes that
10941           match DrawString's layout (Fixes #78391)
10942
10943 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
10944
10945         * FileDialog.cs: If AddExtension property is true autocomplete the
10946           extensions in SaveFileDialog correctly. Fixes bug #78453.
10947           Set MyNetwork and MyComputer to "C:\" for windows. This should
10948           fix part 8 of bug #78446 for now.
10949
10950 2006-05-26  Chris Toshok  <toshok@ximian.com>
10951
10952         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
10953         invalidate the current row header if we need to, but presumably
10954         we'll invalidate the row corrsponding to the bounds or
10955         editingControl.
10956         (GridHScrolled): switch back to this method, as it's part of the
10957         public api.  *sigh*.
10958         (GridVScrolled): same.
10959         (OnMouseWheel): hack up something that more or less works.  Call
10960         GridHScrolled/GridVScrolled directly, instead of duplicating much
10961         of their code here.
10962         (EnsureCellVisibility): reinstate a bunch of this code, since we
10963         can't just set the scrollbar Value and expect to do all the work
10964         in the ValueChanged handler.  Also, Call Update() after scrolling
10965         in one direction so the other XplatX11.ScrollWindow call has the
10966         proper stuff in the proper places.
10967         (EditCell): set is_editing to true before calling .Edit.
10968
10969         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
10970         don't bother comparing first.
10971         (OnKeyPress): call grid.ColumnStartedEditing before calling
10972         base.OnKeyPress.  this will set is_changing and invalidate the row
10973         header if necessary.
10974         (ProcessKeyMessage): for WM_CHAR messages, call
10975         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
10976         and WM_KEYDOWN.
10977         
10978         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
10979         it's done in the DataGrid.
10980         (NextState): call grid.ColumnStartedEditing, which takes care of
10981         invalidating the row header (and setting is_changing).
10982
10983         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
10984         here.  it's done in the DataGrid.
10985
10986 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10987
10988         * Control.cs: allow changing the cursor when the mouse position is
10989         out of bounds but Capture is set.
10990         * LinkLabel.cs: handle the case when the mouse button is pressed on the
10991         linklabel but released somewhere else.
10992
10993 2006-05-25  Jackson Harper  <jackson@ximian.com>
10994
10995         * TreeView.cs: When we get focus if there is no selected node make
10996         it the top node
10997         - Remove some uneeded setup code from Draw.
10998         * TreeNodeCollection.cs: If the tree doesn't have a top node when
10999         a new node is inserted make the new node the top.
11000         * XplatUIX11.cs:
11001         * Timer.cs: Use Utc time so that no local time zone stuff needs to
11002         be used (should be faster).
11003         
11004 2006-05-25  Chris Toshok  <toshok@ximian.com>
11005
11006         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
11007         problem with the last commit.
11008
11009 2006-05-25  Chris Toshok  <toshok@ximian.com>
11010
11011         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
11012         need the invalidate call here, while scrolling right-to-left via
11013         the left arrow key (i.e. moving the editing cell while scrolling).
11014
11015         * DataGrid.cs (.ctor): remove the initialization of
11016         ctrl_pressed/shift_pressed.  We no longer track them using key
11017         up/down handlers, but by using Control.ModifierKeys.  Also, switch
11018         to using ValueChanged handlers on the scrollbars instead of
11019         Scrolled event handlers.  This simplifies a bunch of the scrolling
11020         code.
11021         (GridHValueChanged): rename from GridHScrolled, and change it to
11022         work with the new event args.
11023         (GridVValueChanged): same.
11024         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
11025         (OnMouseWheel): actually scroll the datagrid.  Don't change the
11026         selected cell.
11027         (ProcessGridKey): correct all the keyboard navigation stuff I
11028         could find.  Ctrl up/down/left/right/home/end work now.
11029         (EnsureCellVisibility): correct method name spelling.  Also,
11030         simplify this a touch by not explicitly calling the
11031         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
11032         scrollbar value.
11033         (OnKeyUpDG): no need for this method now.
11034         
11035 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11036
11037         * LinkLabel.cs: display the OverrideCursor when hovering the label.
11038         Fixes bug #78392.
11039
11040 2006-05-25  Chris Toshok  <toshok@ximian.com>
11041
11042         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
11043         r61019.
11044
11045 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11046
11047         * Application.cs: Moved setting of is_modal and closing to before
11048           we create the control, to allow the event handlers called as a
11049           result of creation affect closing. Also removed Gonzalo's previous
11050           change to setting DialogResult, the behaviour has been moved to 
11051           Form.ShowDialog()
11052         * Form.cs: 
11053           - ShowDialog(): Removed explicit creation of the form, let RunLoop
11054             handle it instead
11055           - ShowDialog(): If no dialog result is set, we need to return Cancel
11056           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
11057             the close is cancelled
11058
11059 2006-05-25  Jackson Harper  <jackson@ximian.com>
11060
11061         * StatusBar.cs: We only need to update the sizes of the other
11062         panels when we have auto size contents.  Also we are only updating
11063         the contents of the panel, not the borders, so compensate for the
11064         border width (TODO: get this width from the theme somehow).
11065         * TreeView.cs: Scrollable is true by default
11066         - Use invalidate instead of refresh where needed
11067         - Factor the scrollable value into scrollbar updating
11068         - Update the scrollbars if the Scrollable property is altered
11069         - Update the selected node if its ImageIndex is changed
11070         - Handle null nodes in UpdateNode (mainly so we don't have to
11071         check if selected is null when updating it
11072         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
11073         are factored into the visible count
11074         - Use VisibleCount for clarity in the code
11075         - When the font is changed we need to recurse through all the
11076         nodes and invalidate their sizes
11077         
11078 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11079
11080         * Application.cs: set the DialogResult to fixed when the main form is
11081         hidden or destroyed while being modal.
11082
11083 2006-05-25  Miguel de Icaza  <miguel@novell.com>
11084
11085         * Theme.cs: Use Tangoified messagebox icons. 
11086
11087         (GetSizedResourceImage): Also cope with width = 0 and do not
11088         trigger a warning in that case (0 means "give me your icon from
11089         the resouce, no special size needed).
11090
11091 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
11092
11093         * Application.cs: Leave runloop if the the main modal form is 
11094           hidden (fixes #78484)
11095
11096 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11097
11098         * BindingContext.cs : reject null datasource in Contains() and
11099           Item[].
11100         * CurrencyManager.cs : check data_member validity when data_source
11101           is dataset. When it is late binding, the initial position is -1.
11102
11103 2006-05-24  Jackson Harper  <jackson@ximian.com>
11104
11105         * TreeNodeCollection.cs: Dont't recalculate the visible order on
11106         inserted nodes that aren't visible.  This changes the
11107         max_visible_order which confuses scrollbar settings.
11108         - Use the enumerator to get the prev node instead of duplicating
11109         code.
11110         * TreeView.cs: Use new method for setting scrollbar values
11111         - Don't set the bounds every time the scrollbar is updated
11112         - When updating below the root node use an invalidate instead of a
11113         refresh to prevent the child controls (scrollbars) from being
11114         refreshed. (UpdateBelow still needs to be reworked anyways).
11115         - Reenable SetBottom now that visible orders are set correctly,
11116         added some debug code incase we ever get bad values there again.
11117         - Set the scrollbar max to 2 less then the max value, this
11118         compensates for the max value being one above the node count, and
11119         for scrollbars adding one extra "notch".
11120         - When drawing image nodes if there is an imagelist we draw the
11121         first image in the list if the supplied image index is out of the
11122         image list's bounds.
11123         
11124 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11125
11126         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
11127           we receive a size change from the WM (Fixes #78503)
11128
11129 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
11130
11131         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
11132           rectangle (Fixes #78501)
11133
11134 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
11135
11136         * ButtonBase.cs: 
11137           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
11138             as a bitfield.
11139           - Fixed MouseMove to no longer switch pressed state unless the left
11140             mouse button is pressed. Atsushi provided the original patch (#78485)
11141           
11142 2006-05-24  Jackson Harper  <jackson@ximian.com>
11143
11144         * ScrollBar.cs: New internal methods that allow us to change a
11145         couple values on the scrollbar (the most common case is maximum
11146         and large change) without getting multiple invalidates.
11147
11148 2006-05-24  Chris Toshok  <toshok@ximian.com>
11149
11150         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
11151         (Edit): save off the original state in oldState, and set
11152         grid.is_editing to true.
11153         (OnKeyDown): abort editing if escape is pressed.  also, call
11154         NextState if space is pressed.
11155         (OnMouseDown): call NextState.
11156         (NextState): factor out shared code from OnKeyDown and OnMouseDown
11157         here.  Also, only invalidate the row header once (on the initial
11158         is_changing switch) to save on redraws.
11159
11160 2006-05-24  Chris Toshok  <toshok@ximian.com>
11161
11162         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
11163         if the value in the cell is different than it was before.  This
11164         keeps us from triggering a layout when we move around a datarid
11165         with a highlighted cell.
11166         (Edit): suspend layout when creating/positining the text box, and
11167         resume passing false so we don't ever actually re-layout.
11168         (ReleaseHostedControl): same.
11169         (EnsureTextBox): reformat slightly, and set WordWrap to false.
11170
11171         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
11172         control-key sequences should go to the datagrid - remove that
11173         lock.  Also, modify the conditions under which we move between
11174         cells when moving the cursor within a cell, and remove the "this"
11175         and "base" from field accesses.  We weren't even consistent, given
11176         they all were in the base class.
11177
11178 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
11179
11180         * Binding.cs : (.ctor)
11181           An obvious NRE fix for BindingTest.CtorNullTest().
11182
11183 2006-05-23  Chris Toshok  <toshok@ximian.com>
11184
11185         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
11186         them between lines.  This fixes some quirks editing cells in the
11187         datagrid.
11188
11189 2006-05-23  Jackson Harper  <jackson@ximian.com>
11190
11191         * TreeView.cs: Use begin/end update when doing expand/collapse all
11192         so that we don't get flicker on the scrollbar.
11193
11194 2006-05-23  Jackson Harper  <jackson@ximian.com>
11195
11196         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
11197         treenode calculations to be independant of the painting code. To
11198         do this nodes track a visible order which is calculated by the
11199         treeview.
11200         - Call new methods for expanding/collapsing nodes.  These methods
11201         use scrollwindow so we don't have to update everything below the
11202         node.
11203         * TreeView.cs: Refactored drawing and scrolling code.  We don't
11204         need to update nodes when drawing anymore or calculate scrollbar
11205         stuff.
11206         - Added new methods for expanding/collapsing nodes. These methods
11207         use ScrollWindow so as to not have to redraw all the nodes below.
11208         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
11209         we add/remove nodes or sort.
11210         - Handle removing the selected and the top node properly.
11211
11212 2006-05-23  Chris Toshok  <toshok@ximian.com>
11213
11214         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
11215         maybe this should actually happen in the datagrid code?
11216         (EndEdit): no need to invalidate anything, given that
11217         ReleaseHostedControl causes the datagrid to relayout, which
11218         invalidates everything anyway.
11219
11220         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
11221         in SetCurrentCell).
11222         (set_SelectionBackColor): call InvalidateSelection instead of
11223         Refresh.
11224         (set_SelectionForeColor): same.
11225         (BeginEdit): Flesh this out a bit.
11226         (CancelEditing): only do any of this if we're editing/adding.
11227         (EndEdit): same.
11228         (OnMouseDown): there's no need to cancel editing here, it's done
11229         in SetCurrentCell.
11230         (SetCurrentCell): only invalidate the current row header if it's a
11231         different row than the new one.
11232         (ShiftSelection): fix this to work like MS does.
11233         (ResetSelection): factor out the invalidation of selected_rows to
11234         InvalidateSelection.
11235         (SetDataSource): cancel any editing that's going on.
11236
11237         * DataGridColumnStyle.cs
11238         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
11239         call the non-interface version.
11240
11241         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
11242         header rectangle with the clip rectangle so we don't redraw the
11243         entire header for just a small area.  Gets rid of the last flicker
11244         when horizontally scrolling.
11245         (DataGridPaintRow): same.
11246
11247 2006-05-23  Mike Kestner  <mkestner@novell.com>
11248
11249         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
11250         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
11251         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
11252         Critical bug report.
11253
11254 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11255
11256         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
11257           and this fixes #78493
11258
11259 2006-05-23  Miguel de Icaza  <miguel@novell.com>
11260
11261         * Theme.cs (GetSizedResourceImage): Scale images if the proper
11262         size is not found.  
11263         
11264         * FileDialog.cs: Do not change the background for the side bar as
11265         it wont work nicely with the theme, and also reduces the artifacts
11266         in rendering the icons (which I want to fix too).
11267
11268         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
11269         resources, not resgen resources. 
11270
11271         (PlatformDefaultHandler): Pull images using the new API.
11272
11273 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
11274
11275         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
11276           a reference to the hwnd and will not remove it unless there are
11277           no pending exposures (fixes #78341)
11278         * XplatUI.cs: Improved debug
11279
11280 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
11281
11282         * MenuAPI.cs : don't handle OnClick event when it was not the left
11283           button. Fixed bug #78487.
11284
11285 2006-05-23  Mike Kestner  <mkestner@novell.com>
11286
11287         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
11288         prefer submenus to the top menu for item lookup, to avoid popping down
11289         top-row items.
11290
11291 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
11292
11293         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
11294           Graphics.FillRectangle as the visual results are really bad (even
11295           on win). We now draw perfect arrows (and perfect shadows when the
11296           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
11297           Pen.DashPattern to draw the dots of each line.
11298
11299 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
11300
11301         * FileDialog.cs: Update the filename combobox when navigating through
11302           the ListView with the cursor keys. Fixes part 7 of bug #78446.
11303
11304 2006-05-22  Mike Kestner  <mkestner@novell.com>
11305
11306         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
11307         Fixes #78463.
11308
11309 2006-05-22  Mike Kestner  <mkestner@novell.com>
11310
11311         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
11312         requests. Fix a misspelled parameter and a copy paste exception error
11313         in Select.
11314
11315 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
11316
11317         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
11318           to get the same width/height (5/13) on X11 as the default font has on
11319           win32. This means that our DefaultFont emSize is smaller than the 
11320           the MS SWF equivalent (even thought the width/height stays the same)
11321
11322 2006-05-20  Jackson Harper  <jackson@ximian.com>
11323
11324         * MdiClient.cs:
11325         * MdiWindowManager.cs:
11326         * InternalWindowManager.cs: Make sure to use the border width from
11327         the theme.
11328
11329 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
11330
11331         * PrintDialog.cs: Implements printer details
11332
11333 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
11334
11335         * FileDialog.cs: Added focus handling for PopupButtonPanel.
11336           Fixes part 1 and 2 of bug #78446
11337
11338 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
11339
11340         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
11341           instead of sticking to the first ever calculated value
11342
11343 2006-05-19  Mike Kestner  <mkestner@novell.com>
11344
11345         * ComboBox.cs: fix mouse motion selection to use MousePosition and
11346         PointToClient, since Capture is set. Fixes #78344.
11347
11348 2006-05-19  Mike Kestner  <mkestner@novell.com>
11349
11350         * ListView.cs: match MS behavior in Details view where items are not
11351         drawn if Columns.Count == 0. 
11352         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
11353         Use a separate pen to draw the check, since changing the width affects
11354         the box as well.  Fixes #78454.
11355
11356 2006-05-18  Miguel de Icaza  <miguel@novell.com>
11357
11358         * ListView.cs: ArgumentOutOfRangeException, single versions of the
11359         exception should throw the name of the invalid argument.
11360
11361         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
11362         there are no files listed. 
11363
11364 2006-05-18  Jackson Harper  <jackson@ximian.com>
11365
11366         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
11367         up.
11368
11369 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11370
11371         * Control.cs: Brought back our old UpdateZOrder method as a private
11372           function and switched our calls from UpdateZOrder to the new one.
11373           This fixes the Paint.Net canvas disappearing bug.
11374
11375 2006-05-18  Jackson Harper  <jackson@ximian.com>
11376
11377         * Theme.cs:
11378         * ThemeWin32Classic.cs:
11379         * InternalWindowManager.cs: Move the drawing into the theme,
11380         expose everything the theme should need from the window manager.
11381
11382 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11383
11384         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
11385           from the call to NativeWindow to avoid walking up the parent chain
11386           further than needed (speeds up setting cursors and avoids setting
11387           the wrong cursor if a parent has another cursor defined)
11388         * Cursor.cs: When loading an icon as cursor, MS uses the center of
11389           the icon as hotspot, not what's contained as hotspot in the icon
11390           file. This fixes the perceived drawing offset seen with Paint.Net
11391         
11392 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
11393
11394         * XplatUIX11.cs: 
11395           - Store the calculated rectangle in Hwnd object and use it when 
11396             setting the client size
11397           - Force Toolwindows to always be type Dock, to ensure they're on top
11398
11399 2006-05-18  Mike Kestner  <mkestner@novell.com>
11400
11401         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
11402         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
11403         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
11404         Substantial refactoring to remove confusing nested classes. Coding
11405         standard and Get+Set->property refactorings.  Shift to index based
11406         highlighting in ComboListBox instead of constantly using IndexOf and
11407         Items[]. Add invalidations on resize for DropDownList to fix ugliness
11408         in FileDialog growth.  Draw borders manually since Simple mode needs
11409         to look like two independent controls.  Make listbox border
11410         conditional to DropDownStyle.  Improved OwnerDraw support.
11411
11412 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
11413
11414         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
11415         Don't set the disposed graphics to null, so we can throw the "right"
11416         exception if the graphics is reused later (added a flag to avoid 
11417         double disposing). Some behaviours are different under 2.0 and are
11418         filled under bug #78448.
11419
11420 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
11421
11422         * Control.cs: When double-buffering is enabled, we need to reset
11423           our graphics context between paint calls. Otherwise, any 
11424           transformations and other alterations on the context will 
11425           become cumulative (#77734)
11426
11427 2006-05-18  Mike Kestner  <mkestner@novell.com>
11428
11429         * ListView.cs: do focused item selection like MS on clicks. 
11430         Rework focus handling for ItemControl so LostFocus invalidates as
11431         well.
11432         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
11433         the ListView ItemControl has focus.
11434
11435 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
11436
11437         * XplatUIX11.cs: If client_window ends up being width or height zero
11438           due to border settings, move it off window inside whole_window (#78433)
11439
11440 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11441
11442         * Mime.cs: Shrink the mime file cache correctly.
11443
11444 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
11445
11446         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
11447
11448 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11449
11450         * XplatUIX11.cs (AddExpose): More sanity checks
11451
11452 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11453
11454         * XplatUIX11.cs:
11455           - AddExpose: Don't add expose ranges outside the size of our
11456             window
11457           - Cast opacity values to Int32 to avoid crashes with certain
11458             values
11459           - Added disabled code paths that protect against illegal cross-
11460             thread painting (Developers.exe)
11461
11462 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11463
11464         * ProgressBar.cs: Invalidate the control when it's resized
11465           since block size is based on control size. (#78388)
11466
11467 2006-05-16  Miguel de Icaza  <miguel@novell.com>
11468
11469         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
11470         of setting the incoming argument to the "reset" value, we set the
11471         this.datamember to string.empty (before we were invalidating the
11472         incoming data).   
11473
11474         Fixes 78420
11475
11476 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11477
11478         * Form.cs: Only apply transparency settings after the form
11479           is created. (Fixes #77800)
11480
11481 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
11482
11483         * ApplicationContext.cs: Grab the HandleDestroyed event so
11484           we know when to fire OnMainFormClosed 
11485
11486 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11487
11488         * Application.cs: Introduced sub-class to allow tracking of
11489           threads and centralized triggering of the event mess for
11490           ThreadExit, AppExit, etc..  (#76156)
11491
11492 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
11493
11494         * MimeIcon.cs:
11495           - Do not return a null icon index value for a mime subclass.
11496             Instead try the main mime type class too.
11497           - Seems that some newer distributions don't have a link to some
11498             gnome default icons anymore. So check the default gnome dir too.
11499           
11500
11501 2006-05-16  Jackson Harper  <jackson@ximian.com>
11502
11503         * MdiClient.cs: Don't paint the parent background image if we have
11504         our own background image.
11505
11506 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
11507
11508         * Control.cs:
11509           - PerformLayout: Do not shrink space filled by DockStyle.Fill
11510             controls, all filled controls are supposed to overlap (#78080)
11511           - UpdateZOrder is supposed to update the control's z-order in the
11512             parent's z-order chain. Fixed to behave like that
11513           - BringToFront: Removed obsolete code
11514           - SendToBack: Simplyfied
11515           - SetChildIndex: Trigger layout calculations when Z-order changes
11516             since layout is done by z-order
11517
11518 2006-05-16  Chris Toshok  <toshok@ximian.com>
11519
11520         [ fixes bug #78410 ]
11521         * DataGrid.cs (set_AlternatingBackColor): use
11522         grid_drawing.InvalidateCells instead of Refresh().
11523         (set_BackColor): call grid_drawing.InvalidateCells.
11524         (set_BackgroundColor): use Invalidate instead of Refresh.
11525
11526         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
11527         invalidate the cell area.
11528
11529 2006-05-15  Chris Toshok  <toshok@ximian.com>
11530
11531         [ fixes bug #78011 ]
11532         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
11533         on to DataGridPaintRow.
11534         (DataGridPaintRow): take a clip argument, and only draw the cells
11535         which intersect it.  same with the not_usedarea.
11536
11537         * Theme.cs (DataGridPaintRow) add @clip parameter.
11538
11539         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
11540         XplatUI.ScrollWindow.
11541         (ScrollToRow): same.
11542
11543         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
11544         with last column which was causing a gray swath to appear with the
11545         XplatUI.ScrollWindow code.
11546
11547 2006-05-15  Chris Toshok  <toshok@ximian.com>
11548
11549         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
11550         use XplatUI.ScrollWindow.
11551         (VerticalScrollEvent): use XplatUI.ScrollWindow.
11552
11553 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
11554
11555         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
11556
11557 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
11558
11559         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
11560           file since there are no equivalent X11 cursors
11561
11562 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
11563
11564         * MonthCalendar.cs : DateTimePicker should reflect selected date
11565           on mouse*up*, not mouse*down*. Fixed originally reported part of
11566           bug #76474.
11567
11568 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
11569
11570         * TabControl.cs : When argument index is equal or more than tab
11571           count, just ignore. Fixed bug #78395.
11572
11573 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
11574
11575         * Control.cs: Dispose all child controls when control is diposed (#78394)
11576
11577 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11578
11579         * ColorDialog.cs: Finally it is possible to select the color with
11580           the text boxes
11581
11582 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11583
11584         * PrintDialog.cs: Fix typo
11585
11586 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
11587
11588         * PrintDialog.cs: PrintDialog is not resizable
11589         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
11590           color. Made some ToolBar drawing methods protected virtual.
11591
11592 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
11593
11594         * PrintDialog.cs: Implementation of the PrintDialog
11595
11596 2006-05-12  Chris Toshok  <toshok@ximian.com>
11597
11598         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
11599         thumb, instead use MoveThumb.  This has the side effect of making
11600         most of the other thumb moving machinery use MoveThumb as well.
11601         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
11602         need to actually invalidate the rectangle where the new thumb will
11603         go.
11604         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
11605         We force an Update() after, so it's not as fast as it could be,
11606         but at least there's zero flicker and no droppings.
11607         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
11608         (UpdateThumbPos): add another argument (dirty), which says whether
11609         or not to calculate/add dirty regions which we later invalidate.
11610         For cases where we know we're going to use MoveThumb, we pass
11611         false for this.  Otherwise, pass true.
11612
11613 2006-05-12  Jackson Harper  <jackson@ximian.com>
11614
11615         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
11616         the status bar.
11617         
11618 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
11619
11620         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
11621           and GetClipRegion methods and UserClipWontExposeParent property.
11622         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
11623           overriding UserClipWontExposeParent property, setting to false, since
11624           Win32 handles the required expose messages to draw our clipped parent
11625           areas internally
11626         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
11627           PaintEventStart to set the user clip region if set.
11628         * Control.cs: 
11629           - Now internally tracking the Region for the control since we need to
11630             store it if the handle is not yet created and only set it when it
11631             becomes created. Before setting the region forced handle creation
11632           - Added code to draw the parents underneath a user-clipped region
11633         * Hwnd.cs: Added UserClip property
11634
11635 2006-05-12  Chris Toshok  <toshok@ximian.com>
11636
11637         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
11638         (set_Maximum): same.
11639         (set_Minimum): same.
11640         (set_SmallChange): same.
11641         (OnMouseUpSB): remove the call to refresh when releasing the
11642         thumb.  We shouldn't need it.
11643         
11644 2006-05-12  Miguel de Icaza  <miguel@novell.com>
11645
11646         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
11647         AutoSize set to None, we do not need to relayout everything, we
11648         just need to invalidate the current region.
11649
11650         (Draw): Do not draw the entire ClientArea, just redraw the
11651         clip area being passed.
11652
11653         * MdiClient.cs: Make MdiClient constructor with the Form argument
11654         internal. 
11655
11656 2006-05-12  Jackson Harper  <jackson@ximian.com>
11657
11658         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
11659         parents background image,  but strangely not their own.
11660         - (DrawStatusBarPanel): Take into account horizontal alignment
11661         when drawing the strings and icons.
11662
11663 2006-05-12  Mike Kestner  <mkestner@novell.com>
11664
11665         * ListBox.cs: avoid invalidations for focus when the collection is
11666         empty. 
11667
11668 2006-05-12  Chris Toshok  <toshok@ximian.com>
11669
11670         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
11671         invalidate the entire thumb area.  Call InvalidateDirty which
11672         limits the redraw to the thumb itself and surrounding pixels.
11673
11674         * XplatUIX11.cs (ScrollWindow): optimize copying.
11675         
11676 2006-05-12  Chris Toshok  <toshok@ximian.com>
11677
11678         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
11679         Figure out the positioning/layout in a single pass instead of
11680         multiple recursive invocations.  Speeds up the initial display of
11681         the data grid.  Also, make many things private that were
11682         originally public but unused outside this class.
11683
11684 2006-05-11  Jackson Harper  <jackson@ximian.com>
11685
11686         * MdiClient.cs: Improved layout code.
11687
11688 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
11689
11690         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
11691           not SelectedObject.
11692
11693 2006-05-11  Chris Toshok  <toshok@ximian.com>
11694
11695         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
11696         union of that will always be {0,0,width,height}.
11697
11698 2006-05-11  Jackson Harper  <jackson@ximian.com>
11699
11700         * Form.cs: Match MS's DefaultSize for forms (they must have
11701         changed the size in sp2).
11702
11703 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11704
11705         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
11706
11707 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
11708
11709         * TextControl.cs : Fixed bug #78109. This incorrect position
11710           comparison caused crash on automatic line split.
11711         * TextBoxBase.cs : reduce duplicate code.
11712
11713 2006-05-10  Jackson Harper  <jackson@ximian.com>
11714
11715         * MdiClient.cs: Active form is only sent to the back when using
11716         the Next form functionality, when a form is clicked the current
11717         active shouldn't be sent to the back.
11718         - Layout the mdi windows when the container is first made visible.
11719         * Form.cs: Give the MdiClient a ref to the containing form when we
11720         create it.
11721         
11722 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11723
11724         * LinkLabel.cs : link_font could be uninitialized, so populate one
11725           before actual use. Fixed bug #78340.
11726
11727 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
11728
11729         * XplatUIX11.cs : clipboard format native value is IntPtr.
11730           Fixed bug #78283.
11731
11732 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11733
11734         * Control.cs: 
11735           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
11736             which is passed up the parent chain by DefWndProc
11737           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
11738             to DefWndProc (#77956)
11739         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
11740
11741 2006-05-10  Jackson Harper  <jackson@ximian.com>
11742
11743         * MdiClient.cs: We need to remove the controls from the mdi
11744         collection, when we close the window.
11745         * MdiWindowManager.cs: Special handling of closing mdi windows.
11746         * InternalWindowManager.cs: Make the close method virtual so the
11747         mdi window manager can handle it specially.
11748
11749 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
11750
11751         * DataGrid.cs:
11752           - Recalculate grid when the data source has changed
11753           - Matches styles provided by user from all data sources types
11754         * DataGridTableStyle.cs: For columns that provided by the user set the
11755         with the preferred value is there was unassigned.
11756         * CurrencyManager.cs: throw OnItemChanged event
11757
11758 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
11759
11760         * PictureBox.cs: Don't animate until handle is created. Start animation
11761           when handle is created.
11762
11763 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11764
11765         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
11766           current codebase.
11767         * XEventQueue.cs: We don't need to provide the extra info
11768
11769 2006-05-10  Jackson Harper  <jackson@ximian.com>
11770
11771         * MdiClient.cs: If the mdi clients parent form has a background
11772         image set, we draw that background image for the mdi area's
11773         background.
11774
11775 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
11776
11777         * TextBoxBase.cs: Set IBeam cursor (#78347)
11778
11779 2006-05-10  Mike Kestner  <mkestner@novell.com>
11780
11781         * ToolBar.cs: fix some text padding issues with ButtonSize
11782         calculation. Update the default size to match MS documentation.
11783         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
11784         button size. Fixes #78296.
11785
11786 2006-05-10  Mike Kestner  <mkestner@novell.com>
11787
11788         * ListBox.cs: use is_visible for scrollbar positioning in case the
11789         control isn't on screen yet.  Fix off by one with Right vs Width
11790         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
11791         
11792 2006-05-10  Jackson Harper  <jackson@ximian.com>
11793
11794         * X11Dnd.cs: Drop to a control with another control on top of it.
11795         * ToolBar.cs: Work on a copy of the buttons list, so that it can
11796         be modified in click handlers. TODO: Look for similar problems in
11797         other controls.
11798
11799 2006-05-09  Jackson Harper  <jackson@ximian.com>
11800
11801         * Form.cs: Window managers need the old window state when setting
11802         window state now.
11803         * InternalWindowManager.cs: Allow the base mdi window manager to
11804         handle more of the MDI only stuff (like maximize buttons).
11805         * MdiWindowManager.cs: Fix some snafus in changing the window
11806         state.  Add all the menu functionality, for both popup and
11807         maximized menus.
11808         * MdiClient.cs: When a new form is selected the currently
11809         activated form is sent to the back, this matches MS.
11810         - Implement a new method to activate the next mdi child window.
11811
11812 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
11813
11814         * Control.cs: 
11815           - Added new InternalCapture method to allow controls to prevent
11816             the capture behaviour on the click handlers
11817           - Switched to use InternalCapture
11818         * ComboBox.cs:
11819           - Using InternalCapture to prevent mouse captures from being released
11820             on mouse button release (Fixes #78100)
11821         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
11822           returns Form borders if a caption is present. (Fixes #78310)
11823
11824 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
11825
11826         * TreeNode.cs: Changed serialization .ctor to not require every field
11827           to be present. (#78265)
11828         * OwnerDrawPropertyBag.cs: Added serialization .ctor
11829
11830 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
11831
11832         * MimeIcon.cs: for is faster than foreach for strings.
11833
11834 2006-05-05  Mike Kestner  <mkestner@novell.com>
11835
11836         * CheckedListBox.cs: update check handling code to not use selected.
11837         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
11838         behavior for visual feedback, motion response, shift/ctrl handling,
11839         and properly deal with all 4 selection modes. Updates to bounds
11840         handling logic.  Add scroll wheel support. [Fixes #77842]
11841
11842 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11843
11844         * ListView.cs:
11845           - Moved adding of Implicit controls into .ctor. That way, subsequent
11846             creation of the controls will not cause them to think they are 
11847             toplevel windows (fixes #78200 header problem)
11848           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
11849           - Switched visibility setting of header control to use internal field
11850             to avoid triggering handle creation
11851           - Now checking if handle is created before causing a refresh when items
11852             are added (This makes us now match handle creation time with MS)
11853         * Splitter.cs: Removed loading of private splitter cursor, switched to
11854           Cursors version now that that is loading the right ones
11855         * Cursors.cs: Load proper splitter cursors from resources
11856         * Cursor.cs: Added second method of loading resource cursors for the 
11857           VS.Net users amongst us
11858
11859 2006-05-05  Mike Kestner  <mkestner@novell.com>
11860
11861         * ListView.cs: give header_control a minimum size based on the
11862         ListView size.
11863
11864 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11865
11866         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
11867           window seems to do that with metacity, so set that type. (#78120)
11868
11869 2006-05-05  Mike Kestner  <mkestner@novell.com>
11870
11871         * ListViewItem.cs: fix Details mode checkbox layout bug.
11872         * ThemeWin32Classic.cs: draw a ListView column header for unused space
11873         at the end of the header, if it exists. [Fixes for #78200]
11874
11875 2006-05-04  Jackson Harper  <jackson@ximian.com>
11876
11877         * MdiClient.cs: Add a helper property to get the container form.
11878         * MdiWindowManager.cs: We have to make sure to use the menu origin
11879         when drawing the icons and buttons, this fixes maximized window
11880         icons/buttons on win32.
11881         * InternalWindowManager.cs: Reset the restore captions when a
11882         window goes from Maximized to Minimized and vice versa. Move the
11883         DrawMaximizedButtons into the MdiWindowManager source, tool
11884         windows can't be maximized. NOTE: This could use a little
11885         refactoring if time ever permits.
11886         
11887 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11888
11889         * TextBox.cs: Add MWFCategoryAttributes
11890         * TextBoxBase.cs: Add MWFCategoryAttributes
11891         * Form.cs: Add MWFCategoryAttributes
11892
11893 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11894
11895         * Control.cs: Add MWFCategoryAttributes
11896         * ScrollableControl.cs: Add MWFCategoryAttributes
11897
11898 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
11899
11900         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
11901           Divider is true. Fix a little glitch in PropertyToolBar
11902           drawing code
11903
11904 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
11905
11906         * Control.cs:
11907           - Dispose: Call base.Dispose, this causes the disposed event
11908             to be fired (and probably other, more important stuff)
11909           - SetVisibleCore: Set is_visible to true after creating the
11910             window so that the window still gets created invisible (if
11911             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
11912             to generate a WM_ACTIVE message
11913         * Form.cs: Call Dispose when we want to destroy the window, instead of
11914           just destroying the handle (Dispose will do that for us)
11915         * XplatUIX11.cs:
11916           - RootWindow also needs a queue, so we can properly process the
11917             property change events from RootWindow (like Activate)
11918           - Generatic synthetic WM_ACTIVE message when the active window is
11919             being destroyed
11920
11921 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11922
11923         * LinkLabel.cs: Trigger a recalc of our label dimensions when
11924           bounds are changed
11925
11926 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
11927
11928         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
11929           for determining width and height (image might not be assigned if
11930           we're drawing an imagelist)
11931
11932 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11933
11934         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
11935         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
11936           height from system
11937         * Theme.cs: No longer returns hardcoded menu height, instead calls
11938           new driver method
11939         * Form.cs (OnLoad): Scaling happens before triggering Load events 
11940           on MS (# 78257)
11941
11942 2006-05-01  Mike Kestner  <mkestner@novell.com>
11943
11944         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
11945
11946 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
11947
11948         * TextBoxBase.cs: Removed Fixme
11949         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
11950
11951 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
11952
11953         * XplatUIX11.cs:
11954           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
11955             the rectangle relative to the parent, considering borders. We
11956             don't really want that.
11957           - ScrollWindow: Fixed warning to be more understandable
11958         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
11959           scrollbars and scroll only the visible area
11960         * RichTextBox.cs: Removed debug output
11961
11962 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11963
11964         * NumericUpDown.cs (Text): Just use base
11965         * UpDownBase.cs: Ensure txtView is created before using it
11966
11967 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11968
11969         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
11970           casting to IntPtr to avoid 64bit overflow errors
11971
11972 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11973
11974         * Control.cs:
11975           - AllowDrop: Don't force handle creation.
11976           - CreateHandle: Added call to tell driver if we're allowed to drop
11977
11978 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11979
11980         * FileDialog.cs: Remember the last directory not only for the
11981           current instance but also for new FileDialog instances.
11982
11983 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11984         
11985         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
11986           broke sending async messages
11987
11988 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11989
11990         * XplatUIX11.cs:
11991           - ScrollWindow: Fixed method. We finally generate expose events again
11992             for scrolled areas. This was causing 'garbage' when scrolling
11993             textbox and other controls that used ScrollWindow
11994           - Switched from using the regular queue for paint events to the MS 
11995             model of 'generating' paint events when the queue is empty.
11996             We use the new XQueueEvent.Paint subclass to store which windows
11997             need painting.
11998           - AddExpose now takes the x/y/width/height of the exposed area
11999             and inserts the window into the paint queue if not already there
12000           - InvalidateWholeWindow: Switched to use new AddExpose method
12001           - UpdateMessageQueue: Added which queue to monitor for paint events
12002           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
12003             the unlikely case nothing above handles it. We reset the expose
12004             pending states to get them off the queue.
12005           - GetMessage: Now pulls a paint event if no other events are in the
12006             queue
12007           - Invalidate: Switched to new AddExpose method
12008           - PeekMessage: Updated to understand pending paint events
12009           - UpdateWindow: Fixed logic bug. We were only updating if the window
12010             didn't need updating. Also switched to sending WM_PAINT directly,
12011             like MS does.
12012         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
12013           and random access Remove(). The random access is needed to handle
12014           UpdateWindow() where a WM_PAINT is sent directly without accessing
12015           the queue.
12016         * ScrollBar.cs: Added Update() calls to cause immediate updates to
12017           allow for better feedback when scrolling. Scrollbars are small and
12018           the immediate update should make it 'feel' more responsive without
12019           slowing things down. ScrollBar still needs it's invaliate logic
12020           updated to not always invalidate the whole bar on certain changes.
12021
12022 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12023
12024         * Control.cs:
12025         (BackColor): if the control does not support a transparent background,
12026         return the default backcolor when the parent backcolor is transparent.
12027
12028 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
12029
12030         * Application.cs: Updated to new StartLoop/GetMessage API
12031         * RichTextBox.cs: Provide some output on RTF parsing errors
12032         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
12033           new queue_id argument to GetMessage and PeekMessage to allow faster
12034           handling of per-thread queues in drivers.
12035         * Hwnd.cs: Added Queue tracking and property
12036         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
12037         * XEventQueue.cs: Added thread trackingA
12038         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
12039         * XplatUIX11.cs:
12040           - Implemented new per-thread queue
12041           - GetMessage: Fixed return/break behaviour on several cases. We were
12042             returning stale messages in some cases, instead of just processing
12043             the next message
12044
12045 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12046
12047         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
12048
12049 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
12050
12051         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
12052           fixed off-by-one comparisons between Width/Height and Right/Bottom.
12053
12054 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
12055
12056         * PropertyGridView.cs: Fix drop down width.
12057
12058 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12059
12060         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
12061           a mess in DrawToolBar, so I removed one of them.
12062
12063 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
12064
12065         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
12066           needed (clip). Otherwise we get artifacts.
12067
12068 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12069
12070         * FixedSizeTextBox.cs: Added constructor to allow specifying which
12071           dimension is fixed
12072         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
12073           and switched FixedSizeTextBox to only be fixed vertical (#78116)
12074         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
12075           if it matches the scale base font (avoids unneeded scaling)
12076
12077 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12078
12079         * X11DesktopColors.cs: One gtk_init_check should be enough
12080
12081 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
12082
12083         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
12084           match MS behaviour
12085
12086 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
12087
12088         * TextBoxBase.cs: 
12089           - Generate OnTextChanged for Backspace even if we're only deleting
12090             the current selection
12091           - When setting the Text property, only select all text if the
12092             control does not have focus when it is being set. Otherwise
12093             just place the cursor at the beginning of the control
12094
12095 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
12096
12097         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
12098           Added a little helper to draw PropertyGrid ToolBar with a different
12099           border and a different BackColor.
12100         * PropertyGrid.cs: Some background parts didn't get painted with the
12101           correct background color. Added a class that helps us to draw the
12102           correct border for PropertyGridView and a class that helps us to
12103           draw ToolBars with a different backcolor
12104         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
12105
12106 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
12107
12108         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
12109         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
12110
12111 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12112
12113         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
12114           into the palette entries. Also, since we're working on a copy
12115           we needed to copy the palette back onto the bitmap.
12116         * Cursor.cs: Same fix as XplatUIWin32.cs.
12117
12118 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
12119
12120         * ImageListStreamer.cs: Need to read the var (or we're off)
12121
12122 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
12123
12124         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
12125           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
12126           TextBoxBase.cs: Unused var fixes
12127         * AxHost.cs: Small 2.0 fix
12128         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
12129           as it seems that is what at least Metacity expects. This will make
12130           icons show up on 64bit platforms. We still have some 64bit size
12131           issues, though, since the startup app window size still won't match.
12132
12133 2006-04-25  Mike Kestner  <mkestner@novell.com>
12134
12135         * *.cs: cleanup newly reported exception var unused warnings.
12136
12137 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12138
12139         * ThemeWin32Classic.cs: Button image alignment now matches exactly
12140           ms
12141
12142 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12143
12144         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
12145           image. The image position is always the same, no matter if the
12146           button is pressed or not.
12147
12148 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
12149
12150         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
12151           selection and set the correct filename for SaveFileDialog.
12152           Patch by Emery Conrad.
12153
12154 2006-04-24  Mike Kestner  <mkestner@novell.com>
12155
12156         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
12157         check for item.X outside the ClientRect instead of item.Y. Fixes
12158         #78151.
12159
12160 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12161
12162         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
12163         trust that value blindly and do some sanity check. Fixes bug #77814.
12164
12165 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12166
12167         * ImageListStreamer.cs: save the mask as a 1bpp image.
12168
12169 2006-04-21  Mike Kestner  <mkestner@novell.com>
12170
12171         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
12172         pass Checked and Indeterminate to the Theme Engine. Improve
12173         encapsulation with ListBox.
12174         * ListBox.cs: Keep a StringFormat instead of calculating it every item
12175         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
12176         nested types.  Move all CheckState functionality to CheckedListBox.
12177         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
12178         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
12179         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
12180         single base list. Fix scrollbar sizing and placement to mirror MS.
12181         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
12182         used.
12183         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
12184         for CheckedListBox by using new DrawItemState info.  Center the
12185         checkboxes on the items. Use new StringFormat property.
12186
12187 2006-04-18  Jackson Harper  <jackson@ximian.com>
12188
12189         * Form.cs: MdiChildren don't do default locations the same way as
12190         regular forms.  This prevents a crash when trying to position the
12191         mdi windows.
12192
12193 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
12194
12195         * PropertyGridTextBox.cs: Formatting, copyright
12196         * PropertiesTab.cs: Formatting
12197         * PropertyGrid.cs: Formatting
12198         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
12199           click toggling of values
12200           
12201 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
12202
12203         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
12204         * Control.cs (.ctor): verify_thread_handle is static, don't reset
12205           every time a control is created
12206         * Application.cs: Removed obsolete EnableRTLMirroring method
12207
12208 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
12209
12210         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
12211         SelectedIndex to -1. Fixes bug #78121.
12212
12213 2006-04-17  Jackson Harper  <jackson@ximian.com>
12214
12215         * Binding.cs: Handle null values for Current and BindingContext.
12216         This occurs when binding is a little delayed.
12217         * CurrencyManager.cs: return null for Current when there are no
12218         items in the list.
12219         - Hookup to the listchanged event on the DataView and update
12220         bindings when the list is changed.  This fixes late binding of
12221         controls.
12222
12223 2006-04-17  Jackson Harper  <jackson@ximian.com>
12224
12225         * X11Dnd.cs:
12226         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
12227         Ringenbach.
12228
12229 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
12230
12231         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
12232           place
12233         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
12234           with the correct ButtonState
12235
12236 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
12237
12238         * XplatUIX11.cs: Improved distinguishing between window types to
12239           tell the WM a type closer to what the app wants (Fixes #78107)
12240
12241 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12242
12243         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
12244           GrabHandle
12245
12246 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
12247
12248         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
12249           drawing code to reflect the size grip changes
12250
12251 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12252
12253         * ImageListStreamer.cs: fix handling of the mask that follows the main
12254         bitmap when deserializing and serialize it properly. The generated mask
12255         should better be a 1bpp image, but I'll do that later.
12256
12257 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12258
12259         * FileDialog.cs: Show something in the DirComboBox on *nix if the
12260           path doesn't fit into some of our Current.Places
12261
12262 2006-04-13  Jackson Harper  <jackson@ximian.com>
12263
12264         * ComboBox.cs: Use borders instead of drawing our own decorations,
12265         try to obey correct rules for heights.
12266         * Theme.cs:
12267         * ThemeNice.cs:
12268         * ThemeClearLooks.cs:
12269         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
12270         this is now handled by borders.
12271         - Remove unused DrawListBoxDecorationSize method.
12272         
12273 2006-04-13  Mike Kestner  <mkestner@novell.com>
12274
12275         * MenuAPI.cs: null guarding for the disbled click check fixes crash
12276         reported by Alex.
12277
12278 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
12279
12280         * ThemeWin32Classic.cs: 
12281           - Fixed CPDrawStringDisabled
12282           - Corrected drawing of disabled menu items
12283           - Fixed drawing of disabled radio buttons (bug #78095)
12284           - Draw check in a disabled CheckBox with color ControlDark 
12285
12286 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12287
12288         * Form.cs: Use the provided width when calculating the menu size;
12289           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
12290           and ClientSize.Width won't be updated yet
12291         * Application.cs: Use Visible instead of Show() to make form visible,
12292           this way we create the handle later and menusize is considered
12293
12294 2006-04-12  Mike Kestner  <mkestner@novell.com>
12295
12296         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
12297         reporting.
12298
12299 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12300
12301         * TextBox.cs: Implemented context menu
12302
12303 2006-04-12  Mike Kestner  <mkestner@novell.com>
12304
12305         * ListView.cs: implement box selection. fixes #77838.
12306         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
12307
12308 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12309
12310         * XplatUIX11.cs: Added setting of window type when transient window
12311           is created (metacity would move it otherwise)
12312         * X11Structs.cs: Added WINDOW_TYPE atoms
12313         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
12314           background (the control is Opaque but still wants transparent
12315           backgrounds)
12316
12317 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12318
12319         * Control.cs: Added OnPaintBackgroundInternal to allow controls
12320           that set Opaque but don't mean it (like all ButtonBase-derived
12321           controls) to still draw their background
12322         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
12323           the background
12324
12325 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
12326
12327         * Control.cs (PaintControlBackground): Set the graphics object
12328           on our PaintEvent to null to prevent it from being disposed
12329           when the PaintEvent gets disposed
12330
12331 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
12332
12333         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
12334         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
12335
12336 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
12337
12338         * Control.cs: 
12339           - Added transparency check to BackColor property. Transparent
12340             backgrounds are only allowed if the control styles permit it
12341           - Added recursive painting of parent control background and
12342             foreground if a control with a transparent backcolor is drawn
12343             (Thanks to Tim Ringenback for providing his 'hack' as a base
12344              for this patch) Fixes #77985 and #78026.
12345           - Added Opaque style check before calling OnPaintBackground, no
12346             need to draw the background if the control is opaque
12347           - Removed ControlAccessibleObject owner variable (inherited from
12348             base, no need to define again)
12349           - Added some documentation links explaining the drawing events
12350             and styles
12351
12352 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12353
12354         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
12355           that the affected control is the located at the left border of our
12356           parent (Fixes #77936)
12357
12358 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12359
12360         * TextBoxBase.cs: When rendering disabled or readonly controls,
12361           draw the background with 'Control' instead of 'Window' color as
12362           long as the user hasn't specifically set a color
12363
12364 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
12365
12366         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
12367           since that won't be updated if the user types text (only if it's
12368           programatically set)
12369
12370 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12371
12372         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
12373           layout changes do to app-triggered resizes will have the proper
12374           display rectangle for layout
12375
12376 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
12377
12378         * ThemeWin32Classic.cs:
12379           - Make use of the SystemBrushes and SystemPens wherever possible
12380           - Corrected some highlight colors
12381           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
12382             drawing
12383         * Theme.cs: Added Empty field to CPColor struct
12384
12385 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
12386
12387         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
12388           is displayed when calculating the display rectangle. Thanks to Mike
12389           for teaching me the err of my ways.
12390
12391 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
12392
12393         * ScrollableControl.cs:
12394           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
12395             (instead of 0,0) and we now return the real width/height instead of
12396             just the clientrectangle, adjusted for padding. The rectangle is
12397             now cached and created by the new CalculateDisplayRectangle method.
12398           - Created new CalculateDisplayRectange method, which basically does
12399             what get_DisplayRectangle() did originally, but now using the 
12400             right edge instead of DisplayRectangle to determine the size of
12401             our scrollbars
12402           - get_Canvas(): Fixed it to properly calculate canvas for 
12403             right/bottom controls which seem to be placed to the right/bottom
12404             of any controls that have a fixed location
12405           - Removed TODO that's taken care of
12406           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
12407             and SetDisplayRectLocation according to new MSDN2 docs
12408           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
12409             event when that is called, this is added for compatibility
12410           - ScrollControlIntoView(): Implemented.
12411           - Switched scrollbars to be implicit, they shouldn't be selectable
12412         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
12413           call it when the active control is set/changed
12414         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
12415         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
12416           implicit_control variable (used for native Win32 message generation)
12417         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
12418           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
12419         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
12420         * XplatUIStructs.cs: Added ScrollBarCommands enum
12421
12422 2006-04-10  Jackson Harper  <jackson@ximian.com>
12423
12424         * ButtonBase.cs:
12425         * CheckedListBox.cs:
12426         * ComboBox.cs:
12427         * DataGrid.cs:
12428         * DataGridView.cs:
12429         * Form.cs:
12430         * GroupBox.cs:
12431         * ListBox.cs:
12432         * PrintPreviewControl.cs:
12433         * ProgressBar.cs:
12434         * PropertyGrid.cs:
12435         * Splitter.cs:
12436         * StatusBar.cs:
12437         * TrackBar.cs:
12438         * UpDownBase.cs: Fixup base event overrides.
12439         
12440 2006-04-06  Mike Kestner  <mkestner@novell.com>
12441
12442         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
12443         all user-initiated value changes to min <= value <= max-thumbsz+1.
12444         (set_Value): check for vert/horiz when calculating new thumb position.
12445         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
12446         like MS does.
12447         (OnMouseMoveSB): refactor the thumb dragging code and refine
12448         invalidation logic to reduce flicker.
12449         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
12450         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
12451         (UpdateThumbPosition): small code readability cleanup
12452
12453 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
12454
12455         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
12456           different
12457
12458 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
12459
12460         * ThemeNice.cs: Use a better graphics effect when a button is pressed
12461
12462 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
12463
12464         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
12465         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
12466           This dramatically reduces the number of Pen.Dispose calls. 
12467           Where possible call ResPool methods only once instead of calling it
12468           over and over again (for example for the same color).
12469
12470 2006-04-06  Mike Kestner  <mkestner@novell.com>
12471
12472         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
12473         Also remove an unused private field on the collection. Fixes #77972.
12474
12475 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
12476
12477         * ThemeNice.cs: Added ToolBar drawing code
12478
12479 2006-04-06  Mike Kestner  <mkestner@novell.com>
12480
12481         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
12482         I'm assuming that means we need to look up the toplevel for the
12483         provided control. Fixes the crash trace in #77911 but exposes another
12484         crash in some strange reflection usage in NDocGui.
12485
12486 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
12487
12488         * ThemeNice.cs: Gave it a little silver touch and added Images
12489           method
12490         * FontDialog.cs: FontDialog is not resizable
12491         * FileDialg.cs: Added SizeGripStyle.Show
12492
12493 2006-04-05  Jackson Harper  <jackson@ximian.com>
12494
12495         * KeyboardLayouts.cs: Remove warning.
12496
12497 2006-04-05  Jackson Harper  <jackson@ximian.com>
12498
12499         * Control.cs: Enable OnPaintInternal so we can use it for drawing
12500         all of our controls instead of Paint +=.
12501         * ListBox.cs:
12502         * ListView.cs:
12503         * MenuAPI.cs:
12504         * MessageBox.cs:
12505         * NotifyIcon.cs:
12506         * ProgressBar.cs:
12507         * ScrollBar.cs:
12508         * Splitter.cs:
12509         * StatusBar.cs:
12510         * TabControl.cs:
12511         * TextBoxBase.cs:
12512         * ToolBar.cs:
12513         * TrackBar.cs:
12514         * UpDownBase.cs:
12515         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
12516         use OnPaintInternal. Remove Width/Height and Visible checks in
12517         paint handler, this is done at a higher level now.
12518         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
12519         * PaintEventArgs.cs: Add a handled flag so controls that don't
12520         want anymore painting after OnPaintInternal can make sure OnPaint
12521         isn't called.
12522
12523 2006-04-05  Mike Kestner  <mkestner@novell.com>
12524
12525         * Form.cs: fix the menu WndProc hacks to respect the native enabled
12526         state of the form, so that we don't process events when Modal dialogs
12527         are up. Fixes #77922.
12528
12529 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
12530
12531         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
12532           checking is done.
12533
12534 2006-04-05  Mike Kestner  <mkestner@novell.com>
12535
12536         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
12537
12538 2006-04-05  Mike Kestner  <mkestner@novell.com>
12539
12540         * ListView.cs (HeaderMouseMove): null guarding for the over column
12541         when setting up the drag_to_index.  Fixes #78015.
12542
12543 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
12544
12545         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
12546           in the taskbar. Transient windows seem to accomplish that.
12547
12548 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
12549
12550         * Form.cs:
12551           - Re-enabled CreateParams.X/Y code for FormStartPosition
12552           - Added code for manual placement when creating the Control
12553           - Incomplete patch to treat MDI forms differently when
12554             setting the ClientSizeCore. (Still need to figure out handling
12555             x/y coords there)
12556         * XplatUIX11.cs:
12557           - When we're explicitly setting the X/Y position of a non-Child
12558             window, let the WM know. Metacity really wants this.
12559
12560 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12561
12562         * ThemeNice.cs: Added CPDrawButton
12563
12564 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12565
12566         * ThemeNice.cs: Changed the color for focused buttons and activated
12567           the arrows for small scroll buttons.
12568
12569 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
12570
12571         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
12572           anymore. Changed some method modifiers to protected (virtual)
12573         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
12574           changes
12575         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
12576           Updated drawing of menus, buttons and progressbars; added
12577           CPDrawBorder3D 
12578
12579 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12580
12581         * ImageListStreamer.cs: implemented serialization/deserialization
12582         of the images.
12583
12584 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
12585
12586         * ThemeWin32Classic.cs:
12587           - Removed all the DrawFrameControl stuff; CPDrawButton,
12588             CPDrawCheckBox and CPDrawRadioButton are now handled directly
12589             inside the methods
12590           - Updated and corrected the drawing code of CPDrawButton,
12591             CPDrawCheckBox and CPDrawRadioButton to better match ms
12592           - Updated theme checkbox and radiobutton code to use the CP*
12593             methods
12594
12595 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
12596
12597         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
12598           bug is fixed
12599
12600 2006-03-31  Jackson Harper  <jackson@ximian.com>
12601
12602         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
12603         sometimes.
12604         * UpDownBase.cs: Don't CreateGraphics manually, use a
12605         Refresh. Ideally we would invalidate the correct areas here.
12606
12607 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
12608
12609         * XplatUIX11.cs: 
12610           - We now track the mapping state of windows. If a window (or 
12611             one of it's parents) is not mapped we no longer permit
12612             WM_PAINT messages to be generated since we'd otherwise get 
12613             lots of BadMatch X errors. Jackson did all the work figuring
12614             out the problem.
12615           - Destroying the caret if the window it's contained in is 
12616             destroyed. Can't use regular DestroyCaret method since it
12617             might fall into a drawing function (trying to remove the
12618             caret) and with that generate new BadMatch errors. Again,
12619             Jackson tracked this down.
12620           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
12621             make sure we send the messages to all windows. (The old code
12622             would send the WM_DESTROY to the window, and then all child
12623             windows would be 'gone' because the WM_DESTROY handle lookup
12624             would no longer find the destroyed window)
12625         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
12626         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
12627
12628 2006-03-31  Jackson Harper  <jackson@ximian.com>
12629
12630         * ScrollableControl.cs: Dont recalc if we are not visible.
12631
12632 2006-03-31  Mike Kestner  <mkestner@novell.com>
12633
12634         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
12635         the visibility branch.
12636
12637 2006-03-31  Jackson Harper  <jackson@ximian.com>
12638
12639         * ScrollBar.cs: Cap values when incrementing/decrementing.
12640
12641 2006-03-31  Mike Kestner  <mkestner@novell.com>
12642
12643         * MenuAPI.cs: setup menu.tracker for popup/context menus.
12644         * ToolTip.cs: guard against timer expirations with no active control.
12645         Not sure why it happened.
12646
12647 2006-03-31  Mike Kestner  <mkestner@novell.com>
12648
12649         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
12650         text.
12651         * ToolTip.cs: Position the tooltip based on where the cursor is at
12652         popup time, not at MouseEnter time.  Add a Down state so that we don't
12653         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
12654         positioning offset. Lookup DisplaySize at positioning time, since it
12655         can theoretically change during invocation.
12656         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
12657         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
12658
12659 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12660
12661         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
12662           Fixes behaviour when the Text property of the box is String.Empty
12663
12664 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
12665
12666         * XplatUIX11.cs: Only send mouseleave for our client windows, not
12667           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
12668           a window)
12669
12670 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12671
12672         * FileDialog.cs: Visual enhancement for the popup buttons in 
12673           PopupButtonPanel
12674
12675 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
12676
12677         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
12678           code
12679
12680 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
12681
12682         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
12683           highlighted menu items to match ms
12684
12685 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
12686
12687         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
12688
12689 2006-03-30  Mike Kestner  <mkestner@novell.com>
12690
12691         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
12692         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
12693         go active to account for HotLight to Selected transition.
12694         * MenuItem.cs: add internal Selected prop. Fill out the Status
12695         property by calculating it from item info. Add HotLight,
12696         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
12697
12698 2006-03-30  Mike Kestner  <mkestner@novell.com>
12699
12700         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
12701
12702 2006-03-29  Jackson Harper  <jackson@ximian.com>
12703
12704         * Form.cs: Implement TODO.
12705
12706 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
12707
12708         * PrintPreviewDialog.cs: Implemented missing methods and events; still
12709           missing proper dialog setup in the constructor
12710
12711 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
12712
12713         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
12714         * Control.cs:
12715           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
12716           - Fixed ResetBindings and removed TODO
12717           - Added check for cross-thread calls to get_Handle()
12718           - Added Marshaller attribute for set_Font to satisfy class status
12719         * FontDialog.cs: Removed TODOs that seemed implemented
12720         * UpDownBase.cs: Removed unneeded TODO and Fixme
12721         * MessageBox.cs: Implemented support for Default button and removed TODO
12722         * FileDialog.cs: Removed obsolete TODO
12723         * DomainUpDown.cs: Removed obsolete TODO
12724         * ButtonBase.cs: Removed obsolete TODO
12725         * XplatUIWin32.cs: Removed obsolete TODO
12726         * Form.cs:
12727           - Removed obsolete TODO
12728           - Calling CheckAcceptButton when the acceptbutton is changed to allow
12729             internal status updates
12730           - Making sure the active control is selected when the control is created
12731         * CurrencyManager.cs: Removed obsolete TODO
12732
12733 2006-03-29  Mike Kestner  <mkestner@novell.com>
12734
12735         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
12736         of PrintPreviewDialog and RichTextBox.
12737
12738 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12739
12740         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
12741           DarkDark, Light and LightLight colors for a specific color
12742         * ThemeWin32Classic.cs:
12743           - Use Button drawing code to draw RadioButtons and CheckBoxes with
12744             Appearance = Button 
12745           - Make use of the new ResPool helper CPColor
12746           - Draw ProgressBar and StatusBar with correct 3D borders
12747
12748 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
12749
12750         * ColorDialog.cs: Return selected color. Fixes bug #77940.
12751
12752 2006-03-28  Mike Kestner  <mkestner@novell.com>
12753
12754         * ListView.cs: fix Icon layout to plan for scrollbar widths when
12755         calculating col/row counts.
12756
12757 2006-03-28  Mike Kestner  <mkestner@novell.com>
12758
12759         * ColumnHeader.cs:
12760         * ListView.cs:
12761         * ListViewItem.cs:
12762         * Menu.cs: 
12763         switch to explicit interface method implementation for some methods
12764         corcompare identifies as inconsistent with MS.
12765
12766 2006-03-28  Mike Kestner  <mkestner@novell.com>
12767
12768         * MainMenu.cs: 
12769         * Menu.cs:
12770         add a few missing methods from the class status output.
12771
12772 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
12773
12774         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
12775           correct.
12776
12777 2006-03-28  Mike Kestner  <mkestner@novell.com>
12778
12779         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
12780
12781 2006-03-27  Mike Kestner  <mkestner@novell.com>
12782
12783         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
12784         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
12785
12786 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
12787
12788         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
12789
12790 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12791
12792         * ThemeWin32Classic.cs:
12793           - GroupBox: Inserted a little gap between the text and the lines
12794             on the right side
12795           - Made the code in CPDrawBorder3D more readable
12796           - Corrected the drawing location of the up and down arrows in 
12797             CPDrawScrollButton
12798
12799 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12800
12801         * ControlPaint.cs: Corrected line widths in DrawBorder for
12802           ButtonBorderStyle Inset and Outset
12803
12804 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12805
12806         * ThemeWin32Classic.cs:
12807           - Rewrote the totally broken CPDrawBorder3D method. That was
12808             one of the main problems for the terrific ThemeWin32Classic
12809             look
12810           - Updated and corrected Button drawing
12811           - Correct the dimensions of the SizeGrip to match ms ones
12812           - Removed a small drawing glitch in DrawComboBoxEditDecorations
12813         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
12814           Border3DStyle.Sunken to match ms.
12815
12816 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
12817
12818         * ThemeWin32Classic.cs: First small part of the "de-uglify
12819           ThemeWin32Classic" effort, SizeGrip
12820
12821 2006-03-24  Jackson Harper  <jackson@ximian.com>
12822
12823         * XplatUIX11.cs: Give a max idle time of one second, this matches
12824         MS and forces an Idle event every second when there are no other
12825         events in the queue.
12826
12827 2006-03-24  Mike Kestner  <mkestner@novell.com>
12828
12829         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
12830         * ListView.Item.cs: fix layout issues with null image lists and images
12831         smaller than checkbox size.
12832         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
12833         mode like MS does.  It's weird, but consistent.  ;-)
12834         Fixes #77890.
12835
12836 2006-03-24  Mike Kestner  <mkestner@novell.com>
12837
12838         * ListView.cs: Scroll wheel support for the item control.  Fixes
12839         #77839.
12840
12841 2006-03-23  Jackson Harper  <jackson@ximian.com>
12842
12843         * ScrollableControl.cs: Special case negative sized areas, not
12844         zero.
12845         * MonthCalendar.cs: Save the rect of the clicked date so we can
12846         use it for invalidation.
12847         - Try to cut down on the number of invalidates
12848         - Invalidate the rect the mouse is over and was over when moving
12849         the mouse, so we get the focus box following the cursor.
12850
12851 2006-03-23  Mike Kestner  <mkestner@novell.com>
12852
12853         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
12854         focus rectangle drawing. Fixes #77835.
12855
12856 2006-03-23  Mike Kestner  <mkestner@novell.com>
12857
12858         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
12859         the if and else if and reverting back to the original == check on the
12860         None conditional.
12861
12862 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12863
12864         * FontDialog.cs: Update the example panel if the selected index of
12865           the fontListBox changes.
12866
12867 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12868
12869         * FileDialog.cs: Make FileDialog remember which directory it was in
12870           last in the same execution.
12871
12872 2006-03-22  Mike Kestner  <mkestner@novell.com>
12873
12874         * FileDialog.cs: make the DropDownMenu on the toolbar display
12875         RadioChecks since they are mutually exclusive and that's what MS does.
12876
12877 2006-03-22  Mike Kestner  <mkestner@novell.com>
12878
12879         * Theme.cs: add Color param to CPDrawMenuGlyph.
12880         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
12881         checks and radio marks and arrows are visible on highlighted items.
12882         * ControlPaint.cs: update to use new Theme signature.
12883
12884 2006-03-22  Mike Kestner  <mkestner@novell.com>
12885
12886         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
12887         is active. Fixes #77870.
12888
12889 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12890
12891         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
12892           to be focused/selected after startup
12893
12894 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12895
12896         * ColorDialog.cs: 
12897           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
12898             CustomColors and ShowHelp properties
12899           - Some internal rewrites to get better results when using the
12900             ColorMatrix
12901
12902 2006-03-22  Mike Kestner  <mkestner@novell.com>
12903
12904         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
12905         HoverSelection.  Fixes #77836.
12906
12907 2006-03-22  Mike Kestner  <mkestner@novell.com>
12908
12909         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
12910         ToggleButtons.  (De)Sensitize the Back button around a stack count of
12911         1, not 0.  Update ButtonSize based on a pixel count of the win32
12912         control.  Adjust the toolbar size/location for new button size.
12913
12914 2006-03-22  Jackson Harper  <jackson@ximian.com>
12915
12916         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
12917         true.
12918         * ScrollBar.cs: When doing increments and decrements we need to
12919         set the Value property so that ValueChanged gets raised. A
12920         possible optimization here would be to make an internal SetValue
12921         that doesn't invalidate immediately.
12922         * ToolTip.cs: Tooltips get added to their container (when
12923         supplied) so they get disposed when the container is disposed.
12924         - Don't create tooltips for String.Empty. This prevents all these
12925         little 2-3 pixel windows from showing up when running nunit-gui
12926         and driving me mad.
12927         * Form.cs: Don't set topmost when setting the owner if the handles
12928         haven't been created yet.  The topmost set will happen when the
12929         handles are created.
12930
12931 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
12932
12933         * XplatUIX11.cs:
12934           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
12935           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
12936             visible (to allow them to recalculate their sizes)
12937
12938 2006-03-21  Mike Kestner  <mkestner@novell.com>
12939
12940         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
12941         methods. Removed a ton of redundant code.  Still not really happy with
12942         the border rendering, but I think that's mainly because of the
12943         ControlDarkDark being black instead of a dark grey. Depending on how 
12944         close we want to be, we might want to revisit those color choices.
12945         Among the new features added during the refactor were DropDownArrow
12946         pressed rendering, Disabled image rendering.  Proper flat appearance
12947         boundary rendering.  Removed the Divider and Wrapping dividers since I
12948         can't figure out any combination of themes and conditions to make the
12949         MS control draw a horizontal line on a toolbar despite what the
12950         Divider property docs indicate.
12951         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
12952         conditions and incorrect layout.  Updated to coding standard.
12953         * ToolBarButton.cs: refactored layout and positioning code from
12954         ToolBar to here.  Invalidate wherever possible instead of forcing
12955         redraws of the whole toolbar. 
12956         (Known remaining issues: explicit ButtonSize smaller than provided
12957         images.)
12958
12959 2006-03-21  Mike Kestner  <mkestner@novell.com>
12960
12961         * ContextMenu.cs (Show): use the position parameter instead of just
12962         showing at the MousePosition.
12963
12964 2006-03-21  Jackson Harper  <jackson@ximian.com>
12965
12966         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
12967         control handle this.
12968         * TreeNodeCollection.cs: If we are clearing the root node we need
12969         to reset top_node so calcs can still happen.
12970         * ThemeWin32Classic.cs: This is a Flags so we need to check
12971         properly.
12972         
12973 2006-03-21  Jackson Harper  <jackson@ximian.com>
12974
12975         * DataGrid.cs: Create columns when the binding context has been
12976         changed.
12977         * X11Structs.cs: Keysyms are uints.
12978         - Add size to fix build.
12979
12980 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
12981
12982         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
12983           XplatUIOSX.cs: 
12984           - Added ResetMouseHover method to allow controls to retrigger
12985             hovering if they need it more than once
12986           - Implemented MouseHoverTime and MouseHoverSize properties
12987         * Timer.cs: Start() must reset the interval
12988         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
12989           properties
12990
12991 2006-03-21  Jackson Harper  <jackson@ximian.com>
12992
12993         * X11Keyboard.cs: improved layout detection. Move the nonchar
12994         tables into this file.
12995         * KeyboardLayouts.cs: Move the tables into resource files.
12996
12997 2006-03-21  Mike Kestner  <mkestner@novell.com>
12998
12999         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
13000
13001 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
13002
13003         * Mime.cs: Various speed optimizations. Looking up mime types
13004           is now 2 times faster than before
13005
13006 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
13007
13008         * CreateParams.cs: Added internal menu field
13009         * Control.cs: 
13010           - Switched call order for UpdateBounds; now we always call
13011             the one that also takes ClientSize, and we're calculating the 
13012             client size via driver method in the others. The previous
13013             method of tracking client size by difference wasn't working
13014             for forms where even the starting client size wouldn't match
13015             the overall form size (due to borders) (Part of fix for #77729)
13016           - CreateParams(): Do not use parent.Handle unless the handle is
13017             already created. Causes havoc with Nexxia and throws off our
13018             creation of controls
13019         * XplatUIX11.cs:
13020           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
13021           - Switched handling of ConfigureNotify over to new PerformNCCalc 
13022             method (consolidates code)
13023           - Changed RequestNCRecalc to use new PerformNCCalc method
13024           - Added calls to RequestNCRecalc when menus and borders are changed
13025             to allow app to set NC size. (Part of fix for #77729) This matches
13026             when MS send a WM_NCRECALC on Win32 windows.
13027           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
13028             (Part of fix for #77729). This matches what MS does, they also
13029             send that message when the form is made visible.
13030           - XException.GetMessage: Improved usability of X errors by including
13031             a translation of the window into Hwnd and Control class
13032           - Improved debug info for window creation, reparenting and destruction
13033           - Created helper method WindowIsMapped() [Currently not used]
13034         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
13035         * Form.cs:
13036           - CreateParams: Now setting our menu on the new internal menu field
13037           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
13038             avoid calculating the same property twice
13039         * Hwnd.cs:
13040           - Improved usability of ToString() for debugging purposes
13041           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
13042             determine the height of the menu, instead of just the font. This
13043             required to also create a graphics context and to keep a bmp 
13044             around (for performance reasons)
13045
13046 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
13047
13048         * MenuAPI.cs: Added OnMouseUp method
13049         * Form.cs:
13050           - Now remembering the requested client size, avoids size errors
13051           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
13052             instead of base if the menu is active. This is required due to
13053             control now capturing and releasing on down/up and it would
13054             prematurely release our menu capture
13055
13056 2006-03-17  Jackson Harper  <jackson@ximian.com>
13057
13058         * KeyboardLayouts.cs: Add the czech layouts.
13059
13060 2006-03-16  Jackson Harper  <jackson@ximian.com>
13061
13062         * Control.cs: Use the viewport space when sizing not the controls
13063         client size, so things like ScrollableControl that effect the
13064         viewport size (when scrollbars are added) are computed correctly.
13065         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
13066         of ManagerEntrys.
13067         - Handle creating BindingManagers for null data sources.
13068         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
13069         source, otherwise when rows are added they are added to the 'fake'
13070         datasource and we will crash when trying to set the position in
13071         those rows.
13072         - Use Implicit scrollbars on the datagrid so they arent
13073         selectable.
13074         
13075 2006-03-16  Jackson Harper  <jackson@ximian.com>
13076
13077         * Binding.cs:
13078         * InternalWindowManager.cs:
13079         * MdiWindowManager.cs:
13080         * X11Keyboard.cs: I really want Mike to love me again (fix
13081         compiler warnings).
13082
13083 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
13084
13085         * DataGrid.cs:
13086           - OnMouseDown: Switch to editing mode when clicking on the cell
13087                          even if we're clicking on the cell that's currently 
13088                          selected
13089           - ProcessGridKey: Left/Right now wrap like MS.Net does
13090           - ProcessGridKey: Tab now knows to add a new row when tab is
13091                             pressed in the cell of the last column of the 
13092                             last row
13093           - ProcessGridKey: Enter now adds another row  if pressed in the last
13094                             row and selectes the new row, same column cell
13095           - ProcessGridKey: Home/End navigate columns, not rows, like 
13096                             originally implemented
13097           - Broke ProcessKeyPreview code out into an extra Internal method
13098             so it can be called from the edit code
13099         * DataGridTextBox.cs (ProcessKeyMessage):
13100           - Switched to accept Tab keypresses
13101           - Added F2 handling to allow jumping to the end of the edited cell
13102           - Added logic to allow moving caret left/right inside edited cell
13103             and making the edited cell jump when the caret hits cell borders
13104           - Tab and Enter are now passed to the datagrid after being handled
13105         * TextBoxBase.cs:
13106           - Removed capture code now that Control handles it
13107           - set_SelectionStart now ensures caret is visible
13108
13109 2006-03-16  Jackson Harper  <jackson@ximian.com>
13110
13111         * TrackBar.cs: Debackwards the increment/decrement for handling
13112         mouse clicks on the bar with vertical trackbars.
13113         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
13114         bottom to match MS.
13115
13116 2006-03-16  Mike Kestner  <mkestner@novell.com>
13117
13118         * ListView.cs: make shift/ctrl keyboard and mouse selection 
13119         consistent with the MS control. Fix a bug in
13120         SelectedListViewItemCollection.Clear that was pissing me off for the
13121         better part of a day because the collection was being altered
13122         underneath us as we walked the list.
13123
13124 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
13125
13126         * Control.cs: Not sure how we could miss this so long, but it seems
13127           that MS.Net has Capture set all the way from before calling 
13128           OnMouseDown through sending the mouse events until after
13129           OnMouseUp. This will fix DataGrid's selection being set to end
13130           at the location of the MouseUp.
13131
13132 2006-03-15  Jackson Harper  <jackson@ximian.com>
13133
13134         * BindingContext.cs: Check the binding after its added so that it
13135           can initialize the binding managers and hookup to events.
13136         * Binding.cs: Data members seem to sometimes include rows/cols in
13137           the format Row.Column we now take this into account.
13138           - Hookup to the position changed event so we can update the
13139           control when the position has changed in the data set.
13140         * CurrencyManager.cs: Take into account the row/col naming
13141           convention when creating dataset tables.
13142         * BindingContext.cs: Using a newer better way of storing
13143           datasource/datamember pairs.  Hopefully this better matches MS for
13144           looking up binding managers.
13145
13146
13147 2006-03-15  Jackson Harper  <jackson@ximian.com>
13148
13149         * BindingContext.cs: The currency manager needs the data member
13150         name, if the member is a data set we use the name to find the
13151         correct table.
13152         * CurrencyManager.cs: When creating the list prefer an IList over
13153         an IListSource.
13154         - Attempt to create a DataTable from a DataSet (TODO: might need
13155         some better error checking here, although MS doesn't seem to have much)
13156         - If we have a DataTable create a view and use it as our list.
13157
13158 2006-03-15  Mike Kestner  <mkestner@novell.com>
13159
13160         * ListView.cs: keep a matrix of the icon mode layout to facilitate
13161         keyboard navigation. Support Up/Down/Left/Right selection correctly
13162         for all 4 View modes.
13163         * ListViewItem.cs: add internal row/col fields for icon layouts.
13164
13165 2006-03-15  Jackson Harper  <jackson@ximian.com>
13166
13167         * TabControl.cs: Redraw the tabs when we resize so their newly
13168         calculated sizes are drawn on screen.
13169         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
13170         composite characters.
13171         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
13172         - filter events so that composite characters can be created
13173         patches by peter
13174         * X11Structs.cs: Add XIMProperties enum.
13175
13176 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13177
13178         * Control.cs (BringToFront, SendToBack): Don't use window or handle
13179           unless it's created
13180
13181 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13182
13183         * Control.cs (PerformLayout): We don't need to consider visiblity
13184           for anchoring, only for docking. This fixes 'whacky' alignment
13185           in listbox and other controls that use implicit scrollbars after
13186           the previous PerformLayout patch
13187         * ListBox.cs: Switched to use implicit scrollbars
13188           
13189 2006-03-14  Mike Kestner  <mkestner@novell.com>
13190
13191         * ToolBar.cs: 
13192         * VScrollBar.cs:
13193         - chain up the "new event" overrides to base and use
13194         OnEvent to raise them.  Part of fix for bug #76509.
13195
13196 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
13197
13198         * FileDialog.cs: Do not select an item in the parent directory
13199           on backspace
13200
13201 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
13202
13203         * Control.cs (PerformLayout): It would seem that we considered
13204           invisible windows for our layout. Not quite the right thing
13205           to do. Now we don't any longer, thereby fixing bug #76889.
13206
13207 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
13208
13209         * Control.cs (CanFocus): I goofed. A control can have focus 
13210           even though it's not selectable. Made it match MS docs.
13211
13212 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13213
13214         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
13215           center by default (fixes #76895)
13216         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
13217           all uses of Border3DSides.All with the explicit ORd together
13218           Left|Right|Top|Bottom because I assume that nobody was aware 
13219           that All also implies a center fill. Most places I checked had
13220           a fill right above.
13221         * ProgressBarStyle.cs: Added
13222
13223 2006-03-13  Mike Kestner  <mkestner@novell.com>
13224
13225         * ListView.cs: fix breakage in drag shadow header positioning 
13226         from Peter's csc compilation fix.
13227
13228 2006-03-13  Mike Kestner  <mkestner@novell.com>
13229
13230         * ListView.cs: fix NRE produced by backspacing twice in a focused
13231         FileDialog.
13232
13233 2006-03-13  Mike Kestner  <mkestner@novell.com>
13234
13235         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
13236
13237 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13238
13239         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
13240           be changed
13241         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
13242           the allowed size before making programmatic size changes
13243
13244 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
13245
13246         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
13247           set, metacity is broken and will still use the emty sizes in 
13248           the struct. (Fix for #77089)
13249
13250 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
13251
13252         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
13253           WindowExStyles and marked both enums as Flags
13254         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
13255           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
13256           to match WindowStyles split
13257         * XplatUIX11.cs:
13258           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
13259           - Updated to match WindowStyles split
13260         * XplatUIWin32.cs:
13261           - Fixed FosterParent creation, was using ExStyle on the Style field
13262             (This should help with Popup focus issues)
13263           - Updated to match WindowStyles split
13264
13265 2006-03-13  Jackson Harper  <jackson@ximian.com>
13266
13267         * MdiWindowManager.cs: Use the system menu height. Fixes some
13268         strange sizing issues.
13269
13270 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13271
13272         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
13273         * TextBoxBase.cs:
13274           - Scroll to caret after inserting text (#77672)
13275           - Make scroll range one pixel higher, fixes off-by-one error (and
13276             makes underlines visible on the last line)
13277
13278 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
13279
13280         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
13281           the keyboard state from being stuck with keys in 'pressed' state when
13282           focus is switched away via keyboard
13283         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
13284           reset the keyboard if no X11 KeyUp events are expected to come
13285         * X11Structs.cs: Switched type of Visible to bool to match driver
13286
13287 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
13288
13289         * TextControl.cs:
13290           - Switched caret to be just 1 pixel wide, matches MS and looks less
13291             clunky
13292           - Moved caret display 1 pixel down from the top of the control
13293             to improve view
13294           - InsertCharAtCharet: Update the selection start if moving the caret
13295             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
13296           - No longer always creating the caret when the caret methods are
13297             called. Only the actual ShowCaret/HideCaret will do that now
13298           - Only setting caret visible if the owner control has focus
13299           - UpdateView: Added invalidation-shortcut logic for center and right 
13300             aligned text. Previously we'd update all according to the left
13301             logic which caused drawing errors. Also fixed height of invalidated
13302             areas, now properly invalidating the whole area (was off-by-one)
13303           - owner_HandleCreated: Always generate the document when the
13304             handle is created; this ensures that 
13305         * TextBoxBase.cs:
13306           - Fixed situation where caret would disappear under the right
13307             window border, also improved scrolling behaviour on left-
13308             aligned textboxes
13309           - Fixed right-aligned textboxes to have a border to the
13310             right instead of the caret being under the right border
13311         * XplatUIX11.cs:
13312           - Switched from 'nested' to simple visible/not visible tracking 
13313             for caret (part of fix for #77671)
13314           - No longer passing through translated FocusIn/FocusOut messages
13315             since we were notifying too often and the wrong windows. Instead
13316             we just notify our focussed window of receiving or loosing focus
13317         * XplatUIWin32.cs: Switched from 'nested' show/hide 
13318           counting for caret to simple visible yes/no behaviour (part of 
13319           fix for #77671)
13320
13321 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13322
13323         * Mime.cs: Remove debug code...
13324
13325 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
13326
13327         * MimeGenerated.cs: Removed
13328         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
13329           and subclasses) from /usr/(local/)share/mime and
13330           $HOME/.local/share/mime.
13331
13332 2006-03-10  Jackson Harper  <jackson@ximian.com>
13333
13334         * MdiWindowManager.cs: Recalc the NC area when a window is
13335         maximized/restored so that the menu area is drawn on forms that
13336         don't have a menu.
13337
13338 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13339
13340         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
13341           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
13342           us to force a WM_NCCALCRESIZE message being sent. This is needed
13343           for MDI maximizing.
13344
13345 2006-03-10  Jackson Harper  <jackson@ximian.com>
13346
13347         * Form.cs: We need to use the ActiveMenu when calculating menu
13348         height.
13349         - Fix nullref when the window manager hasn't been created yet.
13350         * Control.cs: Fix nullref when we try to bring a control to the
13351         front that has no parent.
13352         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
13353         height.
13354         - Add a dummy item to the maximized menu so it always has the
13355         correct height. Otherwise when there are no menus we don't get our
13356         icon and buttons.
13357         
13358
13359 2006-03-10  Jackson Harper  <jackson@ximian.com>
13360
13361         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
13362         stuff.
13363         * Form.cs: Make the window_state internal so the window managers
13364         can track it.
13365         - When an MDI child is maximized let its window manager create the
13366         main menu (so it can add its icon).
13367         - Notify the window managers of state changes
13368         - Let the window manager paint its buttons and handle button
13369         clicks on the menu when it is maximized.
13370         * InternalWindowManager.cs: Move the prev_bounds into the mdi
13371         window manager, since tool windows don't use it, only mdi windows.
13372         - Tell the main form that we don't want it to handle NCPAINT
13373         itself to avoid extra painting.
13374         - Handle clicks on a maximized windows menu.
13375         - Handle window state changes
13376         - Handle minimize/maximize clicks correctly by setting the window state.
13377         * MdiWindowManager.cs: Add an icon menu that (the menu you get
13378         when clicking on the forms icon).
13379         - New method to create a forms maximized menu. This is its normal
13380         menu + an icon.
13381         - Handle window state changes.
13382         - Handle sizing of maximized windows.  Maximized windows are just
13383         drawn bigger then the parent visible area. All controls are still
13384         there, they are just outside the visible area (this matches windows).
13385         * MdiClient.cs: No scrollbars when a child window is maximized.
13386         - Let the children windows figure out how big they should be when
13387         sizing maximized windows.
13388         - Implement a version of ArrangeIconicWindows somewhat similar to
13389         Windows version.  There are some little differences, but I don't
13390         think any app will rely on the layout of minimized mdi windows.
13391
13392 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13393
13394         * Padding.cs: Several fixes to allow compiling with csc 2.0
13395
13396 2006-03-09  Jackson Harper  <jackson@ximian.com>
13397
13398         * Menu.cs:
13399         * MenuItem.cs: Cheap hack so we can add items to the list without
13400         the events being raised.  This allows adding mdi items during
13401         drawing. TODO: Should probably find a better time to add the items.
13402
13403 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13404
13405         * ThemeWin32Classic.cs:
13406           - CheckBox_DrawText: Added logic to not wrap if not enough space
13407             is available (Fix for bug #77727)
13408           - RadioButton_DrawText: Added logic not to wrap if not enough
13409             space is available (Fix for bug #77727). Also removed some
13410             duplicate code, DrawString always drawing the regular text
13411             before hitting the if statement.
13412
13413 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
13414
13415         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
13416
13417 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
13418
13419         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
13420         * ContainerControl.cs: Partial implementation of some 2.0 scaling
13421           methods. Moved the new 2.0 properties into alphabetical order with
13422           other properties and added MonoTODO tags
13423
13424 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13425
13426         * AutoScaleMode.cs: Added. Fix build.
13427
13428 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13429
13430         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
13431           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
13432           and was requiring premature handle creation for calls from above
13433         * Form.cs, Control.cs: Removed handle arguments from calls to
13434           CalculateClientRect()
13435
13436 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13437
13438         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
13439           drag_column.column_rect is MarshalByRef and can't be used that way
13440
13441 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13442
13443         * AxHost.cs: Added deserialization constructor for 
13444           AxHost+State (fixes 77743)
13445
13446 2006-03-09  Mike Kestner  <mkestner@novell.com>
13447
13448         * ListView.cs: 
13449         - Added column drag reordering for details view.
13450         - fixed behavior when mouse is dragged off column and
13451         AllowColumnReorder is false.
13452         * ColumnHeader.cs: clone the format too in Clone.
13453         * Theme.cs: add DrawListViewHeaderDragDetails method.
13454         * ThemeWin32Classic.cs:
13455         - impl new method for drawing drag column shadows and targets.
13456         - support column offset for details mode in DrawListViewItem.
13457
13458 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13459
13460         * TextControl.cs: Reset the char_count when the document is cleared
13461           (Fixes bug reported on mono-winforms mailing list)
13462
13463 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
13464
13465         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
13466           of calling base we simply process the key ourselves, since both
13467           DefWindowProc and the handled method would set m.Result. 
13468           (Fixes #77732)
13469
13470 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
13471
13472         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
13473           method also moves the window; instead implemented a copy of
13474           Control.ScaleCore (Part of fix for #77456)
13475         * TextBoxBase.cs: 
13476           - Created new CreateGraphicsInternal method to allow providing
13477             a graphics context when no handle is created without triggering
13478             handle creation. (Part of fix for #77456)
13479           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13480         * TextControl.cs: 
13481           - Switched Constructor to require TextBoxBase instead of Control (to
13482             allow uncast access to CreateGraphicsInternal)
13483           - Safeguarded use of owner.Handle property. No longer accessing it
13484             unless the handle is already created.
13485           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
13486           - Now triggering a recalc when owning control becomes visible
13487         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
13488           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
13489           premature handle creation (Part of fix for #77456)
13490         * Control.cs:
13491           - We now only destroy our double-buffering buffers when the
13492             control is resized or disposed, but not when visibility
13493             changes. (The code even re-created them twice every time)
13494           - Now requiring a redraw of the buffer on visibility changes
13495             (fixes bug 77654 part 2)
13496           - Not passing OnParentVisibleChanged up unless the control
13497             is visible
13498           - CanFocus: Fixed to match MS documentation
13499           - Focus: Fixed to return actual focus state and to check if
13500             setting focus is legal before setting it
13501
13502 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
13503
13504         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
13505           when to draw focus rectangle by looking at parent focus and
13506           selected state instead. This fixes TabPages on Linux sometimes
13507           having none or multiple focus rectangles.
13508         * XplatUIX11.cs (SetFocus): 
13509           - Don't set the focus if the same window already has focus
13510           - Use SendMessage instead of PostMessage (like it's Win32
13511             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
13512             to match MS behaviour
13513         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
13514           are not selectable.
13515
13516 2006-03-07  Jackson Harper  <jackson@ximian.com>
13517
13518         * PictureBox.cs: Revert line I accidently committed last week.
13519
13520 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
13521
13522         * Control.cs: 
13523           - Added new IsRecreating and ParentIsRecreating properties to
13524             allow testing if RecreateHandle has been called on ourselves
13525             or one of our parents
13526           - WndProc(WM_DESTROY): If our control handle is being recreated
13527             we immediately need to create the handle when receiving the
13528             destroy, that way our child windows find a valid parent handle
13529             when they themselves are being recreated upon WM_DESTROY receipt
13530             (fix for bug #77654 part 1)
13531         * XplatUIX11.cs:
13532           - DestroyWindow: WM_DESTROY must be sent to our own window before
13533             notifying any child windows. MS documents that child windows
13534             are still valid when WM_DESTROY is received. (Control now relies on
13535             this behaviour)
13536           - Added some fine-grain debug options
13537
13538 2006-03-06  Jackson Harper  <jackson@ximian.com>
13539
13540         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
13541         box and base calculations off this.
13542         * MdiChildContext.cs:
13543         * MdiWindowManager.cs: Don't need to ensure scrollbars here
13544         anymore.
13545         
13546 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
13547
13548         * Splitter.cs: In situations where the affected control is added
13549           to the parent's control list after the splitter, we would not
13550           populate affected. Now we try populating it on mousedown, if
13551           it's not already set, and force it to be re-set whenever our
13552           parent changes.
13553
13554 2006-03-03  Matt Hargett  <matt@use.net>
13555
13556         * Control.cs: implement Control.Padding
13557         * Padding.cs: -Padding.All returns -1 when constructing with the
13558         implicit default ctor
13559         -Padding.ToString() matches MS.NET
13560         * ContainerControl.cs: implement
13561         ContainerControl.AutoScaleDimensions
13562         * ListControl.cs: implement ListControl.FormattingEnabled
13563         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
13564         * ButtonBase.cs:
13565         * TabPage.cs: Implement UseVisualStyleBackColor.
13566         * PictureBox.cs: Implement PictureBox.InitialImage.
13567
13568 2006-03-03  Mike Kestner  <mkestner@novell.com>
13569
13570         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
13571         event declarations to proxy to base event.
13572         * ListViewItem.cs: update to use ItemControl.
13573         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
13574         * ThemeWin32Classic.cs: update to new ListView theme API and fix
13575         column header label rendering for 0 width columns.
13576
13577 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
13578
13579         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
13580           that causes the control to be created. Fixes #77476.
13581
13582 2006-03-02  Jackson Harper  <jackson@ximian.com>
13583
13584         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
13585         expose_pending.
13586
13587 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
13588
13589         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
13590           passed in for the EventArgs (fixes #77690)
13591
13592 2006-03-01  Jackson Harper  <jackson@ximian.com>
13593
13594         * ScrollBar.cs: Refresh afterbeing resized.
13595
13596 2006-02-28  Mike Kestner  <mkestner@novell.com>
13597
13598         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
13599         Clean up a tracker compile warning.
13600         * MenuItem.cs: add internal PerformPopup method.
13601         [Fixes #77457]
13602
13603 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
13604
13605         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
13606           implicit expose) when the text is set to null
13607
13608 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
13609
13610         * RichTextBox.cs (FlushText): When newline is true, we always
13611           need to split the line, even if no text is on it and we may
13612           never eat newlines. (Fixes #77669)
13613
13614 2006-02-28  Mike Kestner  <mkestner@novell.com>
13615
13616         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
13617         and set Selected instead.
13618         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
13619         collections.
13620
13621 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
13622
13623         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
13624
13625 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
13626
13627         * FontDialog.cs:
13628           - Got rid of the panel. All controls are now directly added to
13629             the dialog form
13630           - It is now possible to set a font with the Font property
13631           - MinSize and MaxSize property do now what they should
13632           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
13633           - Searching and selecting a font with the font textbox works now,
13634             the same applies to the style and size textbox
13635           - Draw the correct 3D border in the example panel
13636           - Fixed a little mem leak (unused fonts didn't get disposed)
13637           - Many other internal updates/rewrites...
13638           - Fix typo
13639
13640 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
13641
13642         * TextControl.cs: 
13643           - InsertRTFFromStream: Added 'number of characters inserted' argument
13644           - set_SelectedRTF: Now using the number of characters to calculate
13645             the new location for the selection and cursor (x/y cannot be used
13646             due to potentially already wrapped text)
13647
13648 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
13649
13650         * TextControl.cs: Added property and implemented means to allow 
13651           disabling recalculation of a document (can be used to speed up
13652           multiple inserts and is needed to make RTF inserts predictable, see
13653           bug #77659)
13654         * RichTextBox.cs: Using the new NoRecalc property of Document to
13655           keep x/y insert locations predictable. Also makes it faster inserting
13656           large chunks of RTF
13657
13658 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
13659
13660         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
13661           it's easier for a child control to handle the other messages without
13662           having to duplicate the special functionality
13663         * TextBoxBase.cs
13664           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
13665             code to handle processing the key ourselves, in order to get 
13666             access to the result of KeyEventArgs.Handled. We now only call 
13667             ProcessKey if they key hasn't been handled already. Fixes #77526.
13668           - set_Text: If null or empty string is given, just clear the 
13669             document. Fixes part of #77526
13670
13671 2006-02-27  Jackson Harper  <jackson@ximian.com>
13672
13673         * SizeGrip.cs: Paint the background color before painting the grip
13674         so things look right.
13675         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
13676
13677 2006-02-27  Mike Kestner  <mkestner@novell.com>
13678
13679         * ListView.cs:
13680           - Restructure layout and invalidation model to remove a ton of
13681           flicker from the control and speed up performance in general.
13682           - Add manual column resize, flickers like crazy, but I already have
13683           some ideas on how I'll fix that. (#76822)
13684           - Merge the three Icon-based views into a single layout method.
13685           - Move item selection interaction logic from the item since 
13686           interaction with the collections is more appropriate to the view.
13687           - Deselection on non-item clicks.
13688         * ListViewItem.cs:
13689           - Encapsulate most of the layout. Add some internal props to trigger
13690           layout.  Move to a model where Items invalidate themselves instead
13691           of just invalidating the whole control every time something changes.
13692           - Invalidate on Text/Caption changes.
13693           - switch to an offset based layout model to avoid having to absolute
13694           position every element on item moves.
13695           - correct checkbox layout to conform to MS layout.
13696         * ThemeWin32Classic.cs:
13697           - refactor some column header drawing code.
13698           - fix string justification for column headers (#76821)
13699           - make SmallIcon labels top justified for compat with MS impl.
13700         * ThemeClearlooks.cs:
13701           - adjust to new ListViewItem internal checkbox bounds api.
13702
13703 2006-02-27  Jackson Harper  <jackson@ximian.com>
13704
13705         * Control.cs:  Change where implicit controls fall in the zorder.
13706         They are now on top of all children.
13707         - Synced AddImplicit code with Add
13708         - Removed unused enumerator.
13709         * SizeGrip.cs: Remove the TODO as its been TODONE.
13710
13711 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
13712
13713         * TextControl.cs(Insert): Combine the last lines unless the insertion
13714           string ends with \n\n, otherwise we leave one line too many (Fixes
13715           something I noticed with the testapp for #77526; the bug itself was
13716           already fixed in the previous checkin)
13717
13718 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
13719
13720         * RichTextBox.cs:
13721           - SelectionColor and SelectionFont methods no longer set absolute
13722             styles. Instead, the keep font or color respectively (This 
13723             resolves a long-standing FIXME in the code)
13724           - When flushing RTF text, the insert code now considers text trailing
13725             behind the insertion point (Fixes the bug where when replacing
13726             the selected text via SelectedRTF the remainder of the line behind 
13727             the selection would stay on the first insertion line)
13728         * TextBoxBase.cs:
13729           - AppendText now updates the selection points after inserting text
13730           - AppendText now ensures that the last tag (sometimes 0-length) of
13731             the document is used for the style information (Fixes part of 
13732             bug #77220)
13733         * TextControl.cs:
13734           - Created new FontDefiniton class to allow describing partial style
13735             changes
13736           - StreamLine() now takes a lines argument, to allow it to decide
13737             whether an encountered zero-length tag is the last in the document
13738             (which must be kept to not loose the font/color contained in it,
13739             for later appends)
13740           - Created Combine() and Split() methods for Marker structs, to 
13741             support marker updates due to reformatted documents (soft line
13742             wraps)
13743           - Implemented Document.CaretTag setter
13744           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
13745             of the last line (Not the cause, but also exposed by bug #77220)
13746           - Added LineTag argument to InsertString method, to allow callers
13747             to force a certain tag to be used (required to force use of the
13748             trailing zero-length tag of a document)
13749           - Now updating markers in Combine(), to avoid stale tag markers
13750           - Added some method descriptions to aid maintenance
13751           - Implemented new FormatText concept, allowing additive/subtractive
13752             formatting by only specifying the components that are to be 
13753             changed. This was needed for resolving the RTB.SelectedColor/
13754             RTB.SelectedFont fixmes
13755           - Added Break() support method to allow breaking up linetags (used
13756             for partial formatting)
13757           - Added GenerateTextFormat() method. It is used for partial 
13758             formatting and allows to generate a full font/color from given
13759             attributes and an existing tag.
13760
13761 2006-02-26  Jackson Harper  <jackson@ximian.com>
13762
13763         * XplatUIX11.cs:  Use the correct caption height.
13764         - Translate hittest coordinates to screen coords to match MS.
13765         * XplatUIWin32.cs: When we create MDI windows we need to reset
13766         some of the style flags, so we get a nice blank window, and can
13767         draw all the decorations ourselves.
13768         - Set a clipping rectangle on the non client paint event, the
13769         window manager drawing code needs one.
13770         * Form.cs: The window manager needs to know when the window state
13771         has been updated.
13772         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
13773         don't need to factor in border and title sizes in these
13774         methods. TODO: Remove the args and fix the call points.
13775         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
13776         properly.
13777         - Let the driver set the cursors.
13778         - Improve active window handling
13779         - Correct sizes for title bars and buttons.
13780         - Match MS drawing better
13781         * MdiWindowManager.cs: We don't need to handle border style
13782         updates specially anymore.
13783         - Check for scrollbars when windows are done moving
13784         - Handle Active properly.
13785         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
13786         correctly. I am spewing the exception though, so we don't hide the
13787         bugs.
13788         
13789 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
13790
13791         * DataGridViewRowPostPaintEventArgs.cs,
13792           DataGridViewCellPaintingEventArgs.cs,
13793           DataGridViewRowCollection.cs,
13794           DataGridViewRowPrePaintEventArgs.cs,
13795           DataGridViewCell.cs: Clear a few warnings and implement a few
13796           exceptions that should be thrown.
13797
13798 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
13799
13800         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
13801           'inheriting' our parent's (non-default) cursor. (Part of
13802            the fix for #77479)
13803
13804 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
13805
13806         * XplatUIX11.cs: Fixed cast to make csc happy
13807
13808 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
13809
13810         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
13811           it's for the client area (part of fix for #77479 and needed
13812           for MDI window cursor handling)
13813         * XplatUIX11.cs
13814           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
13815             the appropriate default cursors and also passing the message
13816             up the parent chain 
13817           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
13818             for non-client areas
13819
13820 2006-02-15  Jackson Harper  <jackson@ximian.com>
13821
13822         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
13823         is a real MDI window
13824
13825 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
13826
13827         * X11DesktopColors.cs: Instead of checking the desktop session
13828           string for "KDE" check if it starts with "KDE"
13829
13830 2006-02-10  Jackson Harper  <jackson@ximian.com>
13831
13832         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
13833         systems).
13834
13835 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13836
13837         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
13838           errors
13839         * ColorDialog.cs:
13840           - Got rid of the panel. All controls are now directly added to
13841             the dialog form
13842           - Changed to mono coding style
13843
13844 2006-02-10  Jackson Harper  <jackson@ximian.com>
13845
13846         * InternalWindowManager.cs: We don't need the set visibility to
13847         false hack anymore now that peter has written beautiful shutdown
13848         code.
13849
13850 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
13851
13852         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
13853           where already explicitly destroyed
13854
13855 2006-02-10  Jackson Harper  <jackson@ximian.com>
13856
13857         * MdiClient.cs: Handle the case where windows are too high or to
13858         the left and we need scrollbars.
13859
13860 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13861
13862         * MimeIcon.cs: Added some icons
13863         * FileDialog.cs:
13864           - Fixed bug #77477
13865           - Got rid of the panel. All controls are now directly added to
13866             the dialog form
13867           - Changed to mono coding style
13868           - On Linux "My Computer" and "My Network" will now show some
13869             more usefull information. A new class, MasterMount, gathers
13870             this information from /proc/mount. Updated MWFFileView to make
13871             use of this information
13872           - Fixed a bug that caused FileDialog to crash when
13873             ".recently_used" file had a zero size
13874           - FilterIndex does now what it should
13875           - Some Refactoring
13876         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
13877             FileDialog changes
13878
13879 2006-02-09  Jackson Harper  <jackson@ximian.com>
13880
13881         * ComboBox.cs: Don't touch if null.
13882
13883 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
13884
13885         * Cursor.cs: 64bit safeness fix
13886         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
13887
13888 2006-02-09  Jackson Harper  <jackson@ximian.com>
13889
13890         * Form.cs: If a form is made into an MDI form update the styles so
13891         all the props can get set correctly.
13892         - Kill the mdi_container when we dont need it anymore.
13893         * InternalWindowManager.cs: Add missing NOT
13894
13895 2006-02-08  Jackson Harper  <jackson@ximian.com>
13896
13897         * InternalWindowManager.cs: Respek clipping when drawing MDi
13898         decorations.
13899
13900 2006-02-08  Jackson Harper  <jackson@ximian.com>
13901
13902         * Hwnd.cs: Add bits to track non client expose events.
13903         * XplatUIX11.cs: Track non client expose events on the hwnd. This
13904         gives us a proper invalid rect and will allow for some nice
13905         optimizations with NC client drawing
13906         - MDI windows are children windows, so move their style handling
13907         into the child window block.
13908         * InternalWindowManager.cs: Remove a state reset that was
13909         getting invoked at the wrong time. Fixes managed windows getting
13910         into a 'stuck' captured state.
13911
13912 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13913
13914         * TextControl.cs (Document.ctor): Now initializing 
13915           selection_anchor. Fixes #77493
13916
13917 2006-02-07  Jackson Harper  <jackson@ximian.com>
13918
13919         * TrackBar.cs: The increment/decrements were backwards.
13920
13921 2006-02-07  Mike Kestner  <mkestner@novell.com>
13922
13923         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
13924         to the instance itself.
13925
13926 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13927
13928         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
13929           on ulongs and pointers, the size differs between 32bit and 64bit
13930           systems. 
13931
13932 2006-02-07  Mike Kestner  <mkestner@novell.com>
13933
13934         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
13935         for 64 bit platforms to work around a metacity bug. 
13936
13937 2006-02-07  Jackson Harper  <jackson@ximian.com>
13938
13939         * TrackBar.cs: Process the input keys we need, and hookup to
13940         KeyDown instead of using WndProc, so we get key messages.
13941
13942 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
13943
13944         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
13945           machine we're on. 
13946         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
13947           we need to translate the XdndVersion atoms array before sending it
13948
13949 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
13950
13951         * XplatUIX11.cs: 
13952           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
13953             number of bits for the property, not the number of bytes. The
13954             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
13955             but would not crash since it specified 8 bits instead of 4 bits)
13956           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
13957             defined as XID -> long in the C headers)
13958           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
13959             references since those are now IntPtr to begin with
13960           - Switched all Atom.XXX 'int' casts to IntPtr casts
13961           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
13962           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
13963           - Added XChangeActivePointerGrab DllImport (for X11DnD)
13964         * X11Structs.cs:
13965           - Changed 'int' type for Atoms in XEvent structures to IntPtr
13966           - Changed atom in HoverStruct to be IntPtr
13967         * X11DnD.cs:
13968           - Removed local DllImports, switched code to use those from XplatUIX11
13969           - Removed/fixed casts related to the switch of Atom to be a IntPtr
13970
13971 2006-02-06  Mike Kestner  <mkestner@novell.com>
13972
13973         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
13974         method signatures in the import region.  There may still be some
13975         lingering struct marshaling issues, as I didn't drill down into those.
13976         Yet.
13977
13978 2006-02-06  Jackson Harper  <jackson@ximian.com>
13979
13980         * ComboBox.cs: Dont manually set the top_item, this is computed
13981         when the scrollbar position is set.
13982
13983 2006-02-06  Mike Kestner  <mkestner@novell.com>
13984
13985         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
13986         startup crashes on amd64.  There's other fixes needed.  All pinvoke
13987         usage of Atom needs to be mapped to IntPtr for example.  And there are
13988         likely other int/long issues to be addressed.
13989
13990 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
13991
13992         * FileDialog.cs: One more...
13993
13994 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13995
13996         * FileDialog.cs: Next try
13997
13998 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13999
14000         * FileDialog.cs: First part of fix for #77464
14001
14002 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
14003
14004         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
14005           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
14006           AcceptButton border drawing.
14007
14008 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
14009
14010         * Form.cs: Moved positioning of form after auto scaling is applied,
14011           otherwise it would possibly use wrong form size.
14012
14013 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
14014
14015         * Control.cs (RecreateHandle): No need to re-create any child
14016           controls, the child windows will get destroyed automatically by
14017           the windowing system or driver, and re-created when the handle
14018           is being accessed the first time. Fixes #77456
14019         * Form.cs: No longer setting the form to closing if the handle is 
14020           being recreated. This seems like the right thing to do, don't
14021           have a bug or testcase for this, though.
14022
14023 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14024
14025         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
14026           controls to avoid unwanted side effects
14027
14028 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
14029
14030         * Control.cs: 
14031           - ScaleCore needs to scale the bounds, not the ClientSize of the 
14032             control. Fixes #77416.
14033           - DefaultSize is 0,0 for control
14034         * TextBoxBase.cs: 
14035           - DefaultSize is 100, 20
14036           - SetBoundsCore: Now enforcing the height, no matter if the provided
14037             height is more or less than the preferred one, as long as AutoSize
14038             is on
14039         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
14040
14041 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
14042
14043         * Control.cs:
14044           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
14045             call unless both performLayout is true *and* we have a pending
14046             layout change
14047           - ResumeLayout: MS does not completely nest Suspend and Resume,
14048             they bottom out at 0, fixed our code to match that.
14049           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
14050             SetBoundsCore, we were updating even when we shouldn't. This fixes
14051             swf-anchors mis-anchoring when resizing the app fast and lots.
14052           - UpdateDistances: Now only setting the left and top distance if 
14053             we have a parent and are not suspended, this is based on
14054             a suggestion by Don Edvaldson in bug #77355.
14055           - OnVisibleChanged: Fixed logic when to create the control. We may
14056             not create the control if we have no parent or if it's not visible;
14057             switched to using Visible property instead of is_visible field 
14058             since the property also considers parent states. This fixes a bug
14059             when starting Paint.Net
14060
14061 2006-02-02  Jackson Harper  <jackson@ximian.com>
14062
14063         * Form.cs: If the forms handle hasn't been created yet don't call
14064         into xplatui to make it top most, just set the topmost flag on the
14065         form in CreateParams
14066         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
14067
14068 2006-02-01  Jackson Harper  <jackson@ximian.com>
14069
14070         * ScrollableControl.cs: Refactored the Recalculate method a
14071         little, this wasn't handling all the variants of bottom and right
14072         bars needed to be added and added/removed based on their
14073         counterparts being added/removed (which changes the drawable
14074         size). Also we special case client widths and heights of 0 and
14075         don't add the scrollbar for those.
14076
14077 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
14078
14079         * XplatUIX11.cs: 
14080           - Added method to get AbsoluteGeometry(); currently unused, but might
14081             be used in the future, if we try again to figure out toplevel
14082             coordinates with some more crappy window managers
14083           - Added FrameExtents() method to retrieve the WM set decoration size
14084           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
14085             to deal with at least KDE, FVWM and metacity (Fixes #77092)
14086         * Hwnd.cs: 
14087           - Added whacky_wm tracking var for metacity
14088           - Added logic to have default menu height if the actual menu height
14089             has not yet been calculated (part of fix for #77426)
14090         * Form.cs: Keep track whether client size has been set and re-set 
14091           it if a menu is added/removed afterwards (Fixes #77426)
14092
14093 2006-01-31  Jackson Harper  <jackson@ximian.com>
14094
14095         * Control.cs: When a new Site is set on the component attempt to
14096         pull the AmbientProperties from it.
14097
14098 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
14099
14100         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
14101           in the background of the owning form. Fixes #77332
14102
14103 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14104
14105         * MimeIcon.cs: Fix for #77409
14106
14107 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
14108
14109         * XplatUIX11GTK.cs: Initial import
14110
14111 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
14112
14113         * FixedSizeTextBox: fixes class signature
14114
14115 2006-01-30  Jackson Harper  <jackson@ximian.com>
14116
14117         * FixedSizeTextBox.cs: New internal class that represents a
14118         textBox that will not be scaled.
14119         * TreeView.cs:
14120         * ComboBox.cs:
14121         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
14122         standard TextBox.
14123                 
14124 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
14125
14126         * XplatUIX11.cs: Retrieve default screen number instead of
14127           assuming 0. Attempted fix for #77318
14128
14129 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
14130
14131         * XplatUIWin32.cs: 
14132           - GetWindowPos: When a window is parented by FosterParent, use 
14133             the desktop instead of FosterParent as the base to get coordinates
14134           - CreateWindow: Don't make FosterParent the parent window for Popups
14135             if we don't want a taskbar entry, Popups automatically don't get one
14136         * Hwnd.cs: Need to call remove to actually remove the key from the
14137           hash table
14138
14139 2006-01-30  Mike Kestner  <mkestner@novell.com>
14140
14141         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
14142
14143 2006-01-30  Jackson Harper  <jackson@ximian.com>
14144
14145         * TreeView.cs:
14146         * TreeNode.cs: Raise events no matter how the treenode is
14147         checked. Patch by Don Edvalson.
14148
14149 2006-01-30  Jackson Harper  <jackson@ximian.com>
14150
14151         * TreeNode.cs: Signature fix.
14152
14153 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
14154
14155         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
14156
14157 2006-01-20  Mike Kestner  <mkestner@novell.com>
14158
14159         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
14160         event forwarding when menus are active.
14161         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
14162         Most of the patch is pdb's with a little rework.
14163
14164 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14165
14166         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
14167           Removed GetMenuDC and ReleaseMenuDC methods; replaced
14168           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
14169         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
14170         * InternalWindowManager.cs: Added use of PaintEventStart/End to
14171           handling of WM_NCPAINT message, now passing the PaintEventArgs to
14172           the PaintWindowDecorations method
14173         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
14174         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
14175         * MenuAPI.cs: Made tracker window invisible
14176         * XplatUIWin32.cs:
14177           - Removed GetMenuDC and ReleaseMenuDC methods
14178           - Implemented the client=false path for PaintEventStart and
14179             PaintEventEnd
14180
14181 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14182
14183         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
14184         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
14185           styles
14186         * Form.cs: 
14187           - MaximizeBox, MinimizeBox: Recreate the handle when setting
14188             the style
14189           - CreateParams: Reworked the styles to match MS look'n'feel,
14190             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
14191             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
14192
14193 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
14194
14195         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
14196           window is not mapped, since otherwise every form that's being 
14197           created is considered minimized, which is wrong.
14198         * Form.cs: Catching the exception and returning our internal value
14199           instead
14200
14201 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
14202
14203         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
14204           SetWindowMinMax() to have means to tell the driver about the minimum,
14205           maximum and maximized state window sizes. (Part of the fix for #76485)
14206         * Form.cs:
14207           - Implemented tracking of minimum and maximum window size, now calling
14208             new SetWindowMinMax() driver method to tell the driver (Part of the
14209             fix for #76485)
14210           - Finished handling of WM_GETMINMAXINFO method, now setting all values
14211             (Completes fix for #76485)
14212           - Calling new SetWindowMinMax driver method when the handle for a 
14213             form is created, to make sure the driver knows about it even if
14214             the values have been set before the window was created
14215           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
14216             to avoid messing up our anchoring calculations (partial fix
14217             for #77355)
14218         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
14219         * XplatUIX11.cs:
14220           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
14221           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
14222             (and presumably other freedesktop.org compliant WMs). Left the
14223             assumption unmapped=minimized, needed for SetVisible to work.
14224           - Now setting the window state when creating windows
14225           - Fixed SetVisible to consider/set the window state when mapping
14226             a Form. We cannot set the state before it's mapped, and we cannot
14227             use Form.WindowState once it's mapped (since it would ask the
14228             driver and get 'normal'. Therefore, we grab the state before
14229             mapping, map, and then set state.
14230           - Implmemented SetWindowMinMax method; Metacity does not seem to
14231             honor the ZoomHints, though.
14232         * XplatUIWin32.cs:
14233           - Removed MINMAXINFO (moved to XplatUIStructs)
14234           - Added SetWindowMinMax stub (on Win32 the only way to set that
14235             information is in response to the WM_GETMINMAXINFO message, which
14236             is handled in Form.cs)
14237           - Added logic to SetVisible to set the proper window state when a 
14238             form is made visible (fixes #75720)
14239
14240 2006-01-26  Jackson Harper  <jackson@ximian.com>
14241
14242         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
14243         same way we handle them with Invoke.
14244
14245 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
14246
14247         * Form.cs:
14248           - Added tracking of window state so CreateParams can return
14249             the appropriate style
14250           - Moved setting of WS_CAPTION style in CreateParams to allow
14251             styles without caption
14252         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
14253           control if the TextBox property is accessed. Fixes #77345
14254         * Control.cs:
14255           - get_Created: now uses is_disposed and is_created to determine
14256             return value (suggested by Jackson)
14257           - CreateHandle: No longer exits if the handle is being recreated
14258           - RecreateHandle: If the handle is not yet created call the 
14259             appropriate method to create either control or handle. If the
14260             control is already created CreateHandle will simply exit instead
14261             of just creating the handle
14262         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
14263           now SendMessage WM_DESTROY directly to the control when DestroyWindow
14264           is called.
14265         * XplatUIX11.cs: 
14266           - When DestroyWindow is called, instead of waiting for the 
14267             DestroyNotification from X11, we directly post it to the WndProc
14268             and immediately dispose the hwnd object.
14269             Same applies to DestroyChildWindows, and this obsoletes the
14270             expose_pending tracking. Contrary to Win32 behaviour we destroy our
14271             child windows before our own, to avoid X11 errors.
14272           - Removed the direct sending of WM_PAINT on UpdateWindow
14273         * XplatUIWin32.cs:
14274           - Reworked DoEvents and GetMessage to allow access to internal queue
14275             even when trying non-blocking access to the queue.  Fixes #77335. 
14276             Based on a patch suggestion by Don Edvalson. The new private
14277             GetMessage can now also be used as a backend for a PeekMessage
14278             frontend version.
14279         * XplatUI.cs: Improved debug output for CreateWindow
14280
14281 2006-01-25  Jackson Harper  <jackson@ximian.com>
14282
14283         * Help.cs: Allow param to be null. Patch by Don Edvalson.
14284
14285 2006-01-24  Jackson Harper  <jackson@ximian.com>
14286
14287         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
14288         when we have a MaxDropItems lower then the selected index.
14289
14290 2006-01-24  Jackson Harper  <jackson@ximian.com>
14291
14292         * Control.cs: Don't allow selection of non visible controls, allow
14293         selection of controls without parents.
14294
14295 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14296
14297         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
14298         * DataGridDrawingLogic.cs: Add editing row only when is necessary
14299
14300 2006-01-23  Jackson Harper  <jackson@ximian.com>
14301
14302         * UpDownBase.cs: Make the textbox handle all the selection and
14303         tabbing. This fixes tabing to updown controls.
14304
14305 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
14306
14307         * TextBoxBase.cs: fixes exception thown the object was null
14308
14309 2006-01-23  Jackson Harper  <jackson@ximian.com>
14310
14311         * ButtonBase.cs: Just use the base CreateParams. They set
14312         visibility and enabled correctly.
14313         * ComboBox.cs:
14314         * TrackBar.cs:
14315         * MonthCalendar.cs: Lets let the base set as much of the
14316         createparams as possible so we don't have duplicate code all over
14317         the place.
14318
14319 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
14320
14321         * ThemeGtk.cs: Added TrackBar and some experimental code to
14322           get double buffering back
14323
14324 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
14325
14326         * DataGrid.cs: Allows row number set internally higher than the last
14327         when creating a new row. Restores the editing functionality.
14328
14329 2006-01-20  Mike Kestner  <mkestner@novell.com>
14330
14331         * MimeIcon.cs: delay Image creation until the icons are accessed
14332         instead of creating 190 scaled images on GnomeHandler startup.
14333
14334 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
14335
14336         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
14337           first call base before processing the event. Fixes #77279
14338
14339 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
14340
14341         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
14342           that the stride for the GDI bitmap would match the stride of
14343           a DIB or a Cursor.
14344
14345 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
14346
14347         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
14348
14349 2006-01-19  Jackson Harper  <jackson@ximian.com>
14350
14351         * ComboBox.cs: Hookup the text controls keydown event so we get
14352         those when the text control has the focus.
14353
14354 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14355
14356         * Label.cs: Now using the base events instead of defining new ones;
14357           this allows us to just call the base properties without having to
14358           duplicate all base property logic 
14359
14360 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14361
14362         * Label.cs: A label by default is not a tabstop (Fixes one of our
14363           failing nunit tests)
14364
14365 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
14366
14367         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
14368         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
14369
14370 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
14371
14372         * Cursor.cs: Reimplemented creating cursor bitmaps without using
14373           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
14374           This fixes #77218
14375         * XplatUIWin32.cs: 
14376           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
14377             constructor creates images that can't be saved. Part of the fix
14378             for #76103
14379           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
14380           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
14381             bug fix for handling window state in forms properly)
14382
14383 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14384
14385         * ThemeGtk.cs: Simplify ScrollBar drawing
14386
14387 2006-01-18  Jackson Harper  <jackson@ximian.com>
14388
14389         * Splitter.cs: Set the default dock style for the splitter control
14390         in the constructor.
14391
14392 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14393
14394         * ThemeGtk.cs: Corrected StateType and ShadowType for
14395           gtk_paint_box
14396
14397 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14398
14399         * Control.cs: Make use of Theme.DoubleBufferingSupported
14400         * ThemeGtk.cs:
14401           - Added drawing for flat style buttons
14402           - Added ScrollBar drawing
14403
14404 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
14405
14406         * ThemeClearlooks.cs: Removed some unneeded code.
14407         * ThemeGtk.cs: First part of ThemeGtk enhancements.
14408
14409 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14410
14411         * LinkLabel.cs: We need to update the hover drawing when
14412           leaving the control as well.
14413
14414 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
14415
14416         * DataGrid.cs: Clicking on non empty areas in the columns
14417            area was giving an exception
14418
14419 2006-01-17  Jackson Harper  <jackson@ximian.com>
14420
14421         * ThemeWin32Classic.cs:
14422         * ListView.cs: Do not draw/clip the headers when the header style
14423         is None.
14424
14425 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14426
14427         * DataGrid.cs: Fixes 77260
14428         
14429 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
14430
14431         * DataGrid.cs: Clicking on a column on a empty grid was giving
14432           an exception
14433
14434 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
14435
14436         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
14437           or any keypress will crash the grid.
14438
14439 2006-01-17  Mike Kestner  <mkestner@novell.com>
14440
14441         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
14442         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
14443         invisible/previously-visible items.
14444         [Fixes #76909]
14445
14446 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
14447
14448         * ThemeClearlooks.cs:
14449         - Added CL_Draw_Button method; now other theme controls that are 
14450           not derived from button or do not have a button can draw buttons
14451           too
14452         - Updated ComboBox drawing
14453         - Beautified RadioButton drawing
14454         - Corrected drawing of bottom and left tabs
14455         - Beautified DateTimePicker and MonthCalendar
14456         - Added CPDrawButton and CPDrawRadioButton
14457
14458 2006-01-16  Jackson Harper  <jackson@ximian.com>
14459
14460         * ComboBox.cs: Set the initial value of the scrollbar to the
14461         current index. Reduce the numbers of refreshs and IndexOfs called.
14462
14463 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
14464
14465         * FileDialog.cs: When the file listview is focused hitting the
14466           backspace key moves the fileview to the parent directory
14467
14468 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
14469
14470         * Form.cs: 
14471           - Added RecreateHandle call when changing taskbar visibility to 
14472             trigger reparenting in Win32 driver (Fixes #75719)
14473           - If a window has minimize or maximize buttons, it cannot have
14474             a help button
14475         * XplatUIWin32.cs:
14476           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
14477             the toplevel form with FosterParent (A toolwindow not on the
14478             taskbar) (Fixes #75719)
14479           - Made FosterParent a toolwindow
14480
14481 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14482
14483         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
14484
14485 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14486
14487         * ToolTip.cs: If SetToolTip is called from a control and the mouse
14488           is currently over that control, make sure that tooltip_window.Text
14489           gets updated
14490
14491 2006-01-13  Mike Kestner  <mkestner@novell.com>
14492
14493         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
14494
14495 2006-01-13  Jackson Harper  <jackson@ximian.com>
14496
14497         * TreeView.cs: On MS GetNodeAt never actually factors in the X
14498         value passed.  Also redraw the selected node when we recieve
14499         focus, so tabbing between trees works correctly.
14500
14501 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
14502
14503         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
14504           ~/.gconf/%gconf-tree.xml, so use
14505           .gconf/desktop/gnome/interface/%gconf.xml
14506
14507 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
14508
14509         * TextControl.cs: Draw text in gray if control is disabled
14510
14511 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
14512
14513         * TreeView.cs: Draw the focus rectangle outside the highlight, to
14514           make sure it's always visible. Fixes #76680.
14515
14516 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
14517
14518         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
14519
14520 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
14521
14522         * PageSetupDialog.cs: Added.
14523         * PrintDialog.cs: Attributes.
14524         * PrintPreviewControl.cs: Updates.
14525         * PrintPreviewDialog.cs: Updates.
14526         
14527 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14528
14529         * Control.cs: Undid my selection check fix, since it's not needed
14530         * TextBoxBase.cs:
14531           - Now considering the presence of hscroll/vscroll when sizing
14532             vscroll/hscroll respectively. Fixed bug #77077
14533           - Added Left/Up/Down/Right to IsInputKey list to prevent
14534             ContainerControl from stealing them. This fixes what I broke
14535             with my last checkin.
14536
14537 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
14538
14539         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
14540           I finally understand how the property can be set without a setter :-)
14541
14542 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14543
14544         * Application.cs:
14545           - Switched RunLoop to use static Message.Create to create a 
14546             Message object
14547           - Added PreProcessMessage call in runloop for keyboard events; this
14548             is part of the fix for #77219, I overlooked this originally in the
14549             MSDN doc for PreProcessMessage
14550         * Control.cs:
14551           - Removed call to PreProcessMessage from handling of keyboard 
14552             messages; it's supposed to be done in the message pump
14553           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
14554             per MSDN documentation.
14555           - IsInputChar: All chars are input chars by default; removed the 
14556             parent calling chain, MS does not document that
14557           - PreProcessMessage: If IsInputChar is true, we want to return false
14558             to allow dispatching of the message
14559           - When selecting the next control, now also check that we're not
14560             selecting ourselves again and therefore return a false positive.
14561         * TextBoxBase.cs:
14562           - Tried to match return values for IsInputKey and ProcessDialogKey
14563             to what MS returns; moved processing of our special keys outside
14564             ProcessDialogKey since MS does not seem to return true on those.
14565           - Moved code that previously was in ProcessDialogKey into new private
14566             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
14567           - Reworked handling of WM_CHAR to not have to duplicate code from
14568             Control.cs anymore, instead we simply call down to base.
14569            
14570 2006-01-12  Jackson Harper  <jackson@ximian.com>
14571
14572         * ComboBox.cs: We always need to refresh the text area when
14573         EndUpdate is called. Fixes the combobox in the file dialog.
14574         * Control.cs: Don't create the creator_thread until the controls
14575         handle is created.  Also in InvokeRequired we check if the
14576         creator_thread is null. This gives the effect of InvokeRequired
14577         returning true if the controls handle is not created yet, and
14578         matches MS.
14579
14580 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14581
14582         * XplatUI.cs:
14583           - Added StartLoop() driver method. This is used to allow drivers to
14584             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
14585             loop for a particular thread
14586           - Added EndLoop() driver method. This is called once the message
14587             pump for the thread is shut down
14588           - Added SupportsTransparency method to allow the driver to indicate
14589             opacity support for windows
14590         * Form.cs:
14591           - Removed TODO attribute, completed AllowTransparency property
14592           - Added documented logic to Opacity
14593         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
14594           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
14595           versions of CompatibleTextRendering
14596         * X11Structs.cs: Added opacity atom to our atom enumeration
14597         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
14598           of a form might be set before it's reparented by the WM, and we need
14599           the opacity value without calling up to Form)
14600         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
14601           SupportsTransparency() driver methods
14602         * Application.cs: Now calling StartLoop and EndLoop driver methods
14603         * XplatUIX11.cs:
14604           - Added opacity atom registration
14605           - Added StartLoop()/EndLoop() methods. They're empty right now but
14606             will need to get implemented when we switch to a per-thread queue
14607           - Implemented SupportsTransparency() method
14608           - Implemented SetWindowTransparency() method
14609           - Added support for setting the opacity value when a window is
14610             reparented (since the opacity needs to be set on the WM frame)
14611         * XplatUIOSX.cs, XplatUIWin32.cs:
14612           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
14613
14614 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
14615
14616         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
14617
14618 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
14619
14620         * FileDialog.cs: Added ToolTip for MWFFileView
14621         * MimeIcon.cs: Rewrote GnomeHandler.
14622           - Get currently used gnome icon theme from
14623             ($HOME)/.gconf/%gconf-tree.xml
14624           - Make use of inherited icon themes
14625           - Support SVG icon themes like Tango via librsvg
14626
14627 2006-01-12  Miguel de Icaza  <miguel@novell.com>
14628
14629         Revert's Jackson's revert which broke 2.0 builds.   Fix both
14630         builds. 
14631         
14632         * Application.cs: Move the use_compatible_text_rendering outside
14633         the NET_2_0 define.  If we ever need to use the
14634         use_compatible_text_rendering on the individual controls they will
14635         access the variable from the common shared code paths.
14636
14637 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
14638
14639         * XplatUI.cs:
14640           - Added more granular debug options
14641           - Added method to print both window text and id
14642           - Switched debug output to use new Window() debug method
14643           - Added IsEnabled() driver method
14644           - Added EnableWindow() driver method
14645         * Form.cs:
14646           - Removed end_modal; no longer needed, new loop handles termination
14647             via 'closing' variable
14648           - If form is modal, setting DialogResult will now initiate loop
14649             termination via 'closing' variable
14650           - Added support for is_enabled/WS_DISABLED to CreateParams
14651           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
14652             does all the work
14653           - Removed code that's now in RunLoop from ShowDialog()
14654           - Added various documented sanity checks to ShowDialog()
14655           - Added handling of WM_DESTROY message; we set 'closing' on getting
14656             the message to indicate the message pump to terminate
14657           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
14658             send by the Application.ExitThread method. (We send the message
14659             to destroy the window after all other events have been
14660             processed through the queue, instead of destroying the handle 
14661             directly)
14662           - Moved code from Close() method to WM_CLOSE handler; added logic
14663             to only send close-related events if the form is not displayed
14664             modal
14665         * Splitter.cs (..ctor): Fixed typo in resource name
14666         * Control.cs:
14667           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
14668             brush now
14669           - set_Cursor: Now only setting calling into XplatUI if the handle for
14670             the control is already created; this avoids implict handle creation
14671             or crashes if it's not created
14672           - set_Enabled: Now setting the enabled state via the new driver method
14673             instead of just tracking it
14674           - CreateParams: Added logic to set WS_DISABLED based on enabled state
14675           - CreateControl: Reordered event firing and method calls to more
14676             closely fire events in the order MS does. Now setting the
14677             enabled state in the driver when creating the control.
14678           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
14679             match MS order
14680         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
14681           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
14682         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
14683         * Hwnd.cs:
14684           - Added tracking of window enabled state (get_Enabled/set_Enabled)
14685           - Added EnabledHwnd property to easily allow a driver to find the
14686             handle of the first enabled window in the parent chain (this is
14687             used by drivers to pass up input events of disabled windows)
14688         * XplatUIDriver.cs: Added IsEnabled() method
14689         * Application.cs:
14690           - Removed crude and obsolete exiting tracking variable
14691           - Removed internal ModalRun(); replaced by RunLoop()
14692           - Implemented private CloseForms() method to allow closing all 
14693             windows owned by a particular (or all) threads
14694           - Exit() now properly closes all windows without forcing the message
14695             pump to quit
14696           - Removed obsolete InternalExit() method
14697           - Changed Run() methods to use new RunLoop() message pump
14698           - Implemented new RunLoop() method for both modal and non-modal forms
14699         * CommonDialog.cs:
14700           - get_CreateParams: Added setting of WS_DISABLED
14701           - Simplified ShowDialog(); now all the work is done in RunLoop(),
14702             invoked via Form.ShowDialog()
14703         * NativeWindow.cs: We don't remove the window from the collection when
14704           the handle is destroyed; there might still be messages for it in the
14705           queue (mainly the resulting WM_DESTROY); instead it will be removed
14706           when Control calls InvalidateHandle in the WM_DESTROY handler
14707         * XplatUIX11.cs:
14708           - CreateWindow: Added logic to handle the WS_DISABLED window style
14709           - EnableWindow: Implemented based on Hwnd.Enabled
14710           - GetMessage: Reset PostQuitState so the method can be called again
14711           - Implemented support for disabled windows (passing messages to the
14712             first enabled parent) in handling all input messages
14713           - Added optimizations for handling Expose events
14714           - Implemeted new driver method IsEnabled()
14715           - Now always resetting paint pending tracking vars when we start paint
14716           - Re-implemented UpdateWindow via just sending a WM_PAINT message
14717         * XplatUIOSX.cs: Added IsEnabled method stub
14718         * XplatUIWin32.cs: Implemented new IsEnabled() method
14719
14720 2006-01-11  Jackson Harper  <jackson@ximian.com>
14721
14722         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14723         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
14724         variables a little.
14725         * ColorDialog.cs: Clear out the old form before adding the new
14726         panel.  
14727
14728 2006-01-11  Jackson Harper  <jackson@ximian.com>
14729
14730         * X11Dnd.cs: Make sure to add all the text formats when adding
14731         strings to the data object.
14732         * TreeNodeCollection.cs: When adding to a sorted tree we need to
14733         do some redrawing too.  Also change the UpdateNode to an
14734         UpdateBelow so the newly added node gets painted.
14735         
14736 2006-01-11  Miguel de Icaza  <miguel@novell.com>
14737
14738         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
14739         LinkLabel.cs, PropertyGrid.cs: Implement the
14740         UseCompatibleTextRendering property for 2.x
14741
14742         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
14743
14744 2006-01-11  Jackson Harper  <jackson@ximian.com>
14745
14746         * TreeView.cs: Use the property for setting the selected node so
14747         the correct events get raised.
14748         * TreeNode.cs: Update the tree when the fore/back colours of a
14749         node are set.
14750
14751 2006-01-10  Jackson Harper  <jackson@ximian.com>
14752
14753         * TreeView.cs: Allow setting SelectedNode to null.
14754
14755 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14756
14757         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
14758
14759 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14760
14761         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
14762
14763 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14764
14765         * PrintDialog.cs: Added attributes and set default property values.
14766
14767 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14768
14769         * PrintControllerWithStatusDialog.cs: 
14770         Added PrintControllerWithStatusDialog.
14771
14772 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14773
14774         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
14775         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
14776
14777 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
14778
14779         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
14780
14781 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14782
14783         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
14784         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
14785
14786 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
14787
14788         * MimeIcon.cs: Added internal class SVGUtil.
14789
14790 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
14791
14792         * FileDialog.cs: Don't crash if there are two files with the
14793           same name but different locations.
14794
14795 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
14796
14797         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
14798         dates across multiple month grids. Used to not highlight entire 
14799         month, but does now.
14800         
14801 2006-01-06  Jackson Harper  <jackson@ximian.com>
14802
14803         * MonthCalendar.cs: Removed DoEvents call to prevent a running
14804         message loop. Change timer intervals to numbers that seem more
14805         natural.
14806
14807 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
14808
14809         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
14810           object for location info since screen object is now implemented.
14811
14812 2006-01-05  Jackson Harper  <jackson@ximian.com>
14813
14814         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
14815         * AsyncMethodResult.cs: We no longer use a WeakReference for the
14816         AsyncMethodResult, this is because we ALWAYS want the
14817         ManualResetEvent to get set.
14818         * Control.cs: When disposing use an async invoke to call shutdown
14819         code, so that thigns don't block on the finalizer thread.  Also
14820         check if we even have a message loop before trying to send
14821         messages, if we don't then don't bother sending messages.
14822         - No more weak references for async methods
14823         * XplatUIDriver.cs: No more weak references for async methods.
14824
14825 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14826
14827         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
14828           returns two FontFamily with the same name
14829
14830 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14831
14832         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
14833           drawing disabled text. Instead using the ColorGrayText color
14834
14835 2006-01-04  Jackson Harper  <jackson@ximian.com>
14836
14837         * TreeNode.cs: redraw the node when its image index is changed.
14838
14839 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14840
14841         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
14842           time I checked there are no others like it.
14843
14844 2006-01-04  Jackson Harper  <jackson@ximian.com>
14845
14846         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
14847         this gives the behavoir I was looking for.
14848         * Control.cs: Special case Invoking EventHandlers, this matches MS
14849         and fixes part of bug #76326.
14850
14851 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14852
14853         * ThemeClearlooks.cs, FileDialog.cs:
14854           - Reflect the latest Theme class changes
14855           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
14856             with DateTime
14857             
14858 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14859
14860         * Theme.cs: Cache UI resource images and resize them if needed
14861
14862 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14863
14864         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
14865           is called. This fixes the crash in Nexxia when setting the font
14866           attributes in the chat. [However, RTF needs a look-over to make sure
14867           that all SelectionXXX methods handle the special case that selection
14868           is empty and therefore the change must be applied to all text starting
14869           at the cursor/selection start]
14870
14871 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
14872
14873         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14874           XplatUIOSX.cs: Added SendMessage and PostMessage methods
14875         * X11Keyboard.cs: Switched to new way of calling PostMessage
14876
14877 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14878
14879         * Theme.cs: Added theme interface for images to allow the theme to
14880           control what images are used for things like FileDialog, MessageBox
14881           icons, etc.
14882         * MessageBox.cs: Now uses the new Theme icon/image interfaces
14883
14884 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
14885
14886         * FileDialog.cs:
14887           - Removed some dead code
14888           - Opening a recently used file does work now
14889           - Small UI enhancements
14890           - Refactoring
14891
14892 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14893
14894         * FileDialog.cs: Forgot too add __MonoCS__
14895
14896 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14897
14898         * FileDialog.cs: We are able to read recently used files now let's
14899           go on and write them.
14900
14901 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
14902
14903         * FileDialog.cs: Breathe some life into "last open"/"recently used"
14904           button
14905         * MimeIcon.cs: Do a check for the top level media type also
14906
14907 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14908
14909         * ThemeClearlooks.cs:
14910           - Added CPDrawStringDisabled
14911           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
14912             some chars if the text doesn't fit into text_rect
14913           - DrawListViewItem: If View = View.LargeIcon center the image;
14914             rewrote the drawing of ListViewItem.Text if View = 
14915             View.LargeIcon
14916
14917 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14918
14919         * MimeIcon.cs: Use default KDE icon theme if there is no
14920           "48x48" directory for the current icon theme, fixes #77114
14921         * Mime.cs: Disable not working and actually not used code. 
14922         * ThemeWin32Classic.cs:
14923           - Replace "new SolidBrush" in GetControlBackBrush and
14924             GetControlForeBrush with ResPool.GetSolidBrush
14925           - Changed DrawListViewItem from private to protected virtual
14926         * FileDialog.cs:
14927           - Added form.MaximizeBox = true
14928           - Don't throw an exception if there is a broken symbolic link
14929
14930 2005-12-23  Jackson Harper  <jackson@ximian.com>
14931
14932         * TabControl.cs: Give the panels focus, keyboard navigation is
14933         fixed so this works correctly now.
14934         - We need these key events also.
14935         * ToolBar.cs: Remove some of the poor mans double buffering.
14936         
14937 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
14938
14939         * ComboBox.cs: The internal TextBox now returns the focus.
14940
14941 2005-12-23  Jackson Harper  <jackson@ximian.com>
14942
14943         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
14944
14945 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14946
14947         * Control.cs: Removed debug code
14948         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
14949           implicit children
14950
14951 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
14952
14953         * Control.cs: When creating the control, update the Z-order after
14954           all it's children are created, too. (Fixes nexxia not showing
14955           picturebox bug)
14956
14957 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14958
14959         * Control.cs: Do not update the anchoring distances if layout is
14960           suspended, instead do it once layout is resumed
14961
14962 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
14963
14964         * Control.cs: 
14965           - After many hours of debugging, for both Jackson and
14966             myself, it turns out that it helps to set the parent of a control
14967             if you want to actually see it onscreen. In the spirit of that
14968             discovery, we're now setting the parent of the control and
14969             it's children when the control's handle is created. This fix
14970             will make Lutz Roeder's Reflector run happily. 
14971           - now just creating the handle instead of the whole control when
14972             getting a graphics context for the control.
14973
14974 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14975
14976         * ScrollableControl.cs: When calculating the canvas, don't consider
14977           the scrollbar widths. Instead, predict if horizontal scrollbar
14978           will affect canvas when deciding on vertical display and vice versa.
14979
14980 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14981
14982         * RichTextBox.cs: Set default RTF font for documents that don't
14983           have a font table (Fixes #77076)
14984
14985 2005-12-22  Jackson Harper  <jackson@ximian.com>
14986
14987         * TextBoxBase.cs: It's difficult to do, but you can have an empty
14988         clipboard. This prevents a NullRef in that case.
14989         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
14990         clipboard. PRIMARY is for the currently selected text only. (We
14991         should implement PRIMARY at some point.
14992
14993 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14994
14995         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
14996           a Unicode function with a structure that was defined in Ansi way.
14997           This fixes #76942.
14998
14999 2005-12-21  Jackson Harper  <jackson@ximian.com>
15000
15001         * StatusBar.cs: Statusbar handles its fore/back colours on it's
15002         on. Because thats how it rolls. (and this avoids it using ambient
15003         colours).
15004         * ThemeWin32Classic.cs: Use the proper back color for filling.
15005         * Menu.cs: Use the system menu bar color for drawing menu
15006         bars. Using the window back color will bring ambient colours into
15007         the picture.
15008
15009 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
15010
15011         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
15012           Bitmaps were created and not disposed.
15013
15014 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15015
15016         * Control.cs (CreateControl): Don't do anything if the control is
15017           already created, otherwise we'd fire the OnCreated event more than
15018           once
15019
15020 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15021
15022         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
15023           will always match. Instead return -1. Fixes #76464.
15024
15025 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
15026
15027         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
15028           neither the beginning nor the end of the line (Fixes bug #76479)
15029
15030 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
15031
15032         * Control.cs:
15033           - ControlNativeWindow.ControlFromHandle(): Now handling situation
15034             where handle is invalid
15035           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
15036             instead of slower linear search
15037         * NativeWindow.cs: Don't remove the window from the hashtable until
15038           after the driver has destroyed it (since the driver might use
15039           Control.FromHandle to lookup the control object
15040         * Hwnd.cs: Added DestroyPending property to track if a window is 
15041           already destroyed as far as the driver is concerned and only hasn't
15042           yet notified the control
15043         * XplatUIX11.cs:
15044           - Activate(): Check if the window is still valid before using the 
15045             handle
15046           - Implemented DestroyChildWindow() method to mark child windows as
15047             destroyed when a window is destroyed. This prevents situations 
15048             where we might call an X method based on queued events for a
15049             window that already has been destroyed but we haven't yet pulled
15050             the destroy method from the queue.
15051           - Added a call to the new DestroyChildWindow() method to the drivers
15052             DestroyWindow code. Also now marking the destroyed window itself
15053             as pending
15054
15055 2005-12-20  Jackson Harper  <jackson@ximian.com>
15056
15057         * StatusBar.cs:
15058         * StatusBarPanel.cs: Don't calculate panel sizes on draw
15059         anymore. Just do them when needed, also track the rects of panels
15060         so that we can optimize refreshing more in the future.
15061
15062 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
15063
15064         * ColorDialog.cs: Fixed focus drawing in small color controls
15065
15066 2005-12-19  Jackson Harper  <jackson@ximian.com>
15067
15068         * InternalWindowManager.cs:
15069         * MdiWindowManager.cs: Cleanup some coordinate system changes so
15070         moving windows works properly.
15071
15072 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
15073
15074         * Control.cs: 
15075           - Removed call to InitLayout() from SetBoundsCore(); doc says
15076             it's only called when a control is added to a container
15077           - Split InitLayout logic, moved to separate UpdateDistances() method
15078             since we need to perform those calculations more often than just
15079             when adding the control to a container. (Needed to fix #77022)
15080           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
15081           - Reduced the OnBindingContextChanged events count, don't send them
15082             unless the control is created, we still aren't totally matching
15083             MS, but I can't quite figure out some of their rules
15084
15085 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15086
15087         * ThemeClearlooks.cs: Corrected distance between ProgressBar
15088           stripes
15089
15090 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15091
15092         * ThemeClearlooks.cs:
15093           - Updated ProgressBar drawing
15094           - Corrected drawing of ScrollBars and scroll buttons
15095           - Some temporary fixes for minor pixel artefacts
15096
15097 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
15098
15099         * Control.cs:
15100           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
15101             cause events to be sent in the same order as MS does.
15102           - Added ChangeParent() method to trigger various OnXXXChanged events
15103             that need to be fired when a parent changes (This is a reworking
15104             of the patch from r54254, with the X11 errors fixed)
15105           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
15106             since on MS we get OnLayoutChanged events when calling Clear()
15107           - Changed Enabled property to consider parent state as well, if a
15108             parent is not enabled, the control will not be either
15109           - Changed Parent property to simply call Controls.Add() since that
15110             now does all the work required, this way we avoid code duplication
15111           - Threw in a few OnBindingsContextChanged calls to try and match
15112             when MS sends them. We seem to send a few too many, though.
15113           - Added call to CreateControl when adding the control to a parent.
15114             We were never calling CreateControl. Still needs some work, in
15115             some places we treat HandleCreated and ControlCreated as equal, 
15116             which is wrong
15117           - Removed obsolete commented out code from UpdateZOrder()
15118
15119 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
15120
15121         * ThemeClearlooks.cs: Updated TrackBar drawing.
15122
15123 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15124
15125         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
15126
15127 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
15128
15129         * FileDialog.cs: Add the Help button and the open readonly
15130           checkbox only if needed
15131
15132 2005-12-16  Jackson Harper  <jackson@ximian.com>
15133
15134         * Control.cs: Make sure we have an active menu before trying to
15135         process commands on it. Prevents menu-less forms from crashing
15136         when Alt is pressed.
15137         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
15138         Dieter Bremes.
15139         * RichTextBox.cs: Expand statement to help out gmcs and fix the
15140         2.0 build.
15141
15142 2005-12-16  Jackson Harper  <jackson@ximian.com>
15143
15144         * InternalWindowManager.cs: Don't translate tool windows screen
15145         coordinates. This fixes windows 'bouncing' around when being moved.
15146
15147 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15148
15149         * TextBoxBase.cs:
15150           - MaxLength now treats 2^31-1 equal to unlimited length (this is
15151             not quite MS compatible, MS uses that number only for single line
15152             and 2^32-1 for multi-line, but I figure it won't hurt keeping
15153             the limit at 2GB)
15154           - Now enforcing the MaxLength limit when entering characters
15155           - Added argument to internal Paste() method to track if it's called
15156             from programatically or via keyboard, since keyboard driven pastes
15157             need to enforce max-length
15158           - Added logic to Paste to only paste as many chars as MaxLength 
15159             allows
15160         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
15161         * TextControl.cs:
15162           - Added Length property to return number of characters in document
15163           - Added private CharCount property which only tracks actual chars
15164             in the document (no linefeeds) and fires event when CharCount
15165             changes
15166           - Added tracking of character count to all methods that alter it
15167           - Added LengthChanged event to allow applications to subscribe
15168             to any changes to the document
15169
15170 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
15171
15172         * TextBox.cs: 
15173           - Removed local password_char field (moved to TextBoxBase)
15174           - Now setting the document's password var when password is
15175             set
15176         * TextBoxBase.cs:
15177           - Added password_char field (needed here so MultiLine can
15178             access it)
15179           - Added logic to MultiLine property setter to set the document's
15180             variable when password display is allowed
15181           - Removed debug code and made some debug code conditional
15182         * TextControl.cs:
15183           - Added RecalculatePasswordLine() method to handle special password
15184             char only lines
15185           - Added PasswordChar property, also added related tracking vars
15186           - Draw() method now uses local text var for grabbing text to draw,
15187             this var is set to line.text unless we're doing password display,
15188             then it is set to the pre-generated all-password-chars line
15189           - Added calling RecalculatePasswordLine() method for password lines
15190
15191 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15192
15193         * Hwnd.cs: 
15194           - Added Reparented property to allow tracking of Window Manager
15195             reparenting actions (which affect X/Y calculations of toplevel 
15196             windows)
15197           - Made ToString() print window handles in hex
15198         * XplatUIX11.cs:
15199           - AddConfigureNotify(): Now uses reparented state off Hwnd to
15200             determine if X/Y needs offsetting
15201           - AddConfigureNotify(): Fixed offset calculations
15202           - Now adds ReparentNotify messages into the queue
15203           - Now processes ReparentNotify messages and causes a 
15204             WM_WINDOWPOSCHANGED message to be sent upstream if a window
15205             is reparented (as most likely it's X/Y coordinates are changed
15206             due to that)
15207
15208 2005-12-14  Jackson Harper  <jackson@ximian.com>
15209
15210         * XplatUIX11.cs: Tool windows still need to respek focus.
15211
15212 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
15213
15214         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
15215           have a working release
15216
15217 2005-12-13  Jackson Harper  <jackson@ximian.com>
15218
15219         * Form.cs: Update styles after setting the border style regardless
15220         of whether or not the window is using a window manager.
15221
15222 2005-12-13  Jackson Harper  <jackson@ximian.com>
15223
15224         * Form.cs: We now hook into an internal window manager instead of just an
15225         MDI subsystem, this is so we can have properly behaving tool windows.
15226         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
15227         * InternalWindowManager.cs: New internal class that acts as a
15228         window manager for tool windows and as a base for mdi windows.
15229         * MdiWindowManager.cs: New class that acts as a window manager for
15230         mdi windows.
15231
15232 2005-12-12  Jackson Harper  <jackson@ximian.com>
15233
15234         * Control.cs: Updates so we match behavoir for for implicit
15235         controls. Fixes explosions in MDI.
15236
15237 2005-12-12  Jackson Harper  <jackson@ximian.com>
15238
15239         * Control.cs: Implement Invalidate (Region).
15240
15241 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
15242
15243         * Control.cs: 
15244           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
15245             the same events as MS does. MS fires events for each property 
15246             except, for unknown reasons, Cursor, when the control is reparented. 
15247             I can't seem to totally match add/remove since MS also fires some 
15248             VisibleChanged events, which makes no sense. Consolidated the
15249             parenting code into a separate method so it can be called from
15250             both Add and Remove. set_Parent no longer needs any special logic
15251             as it calls the parent's add method which implicitly fires
15252             all events
15253           - Removed some obsolete code and debug output
15254           - Enabled state is inherited from parents, if this is enabled
15255
15256 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
15257
15258         * Form.cs: Removed commented out code
15259
15260 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
15261
15262         * Control.cs:
15263           - Added internal version of Invoke, with additional argument 
15264             indicating if we're calling it from a Dispose() handler. That
15265             way we can avoid BeginInvoke throwing an exception if we're
15266             calling for an already destroyed window.
15267           - Added a dispose argument to BeginInvokeInternal, and made the
15268             check if a valid window handle chain exists conditional on
15269             it not being a dispose call
15270           - Removed code in DestroyHandle to destroy our children. Since we
15271             now handle the WM_DESTROY message we will catch all our children
15272             being destroyed.
15273           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
15274         * Form.cs:
15275           - Added a field to track the application context of the form.
15276           - No need to set closing variable as response to WM_CLOSE, instead
15277             we destroy the window. We also call PostQuitMessage if the form
15278             has an application context (which makes it the main app form,
15279             which, when closed terminates the app)
15280         * XplatUI.cs:
15281           - Dropped Exit() method, it's naming was confusing
15282           - Added PostQuitMessage() which causes GetMessage to return false
15283             once the message queue is empty
15284         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
15285           PostQuitMessage()
15286         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
15287           no longer a valid XplatUI method, but left it in since it's used
15288           internally. Added empty PostQuitMessage() method.
15289         * MenuAPI.cs: Replaced call to Exit() with call to
15290           PostQuitMessage, even though this is probably no longer needed.
15291         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
15292         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
15293         * Application.cs:
15294           - Replaced call to XplatUI.Exit() with PostQuitMessage()
15295           - Removed old debug code that would call XplatUI for exception
15296             display, enabled standard exception handling (Still not enabled
15297             though, until NativeWindow's ExternalExceptionHandler define
15298             is removed
15299         * NativeWindow.cs:
15300           - Added internal method to allow control to update NativeWindow
15301             after a window has been destroyed
15302           - Added handling of already destroyed windows when calling i
15303             DestroyWindow
15304           - Added removal of handle from list on ReleaseHandle
15305         * XplatUIX11.cs:
15306           - Dropped GetMessageResult var and related code
15307           - Added PostQuitState to field to track if PostQuitMessage has been
15308             called
15309           - Dropped Exit() method
15310           - Added PostQuitMessage() method
15311           - GetMessage now will return false if PostQuitState is set and no
15312             more messages are in the queue.
15313           - Expose handler will no longer generate WM_PAINT messages if we are
15314             in PostQuitState since it's very likely any windows have already
15315             been destroyed, and since Hwnd won't get updated until we have
15316             processed the DestroyNotify we'd be causing X errors.
15317         
15318 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15319
15320         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
15321           Thanks to Mike for pointing out the err of my ways.
15322
15323 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15324
15325         * Control.cs(PreProcessMessage): Moved menu handling back, but
15326           after all other key handling, to match MS (who handles Menu in
15327           DefWndProc)
15328         * Menu.cs (WndProc): Removed my brainfart
15329
15330 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15331
15332         * Control.cs(PreProcessMessage): Removed special menu handling 
15333         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
15334
15335 2005-12-07  Mike Kestner  <mkestner@novell.com>
15336
15337         * Control.cs : special case SYSKEYUP so that we can adjust keynav
15338         state according in tracker.
15339         * Menu.cs : promote tracker field to base class and provide a tracker
15340         lookup capability.  Add/Remove shortcuts dynamically if the top menu
15341         has a tracker. Unparent items that are removed from the collection.
15342         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
15343         * Theme*.cs: add always_show_hotkeys field to support configurability
15344         of mnemonic display.  win32 doesn't show mnemonics until Alt is
15345         pressed.
15346
15347 2005-12-07  Jackson Harper  <jackson@ximian.com>
15348
15349         * MdiChildContext.cs: Use Control.ResetCursor.
15350         * Control.cs: ResetCursor needs to set the property so that the
15351         correct XplatUI call gets made.
15352
15353 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15354
15355         * Control.cs: More fixes to make our key events match MS. We
15356           were not setting the modifier state on KeyData, and we were
15357           not generating any events when Alt was pressed with a key
15358           since handling of WM_SYSxxx was missing for the OnKey methods.
15359
15360 2005-12-07  Jackson Harper  <jackson@ximian.com>
15361
15362         * MdiChildContext.cs: reenable the sizing code.
15363         - When the mouse leaves a window reset its cursor.
15364
15365 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15366
15367         * ThemeClearlooks.cs: Reflect latest Hwnd changes
15368
15369 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
15370
15371         * Hwnd.cs: Now using the theme 3d bordersize to calculate
15372           widths of Fixed3D borders
15373
15374 2005-12-07  Jackson Harper  <jackson@ximian.com>
15375
15376         * MdiClient.cs: Fix warnings. Earn Mike's love.
15377
15378 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
15379
15380         * ThemeClearlooks.cs:
15381           - Adjusted mouse over button color
15382           - Added first parts of CheckBox drawing
15383           - Added correct color for selected text background
15384           - Fixed ComboBox drawing
15385           - Added CPDrawBorder3D and CPDrawBorder
15386
15387 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15388
15389         * XplatUIX11.cs: Added call to XBell for AudibleAlert
15390
15391 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
15392
15393         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
15394           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
15395           alert users via sound. We could add an enum arg with different
15396           types of alerts in the future
15397
15398 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
15399
15400         * Control.cs: Fix behaviour problems pointed out by Mike
15401
15402 2005-12-05  Mike Kestner  <mkestner@novell.com>
15403
15404         * StatusBarPanel.cs: add Invalidate method and hook it into all the
15405         prop setters.  Calls parent.Refresh for now, but could be maybe be
15406         optimized with an internal method on StatusBar at some point.
15407         [Fixes #76513]
15408
15409 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
15410
15411         * RichTextBox.cs: Implemented get_SelectionColor
15412
15413 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
15414
15415         * ThemeClearlooks.cs:
15416           - Removed dead code
15417           - Draw black button border only if button is Form.AcceptButton
15418           - Draw correct button color for pressed RadioButton if the mouse 
15419             has entered the button
15420           - Updated ProgressBar drawing!
15421           - Updated CPDrawSizeGrip drawing
15422           - Updated StatusBarPanel drawing
15423
15424 2005-12-05  Mike Kestner  <mkestner@novell.com>
15425
15426         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
15427         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
15428
15429 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
15430
15431         * ThemeClearlooks.cs: Initial check-in, activate with
15432           export MONO_THEME=clearlooks
15433         * ThemeEngine.cs: Added ThemeClearlooks
15434
15435 2005-12-03  Mike Kestner  <mkestner@novell.com>
15436
15437         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
15438         [Fixes #76897]
15439
15440 2005-12-02  Jackson Harper  <jackson@ximian.com>
15441
15442         * Form.cs: If the child form has no menu the default main menu is
15443         used as the active menu.
15444
15445 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
15446
15447         * ListBox.cs: Check if any items exist before trying to resolve 
15448           coordinates into items
15449
15450 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
15451
15452         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
15453           as the second color for the background hatch
15454
15455 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
15456
15457         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
15458         * RichTextBox.cs: FormatText position arguments are 1-based, now making
15459           sure that what we pass to FormatText is always 1-based. Fixes #76885
15460
15461 2005-11-29  Miguel de Icaza  <miguel@novell.com>
15462
15463         * NumericUpDown.cs (EndInit): When we are done initializing,
15464         reflect any updates on the UI.
15465
15466 2005-12-02  Jackson Harper  <jackson@ximian.com>
15467
15468         * ImplicitHScrollBar.cs:
15469         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
15470         their container controls.
15471         * TreeView.cs: Use the new implicit scrollbars.
15472
15473 2005-12-02  Jackson Harper  <jackson@ximian.com>
15474
15475         * TreeView.cs: Make top_node internal so the TreeNodeCollections
15476         can play with it.
15477         * TreeNodeCollection.cs: If we remove the topnode we need to
15478         update topnode to the next node in line.
15479         - When clearing nodes go through the same process as removing
15480         them, so they get depareneted and checked if they are top node.
15481
15482 2005-12-01  Jackson Harper  <jackson@ximian.com>
15483
15484         * TreeView.cs: When imagelists are used the image area is
15485         selectable as well as the text.
15486         - If there are no selected nodes select the first one.
15487         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
15488         so don't do it more then we need to.
15489
15490 2005-12-01  Jackson Harper  <jackson@ximian.com>
15491
15492         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
15493         that arrows can be scaled.
15494
15495 2005-12-01  Jackson Harper  <jackson@ximian.com>
15496
15497         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
15498         fail. Patch by Dieter Bremes
15499
15500 2005-11-30  Jackson Harper  <jackson@ximian.com>
15501
15502         * Form.cs: Property is 2.0 only
15503         * PrintDialog.cs: Signature fix.
15504
15505 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
15506
15507         * TextControl.cs: 
15508           - No longer artificially moves text 2 pixels down (now that we have
15509             borders this is no longer needed)
15510           - Added calcs for left, hanging and right indent
15511
15512 2005-11-23  Mike Kestner  <mkestner@novell.com>
15513
15514         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
15515
15516 2005-11-30  Jackson Harper  <jackson@ximian.com>
15517
15518         * MdiChildContext.cs: Set the cloned menus forms, as these don't
15519         get cloned as part of CloneMenu ().
15520         * Menu.cs: Make sure the parent of the items get set correctly
15521         when they are added.  And the owners are notified of the changes.
15522         * Form.cs: Create an ActiveMenu property, so that when MDI is used
15523         we can change the menu being displayed/handled by the form without
15524         changing the menu assosciated with the form.
15525         - Don't let Mdi children draw/handle menus.
15526         
15527 2005-11-30  Jackson Harper  <jackson@ximian.com>
15528
15529         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
15530         a MenuChanged event. Just to make the API a little more
15531         consistent.
15532         * MainMenu.cs:
15533         * MenuItem.cs: Use the new OnMenuChanged
15534         * MdiChildContext.cs: Handle menu merging.
15535         * Form.cs: Implement MergedMenu.
15536         
15537 2005-11-30  Jackson Harper  <jackson@ximian.com>
15538
15539         * Menu.cs: We were misusing Add. Add goes behind the specified
15540         index according to the docs, and does not replace the specified
15541         index. So I added an Insert method.
15542
15543 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
15544
15545         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
15546           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
15547           is for Jackson
15548         * RichTextBox.cs: Added calls to base for DnD events
15549
15550 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
15551
15552         * TextControl.cs:
15553           - Fixed drag-selection related crash; style fixes
15554           - Implemented undo class
15555             o Implemented method to capture document state for specified
15556               range in document tree
15557             o Implemented method to restore captured document state
15558             o Implemented cursor tracking
15559             o Implemented basic undo stack
15560           - Added undo cursor tracking to methods altering cursor location
15561           - Added undo tracking to selection deletion (still missing
15562             other text-altering hookups)
15563         * RichTextBox.cs:
15564           - Added SelectionLength property
15565           - Implemented CanPaste()
15566           - Implemented Paste()
15567           - Added missing protected methods
15568           - Fixed RTF->Document conversion; now uses font index 0 and color 
15569             index 0 as the default font for the parsed text
15570           - Fixed RTF<->Document font size translation
15571           - Fixed RTF generation, now properly handles cross-tag boundaries
15572             for single line selection
15573           - No longer always appends blank line to generated RTF
15574           - Removed TODOs
15575           - Added missing attributes
15576           - Hooked up undo-related methods
15577         * TextBoxBase.cs:
15578           - Implemented Copy()
15579           - Implemented Paste()
15580           - Implemented Cut()
15581           - Fixed caret mis-behaviour on backspace across line-boundaries
15582
15583 2005-11-29  Jackson Harper  <jackson@ximian.com>
15584
15585         * MdiClient.cs: Add a method for activating mdi children. Very
15586         basic right now. I imagine someday it might need more girth.
15587         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
15588         children windows names are added to the menu item.
15589         * ThemeWin32Classic.cs: Draw the arrow if the item is an
15590         mdilist. This happens regardless of whether or not there are any
15591         mdi windows to see in the list, and according to my tests happens
15592         before the items are even added. Also happens if there isn't even
15593         an mdi client to get windows from.
15594
15595 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
15596
15597         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
15598         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
15599
15600 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
15601
15602         * DataGridTableStyle.cs:
15603           - Create always the styles for the missing columns even if they are
15604             provided by the user (not default table style)
15605         * DataGrid.cs:
15606           - Fixes bug 76770
15607           - Fixes SetDataBinding (always re-attach source)
15608           - Fixes SetNewDataSource (only clear styles if they are not for 
15609             this source)
15610          -  Expands OnTableStylesCollectionChanged to handle style refresh 
15611             and remove properly
15612
15613 2005-11-29  Jackson Harper  <jackson@ximian.com>
15614
15615         * FileDialog.cs: Implement missing bits, remove some dead
15616         code.
15617         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
15618         creation of the panel so that the options set on the dialog are
15619         seen when the panel is created.
15620         * TreeView.cs: raise a click when items are clicked.
15621         
15622 2005-11-29  Jackson Harper  <jackson@ximian.com>
15623
15624         * MdiClient.cs: Pass some signature methods through to base.
15625
15626 2005-11-28  Jackson Harper  <jackson@ximian.com>
15627
15628         * ListView.cs: Raise the click event when items are clicked.
15629
15630 2005-11-28  Jackson Harper  <jackson@ximian.com>
15631
15632         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
15633         a nullref.
15634
15635 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
15636
15637         * ThemeNice.cs: - Removed 1 pixel bitmaps
15638           - Use SmoothingMode.AntiAlias where it makes sense
15639             (ScrollButton arrow for example)
15640           - Enhanced Button focus drawing
15641           - Fixed ComboBox drawing (no artefacts anymore, focus
15642             rectangle is back again, reduced size of ComboButton, etc.)
15643           - Fixed RadioButton focus drawing for Appearence.Button
15644           - Slight ScrollButton redesign
15645           - Some LinearGradientBrush size fixes
15646           - GroupBoxes have now rounded edges
15647           - Fixed StatusBar drawing
15648
15649 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
15650
15651         * ThemeNice.cs: - Remove dead code
15652           - use correct background colors for menus, etc.
15653           - Fake pixel drawing with 1 pixel bitmaps
15654
15655 2005-11-24  Jackson Harper  <jackson@ximian.com>
15656
15657         * MdiClient.cs: Size the scrollbars when resizing the window.
15658         - Resize the maximized windows when the client is resized
15659         * Form.cs: Make the child context available
15660         
15661 2005-11-23  Jackson Harper  <jackson@ximian.com>
15662
15663         * MdiChildContext.cs: Don't size windows if they are maximized.
15664
15665 2005-11-23  Mike Kestner  <mkestner@novell.com>
15666
15667         * ContextMenu.cs: use MenuTracker.
15668         * Control.cs: remove menu handle usage.
15669         * Form.cs: remove menu handle usage.
15670         * Hwnd.cs: remove menu handle usage.
15671         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
15672         motion and clicks to the new Tracker handlers.
15673         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
15674         and handle usage.
15675         * MenuAPI.cs: refactored to combine popup and menubar event handling.
15676         Killed the MENU and MENUITEM data types and associated collections
15677         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
15678         MenuTracker class that exposes the leftovers from the old MenuAPI
15679         static methods. Restructured Capture handling so that only one grab is
15680         done for the entire menu hierarchy instead of handing off grabs to
15681         submenus. Tracker now has an invisible control to Capture when active.
15682         * MenuItem.cs: add sizing accessors, kill Create
15683         and handle usage.
15684         * Theme.cs: remove menu handle and MENU(ITEM) usage.
15685         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
15686         MENU(ITEM). remove menu handle usage, use Menu directly.
15687         * XplatUIDriver.cs: remove menu handle usage.
15688         * XplatUIOSX.cs: remove menu handle usage.
15689         * XplatUIWin32.cs: remove menu handle usage.
15690         * XplatUIX11.cs: remove menu handle usage.
15691
15692 2005-11-22  Jackson Harper  <jackson@ximian.com>
15693
15694         * Hwnd.cs: Don't compute the menu size for
15695         DefaultClientRectangle.
15696         - Reenable menu sizes being computed for GetClienRectangle.
15697         * Form.cs: Remove comment of trechery
15698         
15699 2005-11-22  Jackson Harper  <jackson@ximian.com>
15700
15701         * Hwnd.cs: The adjustments for the menu bar are made when it is
15702         attached to the form.
15703
15704 2005-11-19  Jackson Harper  <jackson@ximian.com>
15705
15706         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
15707         (just like on windows).
15708
15709 2005-11-19  Jackson Harper  <jackson@ximian.com>
15710
15711         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
15712         use real buttons anymore because they are in non client area. The
15713         one TODO here is that I need to somehow invalidate a section of
15714         the non client area.
15715
15716 2005-11-18  Jackson Harper  <jackson@ximian.com>
15717
15718         * Control.cs: Put the enum check back in now that MDI doesnt have
15719         to use this to set border styles.
15720         * Form.cs: Only set mdi child windows borders if the handle has
15721         been created.
15722         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
15723         this directly on to the driver.
15724         - Get the move start position before adjusting for the titlebar
15725         height, this fixes the windows "skipping" when they are first
15726         moved.
15727
15728 2005-11-18  Jackson Harper  <jackson@ximian.com>
15729
15730         * XplatUIX11.cs: Just compute the mdi borders separately as they
15731         don't totally match up with normal form borders.
15732
15733 2005-11-18  Jackson Harper  <jackson@ximian.com>
15734
15735         * Control.cs: Set WS_ styles for borders, so that the driver does
15736         not have to retrieve the control instance to figure out what kind
15737         of borders it should have.
15738         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
15739         driver can know its an mdi child easily.
15740         * XplatUIX11.cs: Get the border styles and whether the window is
15741         MDI from the Styles and ExStyles params instead of having to get a
15742         control. This prevents a chicken and egg problem.       
15743
15744 2005-11-18  Jackson Harper  <jackson@ximian.com>
15745
15746         * MdiClient.cs: Fix typo so scrollbars show up correctly.
15747
15748 2005-11-18  Jackson Harper  <jackson@ximian.com>
15749
15750         * MdiClient.cs: Calculate when to add and remove scrollbars
15751         correctly.
15752         * MdiChildContext.cs: Adjust the y position to take the titlebar
15753         into account.
15754         - No height for FormBorderStyle.None
15755
15756 2005-11-18  Jackson Harper  <jackson@ximian.com>
15757
15758         * Control.cs: Allow non enum values to be used for
15759         InternalBorderStyle.  MDI does this to set a special border style.
15760         - New utility methods for converting points to/from client coords
15761         - Add the newly created control to the Controls collection before
15762         updating its style. This way UpdateStyle can walk the control
15763         heirarchy to find the control if needed.
15764         so I don't need to create a new Point object all the time.
15765         * Form.cs: Let MDI windows handle their border styles.
15766         - Set styles on MDI windows so the correct title style is derived.
15767         * MdiChildContext.cs: Move all the painting and window handling
15768         into the non client area.
15769         - Use correct sizing and put correct buttons on frames based on
15770         the FormBorderStyle.
15771         - Notify the mdi client about scrolling
15772         - Need to handle the buttons ourselves now, because they are all
15773         in non client areas and we can't add controls there.
15774         * MdiClient.cs: Halfway to scrolling, this implementation is
15775         somewhat broken though, we need to check to make sure other
15776         windows aren't causing scrolling before removing the bars. Also
15777         the bars need to be drawn on top, maybe I can switch implicit
15778         controls to be on top.
15779         * Hwnd.cs: caption_height and tool_caption_height are now
15780         properties of an hwnd, this way they can be set by the driver
15781         based on the type of window they are.  In X11 the window manager
15782         handles the decorations so caption_height is zero unless its an
15783         MDI window.
15784         - Add 3 pixel borders for MDI windows (0xFFFF).
15785         - Get rid of some code duplication, have DefaultClientRectanle
15786         just call GetClientRectangle.
15787         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
15788         Hwnd now.
15789         - Set border styles differently for mdi windows.
15790         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
15791         Hwnd now.
15792         
15793 2005-11-15  Mike Kestner  <mkestner@novell.com>
15794
15795         * Menu.cs: when adding an item to the collection, if item is already 
15796         parented, remove it from the parent.
15797
15798 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
15799
15800         * X11DesktopColors.cs: Added KDE support
15801
15802 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
15803
15804         * XplatUIWin32.cs: 
15805           - Clipboard methods now can translate Rtf format
15806           - No longer removes clipboard contents whenever a new format is added
15807             to allow placing multiple formats on the clipboard
15808         * Clipboard.cs: Clipboard now supports getting a IDataObject and
15809           will place all formats contained in it onto the clipboard. Also
15810           now cleans the clipboard before placing a new object onto it
15811         * RichTextBox.cs:
15812           - Implemented set_Rtf
15813           - Implemented set_SelectedRtf
15814           - Created InsertRTFFromStream() method to allow single code base
15815             for all properties and methods that insert RTF into document
15816           - Removed debug output
15817         * TextControl.cs:
15818           - Fixed Delete(int) to fix up line numbers
15819           - Fixed ReplaceSelection to combine start and end line
15820           - Fixed serious DeleteChars bug that would leave the document tree
15821             broken
15822           - Improved DumpTree with several logic checks to detect broken
15823             document trees
15824           - Removed debug lines
15825           - Fixed Caret.WordForward/WordBack moving code, now always also 
15826             updates caret.tag (fixes crash when word-selecting across tag
15827             boundaries via keyboard)
15828           - Added Insert() method for inserting multiline text into documents
15829           - Fixed DeleteChars() calculation errors that would cause a broken
15830             tag chain with multiple tag lines
15831           - DeleteChars() no longer crashes on multi-tag lines if not all tags
15832           - Split() no longer moves caret if split is at caret location
15833           - ReplaceSelection() now updates the cursor and re-displays it
15834           - ReplaceSelection() now uses new Insert() method to avoid code
15835             duplication
15836           - FormatText() can now handle formatting partial lines
15837         * TextBoxBase.cs:
15838           - Append now uses new TextControl.Insert() method (this avoids 
15839             duplicate code)
15840           - Implemented Ctrl-X (Cut) (
15841           - Implemented Ctrl-C (Copy)
15842           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
15843             regeneration when pasting text; roundtripping Copy&Paste within
15844             edit control still fails due to some calculation bugs in GenerateRTF)
15845           - The Delete key will now remove the current selection if it is visible
15846         * TextBox.cs: Removed debug lines
15847         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
15848           driver to be initialized and can't therefore be done via a static ctor)
15849
15850 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
15851
15852         * TextControl.cs: Added backend code for finding char arrays and strings
15853         * TextBoxBase.cs:
15854           - Added mouse wheel scroll support
15855           - Added support for VScroll and HScroll events
15856         * RichTextBox.cs:
15857           - Implemented all seven Find() variants
15858           - Implemented GetCharFromPosition()
15859           - Implemented GetCharIndexFromPosition()
15860           - Implemented GetLineFromIndex()
15861           - Implemented GetPositionFromCharIndex();
15862           - Implemented SaveFile for PlainText and UnicodeText
15863           - Fixed set_Font, now setting a new font applies that font to
15864             the whole document
15865           - Implemented generic Document to RTF converter
15866           - Implemented SaveFile for RichText format (still missing unicode
15867             conversion for non-ansi chars)
15868           - Implemented get_Rtf
15869           - Implemented get_SelectedRtf
15870
15871 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
15872
15873         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
15874           to allow any captures to be released before triggering OnClick. This
15875           way a click handler may capture the mouse without interference.
15876         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
15877           This way we send them even though X may not allow a grab (if the window
15878           isn't visible, for example)
15879
15880 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
15881
15882         * DataGridViewRowEventArgs.cs: DataGridView implementation
15883         * DataGridViewElement.cs: DataGridView implementation
15884         * DataGridViewComboBoxCell.cs: DataGridView implementation
15885         * DataGridViewDataErrorContexts.cs: DataGridView implementation
15886         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
15887         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
15888         * ImageLayout.cs: DataGridView implementation
15889         * DataGridViewComboBoxColumn.cs: DataGridView implementation
15890         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
15891         * DataGridViewSelectionMode.cs: DataGridView implementation
15892         * IDataGridViewEditingControl.cs: DataGridView implementation
15893         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
15894         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
15895         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
15896         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
15897         * DataGridViewColumnSortMode.cs: DataGridView implementation
15898         * DataGridView.cs: DataGridView implementation
15899         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
15900         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
15901         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
15902         * Padding.cs: DataGridView implementation
15903         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
15904         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
15905         * DataGridViewRowEventHandler.cs: DataGridView implementation
15906         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
15907         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
15908         * DataGridViewButtonCell.cs: DataGridView implementation
15909         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
15910         * DataGridViewEditMode.cs: DataGridView implementation
15911         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
15912         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
15913         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
15914         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
15915         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
15916         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
15917         * DataGridViewCellEventHandler.cs: DataGridView implementation
15918         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
15919         * DataGridViewCellStyleConverter.cs: DataGridView implementation
15920         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
15921         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
15922         * DataGridViewColumnEventArgs.cs: DataGridView implementation
15923         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
15924         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
15925         * QuestionEventArgs.cs: DataGridView implementation
15926         * IDataGridViewEditingCell.cs: DataGridView implementation
15927         * DataGridViewTriState.cs: DataGridView implementation
15928         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
15929         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
15930         * DataGridViewColumnCollection.cs: DataGridView implementation
15931         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
15932         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
15933         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
15934         * DataGridViewColumn.cs: DataGridView implementation
15935         * DataGridViewCellBorderStyle.cs: DataGridView implementation
15936         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
15937         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
15938         * DataGridViewRow.cs: DataGridView implementation
15939         * DataGridViewImageCellLayout.cs: DataGridView implementation
15940         * DataGridViewImageCell.cs: DataGridView implementation
15941         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
15942         * DataGridViewCheckBoxCell.cs: DataGridView implementation
15943         * DataGridViewHeaderCell.cs: DataGridView implementation
15944         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
15945         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
15946         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
15947         * DataGridViewTextBoxColumn.cs: DataGridView implementation
15948         * QuestionEventHandler.cs: DataGridView implementation
15949         * DataGridViewCellStyleScopes.cs: DataGridView implementation
15950         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
15951         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
15952         * DataGridViewCell.cs: DataGridView implementation
15953         * DataGridViewCellEventArgs.cs: DataGridView implementation
15954         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
15955         * DataGridViewCellStyle.cs: DataGridView implementation
15956         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
15957         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
15958         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
15959         * TextFormatFlags.cs: DataGridView implementation
15960         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
15961         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
15962         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
15963         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
15964         * DataGridViewButtonColumn.cs: DataGridView implementation
15965         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
15966         * HandledMouseEventArgs.cs: DataGridView implementation
15967         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
15968         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
15969         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
15970         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
15971         * DataGridViewRowCollection.cs: DataGridView implementation
15972         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
15973         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
15974         * DataGridViewHitTestType.cs: DataGridView implementation
15975         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
15976         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
15977         * DataGridViewColumnEventHandler.cs: DataGridView implementation
15978         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
15979         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
15980         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
15981         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
15982         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
15983         * DataGridViewContentAlignment.cs: DataGridView implementation
15984         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
15985         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
15986         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
15987         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
15988         * DataGridViewPaintParts.cs: DataGridView implementation
15989         * DataGridViewCellCollection.cs: DataGridView implementation
15990         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
15991         * DataGridViewImageColumn.cs: DataGridView implementation
15992         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
15993         * DataGridViewElementStates.cs: DataGridView implementation
15994         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
15995         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
15996         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
15997         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
15998         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
15999         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
16000         * DataGridViewRowHeaderCell.cs: DataGridView implementation
16001         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
16002         * DataGridViewTextBoxCell.cs: DataGridView implementation
16003         * DataGridViewBand.cs: DataGridView implementation
16004         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
16005         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
16006         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
16007         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
16008         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
16009         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
16010         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
16011         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
16012         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
16013         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
16014         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
16015
16016 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
16017
16018         * ThemeWin32Classic.cs: 
16019           - Draw the outside focus rectangle around buttons
16020           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
16021             doesn't use end caps for every dash of a line anymore. This
16022             workaround ignores the forecolor.
16023
16024 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
16025
16026         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
16027           endian safe.
16028
16029 2005-11-07  Jackson Harper  <jackson@ximian.com>
16030
16031         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
16032
16033 2005-11-07  Jackson Harper  <jackson@ximian.com>
16034
16035         * ScrollableControl.cs: Calculate the maximum and change vars
16036         (more) correctly so that scrollbars appear as a sensible size.
16037
16038 2005-11-04  Jackson Harper  <jackson@ximian.com>
16039
16040         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
16041         collection.
16042         * TreeView.cs: When the tree is sorted null out the top_node so
16043         that it is recalculated.
16044         - Use dotted lines instead of dashed lines to match MS better.
16045
16046 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
16047
16048         * ListView.cs: 
16049           - Implements key search for items. Useful when browsing files with FileDialog
16050           - When changing view mode or when clear the items reset scrollbar positions
16051
16052 2005-11-04  Jackson Harper  <jackson@ximian.com>
16053
16054         * CurrencyManager.cs: Implement the MetaDataChanged event, the
16055         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
16056         as to what the method may do as there is no real way of creating a
16057         derived CurrencyManager and calling the method. 
16058
16059 2005-11-03  Jackson Harper  <jackson@ximian.com>
16060
16061         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
16062         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
16063         method which seems to just be used internally to refresh the tabs.
16064
16065 2005-11-03  Jackson Harper  <jackson@ximian.com>
16066
16067         * TabControl.cs: Implement the remove method. Fix some broken
16068         comments.
16069
16070 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16071
16072         * DateTimePicker.cs:
16073           - Added missing DateTimePickerAccessibleObject class
16074           - Added missing events
16075           - Added OnFontChanged method
16076         * Form.cs: Added missing attributes
16077         * TreeView.cs: Added missing attributes
16078
16079 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
16080
16081         * GridItemCollection.cs: Fix signatures
16082
16083 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16084
16085         * XplatUI.cs: Updated build rev/date
16086         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
16087           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
16088         * Application.cs: Trigger context-specific ExitThread events
16089
16090 2005-11-03  Jackson Harper  <jackson@ximian.com>
16091
16092         * Menu.cs:
16093         * MainMenu.cs:
16094         * GridTableStylesCollection.cs:
16095         * Timer.cs:
16096         * TabPage.cs:
16097         * HelpProvider.cs:
16098         * StatusBar.cs:
16099         * MonthCalendar.cs: Signature fixes
16100
16101 2005-11-03  Jackson Harper  <jackson@ximian.com>
16102
16103         * TreeNodeCollection.cs: Remove should not be virtual.
16104         * TreeView.cs: Implement the last of the missing methods.
16105
16106 2005-11-03  Jackson Harper  <jackson@ximian.com>
16107
16108         * TreeNodeConverter.cs: Implement to get off my class-status back.
16109
16110 2005-11-03  Jackson Harper  <jackson@ximian.com>
16111
16112         * TreeView.cs: Hookup the bits for drag and drop.
16113         * TreeNode.cs: Don't cache the tree_view or index anymore, now
16114         that nodes can be moved from tree to tree easily this just causes
16115         all sorts of problems.
16116         * TreeNodeCollection: Don't need to give treenodes an index and
16117         treeview anymore when they are added, these are computed on the
16118         fly. Also make sure to remove a node before its added.
16119
16120 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
16121
16122         * TextControl.cs:
16123           - Added CaretSelection enum
16124           - Added comparison methods to Marker struct, makes selection code
16125             more readable
16126           - Added SelectionStart and SelectionEnd as 'moveable' location for
16127             the CaretDirection enum and handler
16128           - Added selection_prev variable to track optimized invalidation for
16129             word and line selection
16130           - Added SelectionVisible property (returns true if there is a valid 
16131             selection)
16132           - Switched CaretHasFocus to only display the caret if there is no
16133             visible selection
16134           - Avoiding StringBuilder.ToString to retrieve a single char, instead
16135             using the direct character index; should be much faster
16136           - Added various conditional debug statements
16137           - Fixed invalidation calculation for selection ranges
16138           - Added ExpandSelection() method to support word and line selection
16139           - Switched SetSelectionToCaret to use new Marker compare overloads
16140           - Added central IsWordSeparator() method to determine word 
16141             separators/whitespace and FindWordSeparator() to streamline common
16142             usage of IsWordSeparator()
16143         * TextBoxBase.cs:
16144           - Removed unneeded grabbed variable, it was just mirroring
16145             Control.Capture
16146           - No longer firing OnTextChanged event when Text setter is called,
16147             since the base will fire the event for us
16148           - Added handling of Ctrl-Up/Down selection
16149           - Added handling of Shift-Cursorkey selection
16150           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
16151             words
16152           - Added handling of Shift and Ctrl-Shift-Home/End selection
16153           - Removed some debug output
16154           - Added handling for single/double/tripple-click to place caret/
16155             select word/select line respectively (Fixes bug #76031)
16156           - Added support for drag expansion of word/line selection
16157         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
16158           current selection
16159
16160 2005-11-02  Jackson Harper  <jackson@ximian.com>
16161
16162         * X11Dnd.cs: If the drag is going to and from a MWF window just
16163         copy the data instead of sending it out through the X Selection
16164         mechanism.
16165
16166 2005-11-02  Jackson Harper  <jackson@ximian.com>
16167
16168         * X11Dnd.cs:
16169         * XplatUIX11.cs: When in a drag we don't want motion notify
16170         messages to get passed on to the other controls. This prevents
16171         mouse move messages from showing up in the drag source.
16172
16173 2005-11-02  Jackson Harper  <jackson@ximian.com>
16174
16175         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
16176         the correct button is release to end a drag.
16177         * XplatUIX11.cs: Make the button state internal so the drag system
16178         can access it.  Dragging needs to know about all button releases,
16179         not just left button.
16180
16181 2005-11-02  Miguel de Icaza  <miguel@novell.com>
16182
16183         * Form.cs (Icon): If the icon is null, reset the icon to the
16184         default value. 
16185
16186         * Cursor.cs: When writing the AND-mask bitmap do not include the
16187         number of colors, but hardcode those to two (black and white),
16188         fixes the loading of color cursors (Paint Dot Net).
16189
16190         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
16191         turn off autoscaling.
16192
16193         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
16194
16195 2005-11-02  Jackson Harper  <jackson@ximian.com>
16196
16197         * X11Dnd.cs: Make sure to send a status message if the pointer
16198         enters a control that can not accept a drop, otherwise the cursor
16199         isn't updated correctly. Also tried to compress the lines of code
16200         a bit.
16201
16202 2005-11-02  Jackson Harper  <jackson@ximian.com>
16203
16204         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
16205         set actions correctly.  This isn't perfect as XDND and win32 have
16206         some differences on how you allow actions. I'll clear this up by
16207         adding a path for drag from MWF to MWF windows.
16208         * XplatUIX11.cs: Hook into the dnd system.
16209
16210 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
16211
16212         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
16213         previously shown but they are no longer need it. Very obvious when 
16214         browsing files with FileDialog.
16215
16216 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
16217
16218         * Control.cs: We always need to call OnPaintBackground. We pretty much
16219           ignore AllPaintingInWmPaint and always do the painting there, whether 
16220           it's set or not, since we always ignore the WM_ERASEBKGND message 
16221           (which we don't generate on X11). This fixes #76616.
16222         * Panel.cs: Removed unneeded background painting. This happens properly
16223           in Control.cs already
16224
16225 2005-10-31  Mike Kestner  <mkestner@novell.com>
16226
16227         * Menu.cs: Add items to collection before setting their index.
16228         * MenuItem.cs : add range checking with ArgumentException like MS.
16229         [Fixes #76510]
16230
16231 2005-10-31  Jackson Harper  <jackson@ximian.com>
16232
16233         * ListBox.cs: Invalidate if the area is visible at all not just
16234         contained in the visible rect. Fixes unselection of semi visible
16235         items.
16236
16237 2005-10-31  Jackson Harper  <jackson@ximian.com>
16238
16239         * Control.cs: Consistently name the dnd methods. Make them
16240         internal so we can override them to match some MS behavoir
16241         internally.
16242         * Win32DnD.cs: Use the new consistent names.
16243
16244 2005-10-31  Jackson Harper  <jackson@ximian.com>
16245
16246         * TreeView.cs: Don't draw the selected node when we lose focus.
16247
16248 2005-10-31  Jackson Harper  <jackson@ximian.com>
16249
16250         * X11Dnd.cs: We still need to reset the state even though a full
16251         reset isn't being done, otherwise status's still get sent all over
16252         the place.
16253
16254 2005-10-31  Jackson Harper  <jackson@ximian.com>
16255
16256         * Control.cs: Make the dnd_aware flag internal so the dnd
16257         subsystem can check it. Catch exceptions thrown in dnd handlers to
16258         match MS behavoir.
16259         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
16260         * X11Dnd.cs: Handle null data in the converters. Set the XDND
16261         version when sending a XdndEnter. Use the control/hwnd dnd_aware
16262         flags to reduce the number of dnd enters/status's sent.
16263
16264 2005-10-31  Jackson Harper  <jackson@ximian.com>
16265
16266         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
16267
16268 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
16269
16270         * PictureBox.cs: Fixes 76512
16271
16272 2005-10-28  Jackson Harper  <jackson@ximian.com>
16273
16274         * X11Dnd.cs: Early implementation to support winforms being a drag
16275         source for data on X11. Also restructured the converters so they
16276         can go both ways now.
16277         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
16278         
16279 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
16280
16281         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
16282           clipboard requests
16283
16284 2005-10-27  Jackson Harper  <jackson@ximian.com>
16285
16286         * TreeNode.cs: Implement serialization so my DnD examples will work.
16287
16288 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
16289
16290         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
16291           TreeView.cs: Don't dispose objects that are not owned.
16292           
16293 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
16294
16295         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
16296           should retrieve the current cursor and report that, but XplatUI
16297           doesn't (yet) have an interface for that (and I'm not sure I even
16298           can, on X11)
16299         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
16300           until any message loop processing is done (and the WM_SETCURSOR
16301           replaces the cursor to the proper one)
16302         * XplatUIX11.cs: 
16303           - Fixed override behaviour, we can't set the cursor globally on X11, 
16304             just for our windows.
16305           - Invalidating the System.Drawing X11 display handle when we are
16306             shutting down
16307         * Control.cs: Fix to make csc happy
16308
16309 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
16310
16311         * TextBoxBase.cs: 
16312           - get_Text: Add last line (without trailing newline) to returned
16313             value (Fixes 76212)
16314           - get_TextLength: Count last line in returned length
16315           - ToString: Call Text property instead of duplicating code
16316
16317 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
16318
16319         * ImageList.cs: Dispose ImageAttributes objects.
16320
16321 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16322
16323         * ImageList.cs: Use attribute constructors with less arguments where
16324           possible.
16325
16326 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
16327
16328         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
16329           Use typeof instead of strings when assembly is referenced. Added
16330           some more comments.
16331
16332 2005-10-21  Jackson Harper  <jackson@ximian.com>
16333
16334         * ListView.cs: Raise a double click event. Also tried to somewhat
16335         fix when the selectedindexchanged event is raised. Its still
16336         broken though.
16337
16338 2005-10-21  Jackson Harper  <jackson@ximian.com>
16339
16340         * TreeView.cs: New method to invalidate the plus minus area of a
16341         node without invalidating the whole node (maybe this can be used
16342         in some more places).
16343         * TreeNodeCollection.cs: When adding to an empty node we need to
16344         invalidate its plus minus area so the little block shows up.
16345         
16346 2005-10-21  Jackson Harper  <jackson@ximian.com>
16347
16348         * TreeView.cs: Make sure that when we invalidate a node the bounds
16349         are big enough to cover the selected box and the focus
16350         rectangle. Use a different colour for the lines connecting nodes
16351         so they show up with all themes.
16352
16353 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16354
16355         * NativeWindow.cs: Don't call anything that could call into the driver,
16356           we might be on a different thread.
16357
16358 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
16359
16360         * Control.cs(Dispose): Since Dispose might run on a different thread,
16361           make sure that we call methods that could call into the driver via
16362           invoke, to avoid thread issues
16363
16364 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
16365
16366         * XplatUI.cs: Removed finalizer
16367         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
16368           not allowing to be called on the finalizer thread.
16369
16370 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
16371
16372         * ImageList.cs:
16373           - Reverted r51889 and r51891.
16374           - Added ImageListItem class that stores unmodified image items and image
16375             properties required to create list images until handle is created.
16376           - Added AddItem and moved image creation logic to AddItemInternal.
16377           - Added CreateHandle method that creates images based on unmodified items.
16378           - Added DestroyHandle that changes state to store unmodified items.
16379           - Add and AddStrip methods no more create handle.
16380           - ReduceColorDepth has no return value.
16381           - Dispose destroys handle.
16382           - Modified other methods to reflect the above changes.
16383           - Implemented key support.
16384           - Added profile 2.0 members and attributes.
16385           - Added private Reset and ShouldSerialize methods that provide the same
16386             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
16387             them as they are private.
16388           - Added some more comments about implementation details.
16389
16390 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16391
16392         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
16393
16394 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16395
16396         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
16397
16398 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
16399
16400         * DataGridDrawingLogic.cs: Fixes column hit calcultation
16401         * DataGridColumnStyle.cs: Remove debug message
16402
16403 2005-10-20  Jackson Harper  <jackson@ximian.com>
16404
16405         * TreeView.cs: We can always get input keys regardless of whether
16406         or not editing is enabled. They are used for navigation.
16407
16408 2005-10-20  Jackson Harper  <jackson@ximian.com>
16409
16410         * TreeNode.cs: Use the viewport rect for determining if a node
16411         needs to be moved for visibility. Don't use Begin/End edit. This
16412         calls a full refresh when its done.
16413         * TreeView.cs: New SetBottom works correctly.  Make the viewport
16414         rect property internal so the treenodes can see it. When clicking
16415         on a node we need to ensure that its visible because it might just
16416         be partly visible when clicked.
16417
16418 2005-10-20  Jackson Harper  <jackson@ximian.com>
16419
16420         * TreeNodeCollection.cs: Remove debug code.
16421
16422 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16423
16424         * Datagrid.cs: Implements column sorting in Datagrid
16425         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
16426
16427 2005-10-20  Jackson Harper  <jackson@ximian.com>
16428
16429         * TreeNodeCollection.cs: Remove items properly. Update the correct
16430         area after removing them.
16431
16432 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
16433
16434         * Datagrid.cs: Should not call base.OnPaintBackground
16435
16436 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16437
16438         * XplatUIX11.cs (GetMessage):
16439           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
16440             window instead of client window
16441           - Now properly calculates NC_xBUTTONUP message coordinates
16442           - ScreenToMenu now properly calculates it's coordinates of whole 
16443             window, since menus are in the whole window, not in the client
16444             window
16445           - Added WholeToScreen coordinate translation method
16446
16447 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
16448
16449         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
16450           want to return a message, loop back to the beginning of the function
16451           and grab the next real message to process instead.
16452
16453 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
16454
16455         * Splitter.cs: Properly set limits if no filler control is used
16456
16457 2005-10-19  Jackson Harper  <jackson@ximian.com>
16458
16459         * ColorDialog.cs: Don't show the help button if it is not enabled
16460         instead of disabling it (this is what MS does). Don't create the
16461         panel until the dialog is run, otherwise the vars (such as
16462         ShowHelp) are not set yet.
16463
16464 2005-10-19  Jackson Harper  <jackson@ximian.com>
16465
16466         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
16467         are reduced when adding nodes.
16468         * TreeNode.cs:
16469         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
16470         tree.
16471         
16472 2005-10-19  Jackson Harper  <jackson@ximian.com>
16473
16474         * FolderBrowserDialog.cs: End editing our treeview so the window
16475         actually gets refreshed.
16476
16477 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
16478
16479         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
16480           Obsoleted handling of WM_ERASEBKGND, now always draws our background
16481           inside of WM_PAINT
16482
16483 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16484
16485         * MenuAPI.cs: Returns after Hidding window
16486         * XplatUIX11.cs: Added TODO found while debugging menu issues
16487
16488 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
16489
16490         * XplatUIX11.cs: Do not re-map the whole window when it's size
16491           becomes non-zero unless it's supposed to be actually visible
16492
16493 2005-10-18  Jackson Harper  <jackson@ximian.com>
16494
16495         * TreeView.cs: We don't need to keep a count anymore.
16496         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
16497         use the Grow method.
16498
16499 2005-10-18  Jackson Harper  <jackson@ximian.com>
16500
16501         * TreeNodeCollection.cs: Insert is not supported on arrays, so
16502         implement it manually here.
16503
16504 2005-10-18  Jackson Harper  <jackson@ximian.com>
16505
16506         * ImageList.cs: Dont kill the list when the colour depth is
16507         changed, just change the colour depth of all the images.
16508         - Same goes for setting the image size. Just resize them all
16509         instead of killing the list softly.
16510
16511 2005-10-18  Jackson Harper  <jackson@ximian.com>
16512
16513         * Control.cs: Don't invalidate empty rectangles.
16514
16515 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16516
16517         * ListViewItem.cs:
16518           - Adds checked item to the Checked/Item lists (where empty before)
16519           - Do not add items to the Selected lists if they are already present
16520         * ListView.cs:
16521           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
16522           - When deleting items make sure that we delete them for the Selected
16523           and Checked list also.
16524
16525 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
16526
16527         * Label.cs: Dispose objects no longer used
16528         * ThemeWin32Classic.cs: Dispose objects no longer used
16529
16530 2005-10-18  Jackson Harper  <jackson@ximian.com>
16531
16532         * TabControl.cs: Don't refresh the whole control when the tabs are
16533         scrolled, we just need to refresh the tab area.
16534
16535 2005-10-17  Jackson Harper  <jackson@ximian.com>
16536
16537         * XplatUIX11.cs: Compress code a little bit. Only calculate the
16538         after handle when we need it.
16539
16540 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
16541
16542         * Control.cs: When the parent size changes, recalculate anchor 
16543           positions. Partial fix for #76462
16544
16545 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
16546
16547         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
16548           drawn. Fixes #76462
16549
16550 2005-10-17  Jackson Harper  <jackson@ximian.com>
16551
16552         * MonthCalendar.cs: Don't create the numeric up down until our
16553         handle is created. Otherwise our handle is created in the
16554         constructor and we don't know if we are a WS_CHILD or WS_POPUP
16555         yet.
16556
16557 2005-10-17  Jackson Harper  <jackson@ximian.com>
16558
16559         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
16560         correctly.
16561
16562 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16563         * TreeNode.cs : small logical fix (was using local var instead of field)
16564         
16565 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
16566
16567         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
16568
16569 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
16570
16571         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
16572
16573 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
16574
16575         * Control.cs: 
16576           - Re-implemented anchoring code. My first version was really broken.
16577             This fixes bug #76033. Unlike the previous implementation we will
16578             no longer have round errors since all numbers are calculated from
16579             scratch every time. Removed various anchor-related obsolete vars.
16580           - InitLayout no longer causes layout event firing and layout to be 
16581             performed
16582
16583 2005-10-16  Jackson Harper  <jackson@ximian.com>
16584
16585         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
16586         which was broken).
16587
16588 2005-10-16  Jackson Harper  <jackson@ximian.com>
16589
16590         * TabControl.cs: Remove debug code.
16591
16592 2005-10-16  Jackson Harper  <jackson@ximian.com>
16593
16594         * XEventQueue.cs: Increase the default queue size (very simple
16595         apps needed to grow the queue).
16596         * Hwnd.cs: No finalizer so we don't need to suppress
16597         finalization. Compute the invalid area manually so a new rectangle
16598         does not newto be created.
16599         * ScrollableControl.cs: Don't set any params (otherwise visibility
16600         isn't set correctly).
16601         * MdiChildContext.cs: New constructor takes the mdi parent so it
16602         doesn't have to be computed and avoids a crash on windows. Draw
16603         the window icon properly, and allow the text to be seen.
16604         * Form.cs: Use new MdiChildContext constructor. Make sure the
16605         child context isn't null in wndproc.
16606         * TabControl.cs: Don't set focus, this is muddling keyboard
16607         behavoir. Expand the tab rows when a window size increase will
16608         allow extra tabs to be seen. Don't allow tabs smaller than the
16609         width of a window to be scrolled out of view.
16610         * TreeNode.cs:
16611         * TreeView.cs: Use measure string to calculate a nodes width, the
16612         width is cached and only updated when the text or the font is
16613         changed. Don't check for expand/collapse clicks on the first level
16614         nodes if root lines are disabled.
16615         
16616 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
16617
16618         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
16619
16620 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
16621
16622         * DataGridBoolColumn.cs: fixes warning
16623
16624 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
16625
16626         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
16627         to match more to match more precisely the MS Net behavior
16628
16629 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
16630
16631         * Hwnd.cs: Added field to track if window is mapped
16632         * XplatUIX11.cs: 
16633           - Unmap windows if they become 0-size, re-map when 
16634             they are >0 again; fixes #76035
16635           - Re-set our error handler after initializing X11Desktop
16636             to override any error handlers Gtk or whatever was called
16637             may have set.
16638
16639 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
16640
16641         * CheckedListBox.cs: Removed unused vars
16642         * ListView.cs: Fixed signatures
16643         * RichTextBox.cs: Removed unused vars
16644         * TextBoxBase.cs: Removed unused vars
16645         * XplatUIWin32.cs: Removed unused vars
16646         * XplatUIX11.cs: Removed unused vars
16647         * XplatUI.cs: Updated version and date to latest published
16648
16649 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
16650
16651         * Cursor.cs: Added private .ctor to work around a bug in
16652           resourceset (Thanks to Geoff Norton for the help on this)
16653         * SplitterEventArgs.cs: Made fields accessible so we don't
16654           waste boatloads of objects and can reuse the same one
16655           in Splitter
16656         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
16657           any captions and borders when generating screen coordinates
16658         * Splitter.cs: Reimplemented control, now fully complete, uses
16659           rubberband drawing, supports and obeys all properties, has
16660           proper cursors
16661
16662 2005-10-13  Miguel de Icaza  <miguel@novell.com>
16663
16664         * Form.cs (Form): Setup default values for autoscale and
16665         autoscale_base_size;  Make these instance variables, not static
16666         variables. 
16667
16668         (OnLoad): on the first load, adjust the size of the form.
16669
16670 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
16671
16672         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
16673           width argument to DrawReversibleRectangle()
16674         * XplatUIWin32.cs, XplatUIX11.cs: 
16675           - Implemented width for DrawReversibleRectangle()
16676           - Added logic to DrawReversibleRectangle that recognizes a zero
16677             width or height and only draws a line in that situation
16678         
16679 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
16680
16681         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
16682         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
16683         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
16684           method (it uses our FosterParent window to get a graphics context)
16685
16686 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
16687
16688         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
16689           and SetWindowBackground methods
16690         * Control.cs:
16691           - Setting proper ControlStyles
16692           - We no longer call XplatUI.SetWindowBackground and XplatUI.
16693             EraseWindowBackground, instead we draw the window background
16694             ourselves in PaintControlBackground. This behaviour is
16695             required to match MS, where, when OnPaintBackground is not
16696             called, the background is not drawn.
16697           - Removed unneeded Refresh() in set_Text
16698         * Hwnd.cs: Dropped the ErasePending support. No longer needed
16699         * XplatUIX11.cs:
16700           - Created DeriveStyles method to translate from CreateParams to
16701             FormBorderStyle and TitleStyle, also handles BorderStyle (which
16702             matches FormBorderStyle enum values)
16703           - Consolidated SetHwndStyles and CalculateWindowRect border/title
16704             style calculations into single DeriveStyles method
16705           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
16706             from redrawing the whole window on any resize or expose.
16707           - Fixed CreateWindow usage of SetWindowValuemask. Before not
16708             all styles were applied to our whole/client window appropriately
16709           - Removed EraseWindowBackground() and SetWindowBackground() methods
16710           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
16711             no longer clear/redraw the background through X
16712           - Removed handling of erase_pending bit, we have no use for it (or
16713             so it seems)
16714         * XplatUIOSX.cs:
16715           - Removed generation and handling of WM_ERASEBKGND message
16716           - Removed EraseWindowBackground() and SetWindowBackground() methods
16717           - Removed handling of hwnd.ErasePending flag
16718         * XplatUIWin32.cs:
16719           - Removed EraseWindowBackground() and SetWindowBackground() methods
16720           - We no longer call EraseWindowBackground on PaintEventStart, we 
16721             ignore the fErase flag, erasing is handled in Control in the
16722             background handler
16723         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
16724           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
16725           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
16726           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
16727           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
16728           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
16729           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
16730
16731 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
16732
16733         * PropertyGrids.cs: Get sub properties
16734         * PropertyGridView.cs: Fix drawing code
16735
16736 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16737
16738         * ListBox.cs: Fixes 76383
16739
16740 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16741
16742         * DataGridTextBoxColumn.cs: Sets location and size before attachment
16743         * ThemeWin32Classic.cs: Fixes border drawing and calculations
16744         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
16745
16746
16747 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16748
16749         * ComboBox.cs: Fixes border drawing
16750
16751 2005-10-10  Miguel de Icaza  <miguel@novell.com>
16752
16753         * MimeIcon.cs: Ignore errors if the file can not be read.
16754
16755 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
16756
16757         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
16758          - Fixed border calculations
16759          - Fixed horizontal scrolling in single column listboxes
16760          - Fixed drawing issues
16761
16762 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
16763
16764         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
16765           FormBorderStyle enum
16766         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
16767           code to determine FormBorderStyles from CreateParams
16768         * Form.cs:
16769           - Fixed bug where we'd set the wrong window styles if we were
16770             not creating an MDI window
16771           - Added call to XplatUI.SetBorderStyle when form borders are set
16772         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
16773         * Hwnd.cs:
16774           - Removed obsolete edge style
16775           - Switched from BorderStyle to FormBorderStyle
16776         
16777 2005-10-10  Jackson Harper  <jackson@ximian.com>
16778
16779         * Form.cs: Use the property to get the window handle instead of
16780         accessing it directly. Prevents a null reference exception.
16781
16782 2005-10-10  Jackson Harper  <jackson@ximian.com>
16783
16784         * TreeView.cs: Don't adjust the rect given to DrawString now that
16785         our libgdiplus draws correctly.
16786
16787 2005-10-08  Jackson Harper  <jackson@ximian.com>
16788
16789         * TreeView.cs: Don't try to find the clicked on node if there are
16790         no nodes in the tree.
16791
16792 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
16793
16794         * RichTextBox.cs:
16795
16796           restore
16797
16798 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
16799
16800         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
16801           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
16802           ErrorProvider.cs:
16803           Use ResPool for brushes and dispose System.Drawing objects that
16804           are not used anymore.
16805
16806 2005-10-07  Jackson Harper  <jackson@ximian.com>
16807
16808         * MdiChildContext.cs: Use the new borders instead of drawing them
16809         ourselves.
16810
16811 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
16812
16813         * Calling UpdateBounds after changing the window's BorderStyle 
16814         since the style can change the ClientSize
16815
16816 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16817
16818         * Control.cs: Made PaintControlBackground virtual
16819         * Panel.cs: Overriding PaintControlBackground instead of using paint
16820           event; paint event method was interfering with 'real' users of the
16821           event.
16822
16823 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
16824
16825         * ThemeWin32Classic.cs: remove border drawing since it is handled
16826         by the base control class now and was causing double border drawing.
16827
16828 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16829
16830         * Panel.cs: Redraw our background on paint. Not a pretty solution,
16831           but it does seem to match MS behaviour. This fixes bug #75324
16832
16833 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16834
16835         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
16836           somewhat hackish looking
16837
16838 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16839
16840         * TextBoxBase.cs:
16841           - We now accept Enter even if AcceptEnter is false, if the containing
16842             form does not have an AcceptButton configured (fixes bug #76355)
16843           - Calculations are now fixed to no longer use Width/Height, but
16844             ClientSize.Width/Height, since we now support borders (this was
16845             a result of fixing borders and therefore bug #76166)
16846           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
16847             true (fixes bug #76354)
16848         
16849 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16850
16851         * Control.cs: 
16852           - Defaulting BorderStyle and setting it in XplatUI when our window 
16853             is created
16854           - Added enum check to InternalBorderStyle setter
16855         * XplatUIX11.cs: 
16856           - Added drawing of window borders
16857           - Now properly calculates WM decorations offset for toplevel 
16858             windows (fixes bug #74763)
16859         * XplatUIWin32.cs: 
16860           - Implemented BorderStyles for windows (we're letting win32 draw 
16861             the border for us)
16862           - Fixed the signature for SetWindowLong
16863         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
16864           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
16865           setting borders
16866         * UpDownBase.cs: Remove drawing of borders, this is handled by
16867           the driver, outside the client area
16868         * ListView.cs: Removed bogus border calculations. The control should
16869           be oblivious to borders, since those are not part of the client
16870           area. 
16871         * X11DesktopColors.cs: Commented out (currently) unneeded variables
16872         * ThemeWin32Classic.cs: Removed border calculations from ListView 
16873           drawing code
16874
16875 2005-10-06  Jackson Harper  <jackson@ximian.com>
16876
16877         * MdiChildContext.cs: Clear out the old virtual position remove
16878         all the unneeded calls to CreateGraphics.
16879
16880 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16881
16882         * TextControl.cs: Use proper color for highlighted text; fixes #76350
16883
16884 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16885
16886         * Form.cs: 
16887           - Added loading and setting of our new default icon
16888           - Only set icon if window is already created
16889
16890 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16891
16892         * Label.cs:
16893           - Do not explicitly set the foreground and background colors, to
16894             allow inheriting from parents (fixes #76302)
16895           - Use Control's InternalBorderStyle property to deal with borders
16896
16897 2005-10-06  Jackson Harper  <jackson@ximian.com>
16898
16899         * MdiChildContext.cs: Use the new xplatui function to draw a
16900         reversible rect.
16901
16902 2005-10-06  Jackson Harper  <jackson@ximian.com>
16903
16904         * Form.cs: Add the parent before creating the child context cause
16905         we need the parent when setting up the child.
16906
16907 2005-10-06  Jackson Harper  <jackson@ximian.com>
16908
16909         * FolderBrowserDialog.cs: redo the tree population code so a
16910         second thread isn't used. Should be a lot faster and more stable
16911         now.
16912
16913 2005-10-05  Jackson Harper  <jackson@ximian.com>
16914
16915         * TreeView.cs: There are no expand/collapse boxes if the node has
16916         no children.
16917
16918 2005-10-05  Jackson Harper  <jackson@ximian.com>
16919
16920         * X11DesktopColors.cs: Get menu colours for the gtk theme.
16921
16922 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
16923
16924         * FileDialog.cs: Fix InitialDirectory
16925
16926 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16927
16928         * ComboBox.cs:
16929                 - Fixes changing between styles
16930                 - Fixes simple mode
16931                 - Fixes last item crashing when navigating with keyboard
16932
16933 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16934
16935         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
16936
16937 2005-10-05  Jackson Harper  <jackson@ximian.com>
16938
16939         * TreeView.cs: If updating the root node do a full refresh.
16940         * TreeNode.cs: The root node should be expanded by default. Also
16941         added a utility prop to tell if we are the root node.
16942         * TreeNodeCollection.cs: Only refresh if the node we are being
16943         added to is expanded. Also added a comment on a potential
16944         optimization.
16945         
16946 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
16947
16948         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
16949           in dispose method. Fixes #76330
16950
16951 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
16952
16953         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
16954
16955                 - Implements vertical and horizontal scrolling using XplatUI
16956                 - Fixes keyboard navagation
16957                 - Fixes EnsureVisible
16958                 - Drawing fixes
16959                 - Handles and draws focus properly
16960
16961
16962 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
16963
16964         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
16965           Create handle. NET_2_0: Destroy handle when value is null.
16966
16967 2005-10-03  Jackson Harper  <jackson@ximian.com>
16968
16969         * ScrollBar.cs: My last scrollbar patch was broken. This is a
16970         revert and a new patch to prevent the thumb from refreshing so
16971         much.
16972
16973 2005-10-02  Jackson Harper  <jackson@ximian.com>
16974
16975         * ScrollBar.cs: Don't update position if it hasn't actually
16976         changed. This occurs when you hold down the increment/decrement
16977         buttons and the thumb gets to the max/min.
16978
16979 2005-10-01  Jackson Harper  <jackson@ximian.com>
16980
16981         * Form.cs:
16982         * MdiChildContext.cs:
16983         * MdiClient.cs: Implement ActiveMdiChild in Form.
16984
16985 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
16986
16987         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
16988
16989 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
16990
16991         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
16992           be found
16993
16994 2005-09-30  Jackson Harper  <jackson@ximian.com>
16995
16996         * ListBox.cs: Don't do a full refresh unless some data has
16997         actually changed.
16998
16999 2005-09-30  Jackson Harper  <jackson@ximian.com>
17000
17001         * TreeView.cs: Make sure that the checkboxes size is factored in
17002         even when not visible.
17003
17004 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17005
17006         * FileDialog.cs: Fix Jordi's build break
17007
17008 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17009
17010         * FileDialog.cs: 
17011                 - Use standard the Windows colours for the combobox as espected
17012                 - Dispose objects that use resouces when no longer need them
17013
17014 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
17015
17016         * X11DesktopColors.cs: Initial incomplete implementation
17017         * XplatUIX11.cs: Added call to initialize X11DesktopColors
17018
17019 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
17020
17021         * Theme.cs: 
17022           - Switched Theme color names to match the names defined in 
17023             System.Drawing.KnownColors. Life's hard enough, no need to make 
17024             it harder.
17025           - Added setters to all theme color properties so themes can set
17026             their color schemes. The setters also propagate the color changes
17027             to System.Drawing.KnownColors via reflection
17028         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
17029           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
17030           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
17031           use the new, more logical theme color names
17032         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
17033           post-NT colors
17034         * ThemeWin32Classic.cs:
17035           - Removed code to set the old classic Windows colors. Instead it
17036             now relies on the colors returned by System.Drawing.KnownColors
17037             which will be either modern static colors (Unix) or colors
17038             read from the user's configuration (Win32)
17039           - Updated to use the new, more logical theme color names
17040           - Switched DataGrid drawing code to use only Theme colors instead of
17041             a mix of System.Drawing.KnownColors and Theme colors
17042           - DrawFrameControl(): Removed code that fills the button area, the
17043             fill would overwrite any previous fill done by a control. This
17044             fixes bug #75338 
17045           - Added DrawReversibleRectangle() stub
17046         * ScrollableControl.cs: Set visible state to false when scrollbars
17047           are removed (pdn fix)
17048         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
17049           DrawReversibleRectangle() method to allow drawing primitive 
17050           'rubber bands'
17051         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
17052
17053 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17054
17055         * ImageList.cs: Add(Icon): Create handle.
17056
17057 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
17058
17059         * ListView.cs:
17060         * ThemeWin32Classic.cs:
17061                 - Fixes detail mode
17062                 - Sets clippings
17063                 - Issues with drawing
17064
17065 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17066
17067         * ImageList.cs: Moved RecreateHandle back to ImageList as event
17068           source has to be the ImageList.
17069
17070 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17071
17072         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
17073
17074 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17075
17076         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
17077
17078 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17079
17080         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
17081
17082 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
17083         * GridItem.cs: Fixed TODOs
17084         * GridItemCollection.cs: Added ICollection interface
17085
17086 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
17087
17088         * ImageList.cs: Resize icons when needed.
17089
17090 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
17091
17092         * ListViewItem.cs
17093                 - Fixes GetBounds and returns on screen rects
17094         * ListView.cs:
17095                 - Fixes vertical and horzintal scrolling of items
17096         * ThemeWin32Classic.cs:
17097                 - Fixes drawing
17098                 
17099 2005-09-29  Raja R Harinath  <harinath@gmail.com>
17100
17101         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
17102
17103 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
17104
17105         * ImageList.cs: Added comments about handle creation. Moved Handle,
17106           HandleCreated and OnRecreateHandle implementations to ImageCollection.
17107           Handle is created in Add methods.
17108
17109 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17110          
17111         * DataGridDrawingLogic.cs: 
17112                 - Takes rows into account on Colum calculations
17113                 - Returns the column when clickig
17114         * DataGrid.cs:
17115                 - Fixes default HitTestInfo values
17116                 - Fixes HitTestInfo.ToString
17117                 - Fixes ResetBackColor          
17118         
17119 2005-09-28  Jackson Harper  <jackson@ximian.com>
17120
17121         * MdiChildContext.cs: Obey rules for fixed sized windows (no
17122         sizing or cursor changes). Also added some temp code to draw the
17123         titlebars text (Makes dev a little easier).
17124
17125 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17126
17127         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
17128
17129 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
17130          
17131         * ListBox.cs: Fixes bug 76253
17132
17133 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
17134
17135         * ImageList.cs: Added comments about the current implementation. Added
17136           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
17137           Format32bppArgb to preserve transparency and can use Graphics.FromImage
17138           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
17139           with Bitmap.LockBits for better performance. Revised the whole file to
17140           match MS.NET behaviour and provide better performance. Non-public
17141           interface members are calling public members even when they throw
17142           NotSupportedException for better maintainability. Moved ColorDepth,
17143           ImageSize, ImageStream and TransparentColor implementations to
17144           ImageCollection for better performance as these properties are not used
17145           by ImageList.
17146         * ImageListStreamer.cs: Added a new internal constructor that takes an
17147           ImageList.ImageCollection and serializes Images based on
17148           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
17149           match ImageList property name.
17150
17151 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
17152
17153         * ListBox.cs: Fixes IndexFromPoint for last item
17154
17155 2005-09-27  Jackson Harper  <jackson@ximian.com>
17156
17157         * Form.cs: Set the position of new mdi children correctly.
17158
17159 2005-09-27  Jackson Harper  <jackson@ximian.com>
17160
17161         * MdiClient.cs: New mdi children need to be added to the back of
17162         the controls collection so the zorder is set correctly. Also add a
17163         count of all the child windows that have been created.
17164
17165 2005-09-27  Jackson Harper  <jackson@ximian.com>
17166
17167         * Form.cs (CreateParams): Setup MDI forms correctly.
17168
17169 2005-09-27  Jackson Harper  <jackson@ximian.com>
17170
17171         * MdiChildContext.cs:
17172         * MonthCalendar.cs:
17173         * UpDownBase.cs:
17174         * ListBox.cs:
17175         * ListView.cs:
17176         * TextBoxBase.cs:
17177         * TreeView.cs:
17178         * ScrollableControl.cs:
17179         * ComboBox.cs: Add implicit controls using the new implict control
17180         functionality in ControlCollection. Also try to block multiple
17181         control add in a suspend/resume layout to save some cycles.
17182         
17183 2005-09-27  Jackson Harper  <jackson@ximian.com>
17184
17185         * Control.cs: Add functionality to the controls collection to add
17186         'implicit controls' these are controls that are created by the
17187         containing control but should not be exposed to the user. Such as
17188         scrollbars in the treeview.
17189         * Form.cs: The list var of the ControlsCollection is no longer
17190         available because of the potential of implicit controls getting
17191         ignored by someone accessing the list directly.
17192
17193 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
17194
17195         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
17196           loose it's parent. (Fixed bug introduced in r49103 when we added
17197           setting the child parent to null on Remove)
17198
17199 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
17200
17201         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
17202         * Splitter.cs: Added missing attributes for BorderStyle property.
17203         * TextBoxBase.cs: Marked Calculate* methods internal.
17204         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
17205         MS.NET.
17206
17207 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
17208          
17209         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
17210
17211 2005-09-25  Jackson Harper  <jackson@ximian.com>
17212
17213         * TreeView.cs: Update the node bounds correctly regardless of
17214         whether the node is visible.
17215
17216 2005-09-25  Jackson Harper  <jackson@ximian.com>
17217
17218         * ImageList.cs: Don't dispose the image after it is added to the
17219         image list. Only reformat images that need to be resized.
17220
17221 2005-09-25  Jackson Harper  <jackson@ximian.com>
17222
17223         * ImageList.cs: Don't set the format when changing the image.
17224
17225 2005-09-25  Jackson Harper  <jackson@ximian.com>
17226
17227         * TreeView.cs: We can't just assume the node has a font. Use the
17228         treeviews font if no node font is available.
17229
17230 2005-09-25  Jackson Harper  <jackson@ximian.com>
17231
17232         * TreeView.cs: Allow the scrollbars to be reset with negative
17233         values.
17234         - Don't add scrollbars to negative sized windows.
17235
17236 2005-09-23  Jackson Harper  <jackson@ximian.com>
17237
17238         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
17239         old Mono.Posix. Also remove some stray code that shouldn't have
17240         been committed.
17241
17242 2005-09-23  Jackson Harper  <jackson@ximian.com>
17243
17244         * TreeView.cs: Attempt at proper sizing of the horizontal
17245         scrollbar. Also don't resize the scrollbars unless they are
17246         visible.
17247
17248 2005-09-23  Jackson Harper  <jackson@ximian.com>
17249
17250         * TreeView.cs: We don't need to expand the invalid area when the
17251         selection changes, as this is all drawn in the node's bounding
17252         box. The area needs to be expanded (previous typo was contracting
17253         it) when the focus rect moves.
17254
17255 2005-09-23  Jackson Harper  <jackson@ximian.com>
17256
17257         * TreeView.cs: Display the selection box under the correct
17258         circumstances. We were rendering white text with no selection box
17259         before.
17260
17261 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
17262
17263         * TextControl.cs(Split): Now updates selection start/end if it points 
17264           into a line that's being split. Fixes a FIXME and bug #75258
17265
17266 2005-09-23  Jackson Harper  <jackson@ximian.com>
17267
17268         * Binding.cs:
17269         * ListControl.cs: Don't use the path when retrieving binding
17270         managers from the binding context. My bat sense tells me that the
17271         path is only used on insertion.
17272
17273 2005-09-22  Jackson Harper  <jackson@ximian.com>
17274
17275         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
17276
17277 2005-09-22  Jackson Harper  <jackson@ximian.com>
17278
17279         * Splitter.cs: There are special cursors used for splitting.
17280         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
17281
17282 2005-09-22  Jackson Harper  <jackson@ximian.com>
17283
17284         * Splitter.cs: Change the cursor appropriately when the splitter
17285         is moused over, so the user actually knows there is a splitter
17286         there.
17287
17288 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17289
17290        * Label.cs : Fix ToString method to give same output as MS.NET
17291
17292 2005-09-22  Jackson Harper  <jackson@ximian.com>
17293
17294         * TreeView.cs: Create the scrollbars when the handle is created
17295         and add them right away, just make them invisble. Also account for
17296         the window being shrunk vertically to the point that the vert
17297         scrollbar needs to be added.
17298         - Remove some 0.5 adjustments to get around anti aliasing issues.
17299         
17300 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
17301          
17302         * MainMenu.cs: Fixes default value
17303         * MenuItem.cs: Fixes default value
17304
17305 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
17306
17307         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
17308
17309 2005-09-21  Jackson Harper  <jackson@ximian.com>
17310
17311         * Control.cs: Don't try to set the border style on the window if
17312         it hasn't been created. When the window is created the border
17313         style will be used.
17314
17315 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17316
17317         * Control.cs (Update): Don't call XplatUI if we don't have a
17318           window handle yet
17319
17320 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17321
17322         * ContainerControl.cs: Instead of throwing an exception, print
17323           a one-time warning about Validate not being implemented
17324         * XplatUIWin32.cs: Removed debug output
17325
17326 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
17327
17328         * Control.cs: Only set XplatUI background if we expect the windowing
17329           system to handle the background. This stops controls that draw their
17330           own background from flickering
17331
17332         * XplatUIX11.cs: Support custom visuals and colormaps for window 
17333           creation. This allows, amongst other things, using MWF X11 windows 
17334           with OpenGL.
17335
17336 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
17337
17338         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
17339           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
17340           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
17341           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
17342           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
17343           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
17344           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
17345           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
17346           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
17347           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
17348           GridColumnStylesCollection.cs, 
17349           IDataGridColumnStyleEditingNotificationService.cs,
17350           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
17351           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
17352           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
17353           TreeNodeCollection.cs, AmbientProperties.cs, 
17354           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17355           DataObject.cs, ErrorProvider.cs, Splitter.cs,
17356           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
17357           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
17358           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
17359           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
17360           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
17361           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
17362           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
17363           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
17364           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
17365           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
17366           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
17367           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
17368           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
17369           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
17370           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
17371           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
17372           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
17373           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
17374           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
17375           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
17376           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
17377           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
17378           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
17379           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
17380           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
17381           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
17382           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
17383           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
17384           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
17385           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
17386           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
17387           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
17388           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
17389           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
17390           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
17391
17392 2005-09-21  Jackson Harper  <jackson@ximian.com>
17393
17394         * TreeNode.cs: Call Before/After Expand not Collapse when
17395         expanding.
17396
17397 2005-09-20  Jackson Harper  <jackson@ximian.com>
17398         
17399         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
17400
17401 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
17402          
17403         * ListViewItem.cs:
17404                 - Fixes bug 76120
17405                 - Fixes proper storing of subitems
17406                 - Fixes not updated items
17407
17408 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
17409
17410         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
17411           things if our window handle isn't created yet. Also disabled 
17412           debug for TextBoxBase
17413
17414 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
17415
17416         * MenuAPI.cs: Remove filtering of events to allow menu usage
17417
17418 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17419
17420         * Cursor.cs: Allow null to be passed to Cursor.Current.
17421
17422 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
17423
17424         * ThemeWin32Classic.cs:
17425           - Change some private methods/fields to protected virtual so that 
17426             they can be accessed and overriden in derived classes
17427           - First refactoring of some methods. Derived themes now don't 
17428             need to duplicate the complete code from ThemeWin32Classic
17429         * ThemeNice.cs:
17430           - Added nice StatusBar
17431           - Derive from ThemeWin32Classic and not Theme
17432           - Removed duplicate ThemeWin32Classic code
17433
17434 2005-09-20  Miguel de Icaza  <miguel@novell.com>
17435
17436         * Control.cs (ControlCollection.Add): If the value null is passed
17437         the control is ignored. 
17438
17439         Optimize this loop.
17440
17441 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
17442
17443         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
17444           PostQuitMessage state.
17445         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
17446
17447 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
17448
17449         * Application.cs: Our constructor will never get called, move 
17450           initialization to fields; fixes bug #75933
17451
17452 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
17453
17454         * FileDialog.cs :
17455                 - Allow files to be selected properly using file name
17456                 combo box.
17457                 - Add ability to change diretory (absolute / relative)
17458                 using file name combo box.
17459
17460 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
17461          
17462         * ListBox.cs: 
17463                 - Fixes Multicolumn listboxes item wrong calculations
17464                 - Allows to click when only one item is in the listbox
17465                 - Fixes crash when no items using keyboard navigation
17466
17467 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
17468
17469         * ComboBox.cs: Reverted almost everything from the latest patch which
17470           broke ComboBox
17471
17472 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
17473         
17474         * ToolTip.cs:
17475                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
17476         * ComboBox.cs:
17477                 - When DropDownStyle is Simple, it does not show scrollbar 
17478                 to the last item of the list.
17479                 - When DropDownStyle is Simple, it crashed when the list was 
17480                 scrolled down with the down cursor key.
17481                 - Fixed a bug that when DropDownStyle is DropDownList, the 
17482                 selected item was not shown.
17483                 - The position of the selected item was not preserved when 
17484                 the next dropdown happened.
17485         * ThemeWin32Classic.cs:
17486                 - Items were wrapped at the right end.
17487         * CheckedListBox.cs:
17488                 - Fixed Add method
17489         * ListBox.cs:
17490                 - Items should be fully shown.
17491                 - When resizing and vertical scrollbar disappeared, the item 
17492                 of index 0 should be on the top of the list.
17493                 - GetItemRectangle should consider the size of ver. scrollbar
17494         * StatusBar.cs:
17495                 - SizingGrip area should not be allocated when it is not 
17496                 displayed.
17497                 - Now it reflects MinWidth of the containing panel and 
17498                 fixed a crash that happens when its width becomes so small.
17499
17500 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
17501
17502         * CheckedListBox.cs: Fixes bug 76028
17503         * ListBox.cs: Fixes bug 76028
17504
17505 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
17506
17507         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
17508         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
17509
17510 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
17511
17512         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
17513
17514 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17515
17516         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
17517
17518 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17519
17520         * IRootGridEntry.cs: Added
17521         * PropertyGridCommands.cs: Added
17522         * PropertiesTab.cs: Added missing methods and property
17523         * PropertyGridView.cs: Made class internal
17524         * PropertyGridTextBox.cs: Made class internal
17525
17526 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17527
17528         * MimeIcon.cs: Try to check some other environment variables
17529           if "DESKTOP_SESSION" returns "default"
17530
17531 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17532
17533         * ThemeNice.cs: Corrected background colors (e.g. menus)
17534         * ColorDialog.cs: Use correct background colors for controls
17535
17536 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
17537
17538         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
17539
17540 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
17541
17542         * RichTextBox.cs: Added initial implementation
17543         * lang.cs: Removed. Was accidentally checked in long time ago
17544         * TODO: Removed. Contents were obsolete
17545
17546 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
17547                                                                                 
17548         * PropertiesTab.cs : Added
17549
17550 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
17551                                                                                 
17552         * PropertyGrid.cs : Update
17553         * PropertyGridView.cs : Update
17554         * System.Windows.Forms.resx : Added images and strings
17555
17556 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
17557
17558         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
17559  
17560 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
17561
17562         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
17563           a busy loop right after the Ungrab the X11 display is otherwise 
17564           blocked
17565
17566 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
17567
17568         * ThemeWin32Classic.cs: Optimise the use of clipping
17569
17570 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
17571
17572         * DataGrid.cs: fixes recursion bug
17573
17574 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
17575
17576         * ThemeNice.cs: 
17577           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
17578           - Cleanup
17579
17580 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
17581
17582         * ThemeNice.cs: Draw nice ProgressBars
17583
17584 2005-09-01  Miguel de Icaza  <miguel@novell.com>
17585
17586         * VScrollBar.cs: Another buglet found by Aaron's tool. 
17587
17588         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
17589         bug finder.
17590
17591 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
17592
17593         * ThemeNice.cs:
17594           - Added nicer menu drawing
17595           - Updated DrawTab
17596           - some refactoring
17597
17598 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
17599
17600         * CreateParams.cs (ToString): Made output match MS
17601         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
17602             handle is already created (to avoid forcing window creation)
17603         * XplatUIX11.cs: Set window text to caption after creating window,
17604           in case Text was set before window was created
17605         * Form.cs: Use this.Text instead of a static string as caption
17606
17607 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
17608
17609         * NotifyIcon.cs: Don't set the window to visible; this screws
17610           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
17611           OnPaint without a bitmap)
17612         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
17613           happen very often anyway; we could add the check to the WM_PAINT 
17614           event generation code
17615
17616 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
17617
17618         * NotifyIcon.cs: Fill the icon area with a background color, to 
17619           avoid 'residue' when transparent icons are drawn
17620         * XplatUIX11.cs:
17621           - Handle whole_window == client_window when destroying windows
17622           - SystrayAdd(): Set client_window to whole_window value to
17623             get mouse and other events passed to NotifyIcon
17624
17625 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
17626
17627         * Form.cs: Set proper default for Opacity property
17628         * NotifyIcon.cs:
17629           - ShowSystray(): Don't bother creating telling the OS
17630             about the systray item if no icon is provided
17631           - Now handles WM_NCPAINT message to deal with whole/client window
17632             split
17633           - Create window as visible to not get caught by Expose optimization
17634         * Hwnd.cs: Removed debug message
17635         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
17636           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
17637             PaintEventStart/End to use new client argument
17638         * TextBoxBase.cs:
17639           - Commented out debug messages
17640           - Switched PaintEventStart/End to use new client argument
17641         * XplatUI.cs: Added client window bool to PaintEventStart()/
17642           PaintEventEnd() calls, to support drawing in non-client areas
17643         * XplatUIDriver.cs: 
17644           - Added client window bool to PaintEventStart()/PaintEventEnd() 
17645             calls, to support drawing in non-client areas
17646           - Added conditional compile to allow using MWF BeginInvoke 
17647             on MS runtime
17648         * XplatUIX11.cs:
17649           - Added some conditional debug output
17650           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
17651             whole/client window split
17652           - Implemented handling of client argument to PaintEventStart()/End()
17653         * Control.cs:
17654           - Throw exception if BeginInvoke() is called and the window handle
17655             or one of the window's parent handles is not created
17656           - Added conditional compile to allow using MWF BeginInvoke on
17657             MS runtime
17658           - get_Parent(): Only sets parent if handle is created. This avoids
17659             forcing window handle creation when parent is set.
17660           - Now fires Layout and Parent changed events in proper order
17661           - Switched to use Handle instead of window.Handle for Z-Order setting,
17662             the get_Parent() patch above causes us to possibly get null for 'window'
17663           - Implemented handling of client argument to PaintEventStart()/End()
17664           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
17665             default handling)
17666           - Now sends a Refresh() to all child windows when Refresh() is called
17667
17668 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
17669
17670         * Form.cs: Added (non-functional) Opacity property
17671         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
17672
17673 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
17674         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
17675           use export MONO_THEME=nice to activate it.
17676           Currently supported controls:
17677           - Button
17678           - ComboBox
17679           - ScrollBar
17680           - TabControl (TabAlignment.Top only, other will follow)
17681         * ThemeEngine.cs: Add theme nice
17682         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
17683           if enabled
17684
17685 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
17686
17687         * Splitter.cs: Resize docked control and its neighbor.
17688
17689 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17690         -- Making Windows with Menus layout correctly --
17691         * Form.cs : The first leg of the fix
17692                 Menu setter - adjust Client Size as needed to make space for the menu
17693                 SetClientSizeCore - doesn't call base version to be able to pass the 
17694                         menu handle to XplatUI.CalculateWindowRect
17695         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
17696         * XplatUIX11.cs: The critical second leg of the fix
17697                 GetWindowPos needs to use a recalculated client_rect
17698                 so that resizing the window doesn't break layout of child controls. 
17699                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
17700                 Lots of \t\n killed
17701
17702 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
17703
17704         * Label.cs: Now properly recalculates width and height on Font and Text
17705           changes if AutoSize is set
17706
17707 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
17708         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
17709
17710 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
17711
17712         * ImageList.cs: Makes ToString method compatible with MS
17713
17714 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
17715
17716         * MenuAPI.cs: fixes bug 75716
17717
17718 2005-08-11 Umadevi S <sumadevi@novell.com>
17719         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
17720
17721 2005-08-11 Umadevi S <sumadevi@novell.com>
17722         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
17723
17724 2005-08-10  Umadevi S <sumadevi@novell.com>
17725         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
17726
17727 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
17728
17729         * Menu.cs: fixes bug 75700
17730         * MenuAPI.cs: fixes navigation issues
17731
17732 2005-08-09  Umadevi S <sumadevi@novell.com>
17733         * CheckedListBox.cs - simple fix for GetItemChecked.
17734
17735 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
17736
17737         * ComboBox.cs: Serveral fixes
17738         * ListBox.cs: Serveral fixes
17739
17740 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17741
17742         * ComboBox.cs: Fixes FindString methods and GetItemHeight
17743         * ListBox.cs: Fixes FindString methods
17744
17745 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
17746
17747         * DataGrid.cs: fixes bugs exposed by new tests
17748
17749 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
17750
17751         * Mime.cs: Compile Mono assembly references only if compiling
17752           with Mono (Allows to build with VS.Net again)
17753
17754 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
17755
17756         * Control.cs (PaintControlBackground): Draw background image
17757         corrrectly.
17758         (CheckForIllegalCrossThreadCalls): Stubbed.
17759         
17760         * Form.cs (OnCreateControl): Center when should be centered.
17761         
17762         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
17763
17764 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
17765
17766         * Binding.cs: Binding to properties should be case unsensitive
17767
17768 2005-07-18 vlindos@nucleusys.com
17769
17770         * DataGrid.cs: fixes setmember order
17771
17772 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
17773
17774         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
17775         * FileDialog.cs: FileDialog is now resizable and uses the new
17776           MimeIconEngine
17777
17778 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
17779
17780         * DataGridTextBoxColumn.cs: default value
17781         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
17782         * GridTableStylesCollection.cs: fixes checking MappingName
17783         * DataGridDrawingLogic.cs: fixes drawing logic issues
17784         * DataSourceHelper.cs: rewritten to make compatible with more data sources
17785         * DataGrid.cs: fixes    
17786
17787 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
17788
17789         * MimeGenerated.cs: Use case sensitive comparer for
17790           NameValueCollections
17791
17792 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
17793
17794         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
17795         * ThemeWin32Classic.cs: bug fixes, code refactoring
17796         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
17797         * DataGrid.cs: bug fixes, code refactoring
17798         * DataGridTextBox.cs: bug fixes, code refactoring
17799         * DataGridColumnStyle.cs:  bug fixes, code refactoring
17800         * Theme.cs:  bug fixes, code refactoring
17801
17802 2005-07-01  Peter Bartok  <pbartok@novell.com> 
17803
17804         * TextControl.cs: Quick fix for the reported crash on ColorDialog
17805           and other text box usage
17806
17807 2005-07-01  Jackson Harper  <jackson@ximian.com>
17808
17809         * TabControl.cs: Make sure the bottom of the tab covers the pages
17810         border.
17811
17812 2005-06-30  Peter Bartok  <pbartok@novell.com> 
17813
17814         * Form.cs (ShowDialog): Assign owner of the dialog
17815         * TextBoxBase.cs: Always refresh caret size when deleting, caret
17816           might have been moved to a tag with different height
17817
17818 2005-06-30  Jackson Harper  <jackson@ximian.com>
17819
17820         * Form.cs: Don't create an infinite loop when setting focus
17821         * MenuItem.cs: Don't dirty the parents if we don't have any
17822
17823 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
17824
17825         * LibSupport.cs: Rename
17826
17827 2005-06-29  Peter Bartok  <pbartok@novell.com>
17828
17829         * TextBoxBase.cs: Re-align caret after deleting a character
17830         * TextControl.cs:
17831           - DeleteChars(): Ensure that tag covers the provided position
17832           - StreamLine(): Drop reference for dropped tag
17833
17834 2005-06-29  Peter Bartok  <pbartok@novell.com> 
17835
17836         * TextControl.cs: 
17837           - Selections now work properly, anchoring at the initial location
17838             and properly extending in either direction (SetSelectionToCaret(),
17839             SetSelectionStart() and SetSelectionEnd())
17840           - No longer redraws the whole control on selection change, now
17841             calculates delta between previous and new selection and only
17842             invalidates/redraws that area
17843           - Fixed FindPos() math off-by-one errors
17844           - Changed DeleteChars() to verify the provided tag covers the
17845             provided position, selections may have a tag that doesn't cover
17846             the position if the selection is at a tag border
17847           - Fixed off-by-one errors in DeleteChars()
17848           - Added missing streamlining check in DeleteChars() to remove
17849             zero-length tags
17850           - Implemented Invalidate() method, now properly calculates exposures
17851             between two given lines/positions
17852           - Implemented SetSelection()
17853           - Obsoleted and removed FixupSelection()
17854           - Improved RecalculateDocument() logic, removing code duplication
17855
17856 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17857
17858         * LibSupport.cs: changes to match different input/output arguments.
17859
17860 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17861
17862         * LibSupport.cs: added libsupport.so init routine.
17863
17864 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
17865         
17866         * ControlBindingsCollection.cs
17867                 - Throws an exception on null datasource when adding
17868                 - Checks for duplicated bindings when adding
17869
17870 2005-06-28  Jackson Harper  <jackson@ximian.com>
17871
17872         * TreeView.cs (OnKeyDown): Support left and right properly
17873         (navigates as well as expanding and collapsing.
17874         - Add support for Multiply, this expands all the selected nodes
17875         children.
17876         - Fix some tabbing.
17877
17878 2005-06-28  Jackson Harper  <jackson@ximian.com>
17879
17880         * TreeView.cs: Implement keyboard navigation, currently supports,
17881         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
17882         support for toggling checkboxes with the space bar.
17883
17884 2005-06-28  Jackson Harper  <jackson@ximian.com>
17885
17886         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
17887         tree.
17888
17889 2005-06-28  Jackson Harper  <jackson@ximian.com>
17890
17891         * TreeView.cs: Add missing event.
17892
17893 2005-06-27  Peter Bartok  <pbartok@novell.com> 
17894
17895         * TextControl.cs:
17896           - Made line ending size configurable (now allows for counting 
17897             lineendings as \n or \r\n)
17898           - Added margin to viewport to keep caret visible on right side
17899           - Fixed translation routines for line/pos to documentpos to consider
17900             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
17901           - Fixed some line-endings to be unix style
17902           - Fixed Document.FormatText to perform it's calculations 1-based
17903           - Added descriptions for a few methods that might otherwise get 
17904             used wrong
17905           - Added NOTE section with some basic conventions to remember at 
17906             the top of the file
17907           - Major fixup for RichTextBox selection drawing:
17908             * Fixed crashes when multiple tags on a single line were selected
17909             * fixed selection box drawing not overlaying text
17910             * fixed bogus offset calculation for tags not starting at index 1
17911             * Switched behaviour from using multiple Substrings of a 
17912               StringBuilder.ToString() to using multiple 
17913               StringBuilder.ToString(start, length) statements, hoping this is
17914               faster (kept original version commented out in the code, in case
17915               original version was faster)
17916         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
17917           alignment != Left
17918         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
17919           call it as well
17920
17921 2005-06-27  Jackson Harper  <jackson@ximian.com>
17922
17923         * TabControl.cs: Move to the left and right with the arrow
17924         keys. These keys don't cycle beyond first and last like
17925         tab. Refresh all the tabs when scrolling them to the left or
17926         right.
17927
17928 2005-06-27  Jackson Harper  <jackson@ximian.com>
17929
17930         * TabControl.cs:
17931           - ToString: Added method
17932           - CreateParams: Remove TODO and comment
17933           - OnKeyDown: Cycle through bounds properly.
17934           - SelectedIndex: Scroll to the right or left if we need to
17935           display the newly selected tab.
17936
17937 2005-06-23  Jackson Harper  <jackson@ximian.com>
17938
17939         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
17940         set.
17941
17942 2005-06-23  Jackson Harper  <jackson@ximian.com>
17943
17944         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
17945         CTRL-SHIFT-TAB, and HOME, END are there any others?
17946
17947 2005-06-23  Jackson Harper  <jackson@ximian.com>
17948
17949         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
17950
17951 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17952         
17953         * DataGridTextBoxColumn.cs: fixes and enhancements
17954         * ThemeWin32Classic.cs: fixes and enhancements
17955         * DataGridBoolColumn.cs:  fixes and enhancements
17956         * DataGridDrawingLogic.cs:  fixes and enhancements
17957         * CurrencyManager.cs: fixes and enhancements
17958         * DataGrid.cs: fixes and enhancements
17959         * DataGridColumnStyle.cs:  fixes and enhancements
17960
17961 2005-06-22  Jackson Harper  <jackson@ximian.com>
17962
17963         * TabControl.cs: Add some missing methods that just call into the
17964         base. Make the TabPageCollection's IList interface behave in the
17965         same manner as the MS implementation.
17966
17967 2005-06-22  Peter Bartok  <pbartok@novell.com> 
17968
17969         * TextControl.cs: Added sanity check
17970         * TextBoxBase.cs: 
17971           - Fixed wrapping behaviour, don't set wrap on single line controls
17972             (this fixes the breakage of colordialog introduced in an earlier
17973              checkin)
17974           - Added rudimentary support for autoscrolling right-aligned controls
17975             (still needs fixing, also, center alignment scroll is missing)
17976
17977 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17978         
17979         * ScrollBar.cs: Fixes thumbpos on Maximum values
17980
17981 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
17982         
17983         * PropertyGridView.cs: Pass context information to UITypeEditors 
17984
17985 2005-06-21  Peter Bartok  <pbartok@novell.com> 
17986
17987         * TextBoxBase.cs:
17988           - Now calling PositionCaret with absolute space coordinates
17989           - Enabled vertical scrolling
17990           - Better tracking of scrollbar changes, tied into WidthChange
17991             event
17992           - Improved cursor tracking
17993           - Removed debug output
17994         * TextControl.cs:
17995           - PositionCaret coordinates are now works in absolute space, not 
17996             the canvas
17997           - Improved tracking of document size
17998           - Added events for width and height changes
17999
18000 2005-06-21  Peter Bartok  <pbartok@novell.com>
18001
18002         * Form.cs: Set focus to active control when form is activated
18003         * TextControl.cs: 
18004           - Added word-wrap functionality to RecalculateLine() 
18005           - Added some short function descriptions for VS.Net to aid in
18006             writing dependent controls
18007           - Added Caret property, returning the current coords of the caret
18008           - Added ViewPortWidth and ViewPortHeight properties
18009           - Added Wrap property
18010           - Added CaretMoved event
18011           - Removed some old debug code
18012           - Split() can now create soft splits
18013           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
18014           - Added method to format existing text
18015           - Fixed size/alignment calculations to use viewport
18016           - RecalculateDocument now can handle changing line-numbers while
18017             calculating lines
18018
18019         * TextBox.cs:
18020           - Added some wrap logic, we don't wrap if alignment is not left
18021           - Added casts for scrollbar var, base class switched types to
18022             also support RichTextBoxA
18023           - Implemented handling of scrollbar visibility flags
18024
18025         * TextBoxBase.cs:
18026           - Switched scrollbars type to RichTextBoxScrollBars to support
18027             RichTextBox
18028           - Added tracking of canvas width/height
18029           - Switched scrollbars to be not selectable (to keep focus on text)
18030           - Added central CalculateDocument() method to handle all redraw
18031             requirements
18032           - Added ReadOnly support
18033           - Added WordWrap support
18034           - Fixed handling of Enter key (we now treat it as a DialogKey)
18035           - Fixed caret positioning when h or v scroll is not zero
18036           - Fixed placing/generation of vertical scrollbar
18037           - Added CalculateScrollBars() method to allow updating scrollbar
18038             limits and visibility
18039           - Fixed handling of horizontal scroll
18040           - Added handling of vertical scroll
18041           - Implemented auto-'jump' when caret moves to close to a left or
18042             right border and there is text to be scrolled into view (currently
18043             there's the potential for a stack overflow, until a bug in
18044             scrollbar is fixed)
18045
18046 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
18047         
18048         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
18049
18050 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
18051
18052         * Mime.cs:
18053         - added inodes.
18054         - return application/x-zerosize for files with size zero
18055           (if no extension pattern matches).
18056         - check matches collection for strings too.
18057         - return only the first mime type if the name value
18058           collection has more than one mime type.
18059
18060 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
18061         
18062         * PropertyGrid.cs: Cleaned up some TODOs
18063         * PropertyGridView.cs: Added support for UITypeEditors
18064
18065 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18066         
18067         * DataGrid.cs: clears cached value
18068
18069 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
18070
18071         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
18072         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
18073         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
18074         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
18075         
18076 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
18077
18078         * ThemeWin32Classic.cs: fixes colour
18079
18080 2005-06-15  Peter Bartok  <pbartok@novell.com>
18081
18082         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
18083         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
18084         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
18085         * Control.cs: Added some MWFCategory and MWFDescription attributes
18086         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
18087
18088 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
18089
18090         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
18091         usage
18092
18093 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
18094
18095         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
18096         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
18097         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
18098         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
18099         * DataGrid.cs: default datagrid settings for Default Styles, fixes
18100         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
18101
18102 2005-06-13  Jackson Harper  <jackson@ximian.com>
18103
18104         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
18105         isn't printed when the user enables dropping. (X11 does accept
18106         drops).
18107         
18108 2005-06-13  Jackson Harper  <jackson@ximian.com>
18109
18110         * TreeView.cs: Remove some TODOS.
18111
18112 2005-06-13  Jackson Harper  <jackson@ximian.com>
18113
18114         * Form.cs: Hook into the mdi framework.
18115         * MdiClient.cs: Use the base control collections add method so
18116         parents get setup correctly. Set the default back colour and dock
18117         style.
18118         * MdiChildContext.cs: New class, this bad actor handles an
18119         instance of an MDI window. Right now there is only basic
18120         support. You can drag, close, and resize windows. Minimize and
18121         Maximize are partially implemented.
18122
18123 2005-06-13  Jackson Harper  <jackson@ximian.com>
18124
18125         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
18126         freaky when both vals are negative. NOTE: There are probably other
18127         places in XplatUIX11 that this needs to be done.
18128
18129 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
18130
18131         * DataGrid.cs: implement missing methods, move KeyboardNavigation
18132         * DataGridColumnStyle.cs: fixes signature
18133
18134 2005-06-12  Jackson Harper  <jackson@ximian.com>
18135
18136         * XplatUIX11.cs: Use sizing cursors similar to the ones on
18137         windows.
18138
18139 2005-06-11  Jackson Harper  <jackson@ximian.com>
18140
18141         * StatusBarPanel.cs: Signature cleanups. Implement
18142         BeginInit/EndInit.
18143
18144 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
18145
18146         * DataGridTextBoxColumn.cs: Honors aligment
18147         * GridColumnStylesCollection.cs: Contains is case unsensitive
18148         * GridTableStylesCollection.cs: several fixes
18149         * DataGridTableStyle.cs: default column creation
18150         * DataGridDrawingLogic.cs: fixes
18151         * CurrencyManager.cs: ListName property
18152         * DataGrid.cs: multiple styles support
18153         * DataGridColumnStyle.cs: fixes
18154         
18155
18156 2005-06-10  Peter Bartok  <pbartok@novell.com>
18157
18158         * Control.cs(Select): Moved SetFocus call to avoid potential
18159           loops if controls change the active control when getting focus
18160         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
18161           the up/down buttons
18162
18163 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
18164
18165         * ImageListConverter.cs: Implemented
18166
18167 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18168
18169         * MonthCalendar.cs: Wired in NumericUpDown control for year
18170
18171 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
18172
18173         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
18174           DoubleClick events, since they are not meant to be fired.
18175
18176 2005-06-09  Peter Bartok  <pbartok@novell.com>
18177
18178         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
18179           Jonathan's standalone controls into MWF, implemented missing
18180           events, attributes and methods; added xxxAccessible classes
18181         * AccessibleObject.cs: Made fields internal so other classes
18182           can change them if needed
18183
18184 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
18185
18186         * UpDownBase.cs: Complete implementation
18187         * NumericUpDown.cs: Complete implementation
18188         * DomainUpDown.cs: Complete implementation
18189
18190 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
18191
18192         * DataGridTextBoxColumn.cs: drawing fixes
18193         * DataGridCell.cs: fixes ToString method to match MSNet
18194         * DataGridTableStyle.cs: fixes
18195         * DataGridBoolColumn.cs: fixes, drawing
18196         * DataGridDrawingLogic.cs: fixes, new methods
18197         * DataGridTextBox.cs: Keyboard and fixes
18198         * DataGrid.cs:
18199                 - Keyboard navigation
18200                 - Scrolling fixes
18201                 - Row selection (single, multiple, deletion, etc)
18202                 - Lots of fixes
18203         
18204 2005-06-07  Jackson Harper  <jackson@ximian.com>
18205
18206         * ThemeWin32Classic.cs: Clear the background area when drawing
18207         buttons.
18208
18209 2005-06-06  Peter Bartok  <pbartok@novell.com>
18210
18211         * ImageListStreamer.cs: Fixed signature for GetData
18212         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
18213         * ComboBox.cs:
18214           - Added missing ChildAccessibleObject class
18215           - Added missing OnXXXFocus overrides, switched to using those
18216             instead of the event handler
18217         * Control.cs:
18218           - Added Parent property for ControlAccessibleObject
18219           - Fixed signatures
18220           - Fixed attributes
18221           - Added ResetBindings()
18222         * ListBindingConverter.cs: Implemented some methods
18223         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
18224         * ImageList.cs: Implemented basic handle scheme, removed TODOs
18225         * ContainerControl.cs: Fixed signature, now subscribing to the
18226           ControlRemoved event instead of overriding the handler, LAMESPEC
18227         * CurrencyManager.cs: Added missing attribute
18228         * MonthCalendar.cs: Added missing properties
18229
18230 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18231
18232         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
18233         
18234 2005-06-06  Gaurav Vaish and Ankit Jain
18235
18236         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
18237         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
18238         
18239 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
18240
18241         * Control.cs: fixes CreateParams Width / Height.
18242
18243 2005-06-05  Peter Bartok  <pbartok@novell.com>
18244
18245         * Win32DnD.cs: Removed compilation warnings
18246
18247 2005-06-05  Peter Bartok  <pbartok@novell.com>
18248
18249         * Control.cs (CreateParams): Since we don't know if one of the
18250           properties we use is overridden, lets make sure if we fail accessing
18251           we continue with a backup plan
18252
18253 2005-06-05  Peter Bartok  <pbartok@novell.com>
18254
18255         * Win32DnD.cs:
18256           - Removed debug output
18257           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
18258             struct
18259           - Plugged resource leak
18260         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
18261           MS size
18262
18263 2005-06-05  Peter Bartok  <pbartok@novell.com>
18264
18265         * XplatUIWin32.cs: Removed DnD code
18266         * Win32DnD.cs: Implemented drop source and drop target functionality
18267
18268 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18269
18270         * UpDownBase.cs: remove duplicate addition of event, enable some code
18271         that was commented out.
18272         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
18273         Validate input when a key is pressed. It works fine now for every
18274         combination of Hexadecimal. Only missing some drawing love when sharing
18275         space with other controls.
18276
18277 2005-06-04  Peter Bartok  <pbartok@novell.com>
18278
18279         * Control.cs:
18280           - We need to pass a window for DragDrop, so enable callback events
18281           - Added DnD callback events when being a DragSource
18282         * XplatUI.cs (StartDrag): Added window handle argument
18283         * XplatUIDriver.cs (StartDrag): Added window handle argument
18284         * QueryContinueDragEventArgs: Made fields internally accessible so
18285           drivers can set them
18286         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
18287           can set them
18288
18289 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
18290
18291         * DataGridTextBoxColumn.cs: column text editing
18292         * DataGridTableStyle.cs: Respect columns styles created by the user
18293         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
18294         * DataGridBoolColumn.cs: bool column editing
18295         * DataGrid.cs: fixes to scrolling, properties, etc
18296         * DataGridTextBox.cs: handle keyboard
18297         * DataGridColumnStyle.cs: fixes
18298
18299 2005-06-02  Jackson Harper  <jackson@ximian.com>
18300
18301         * ImageListStreamer.cs: Somewhat broken implementation of
18302         GetObjectData. The RLE needs some work to match MS properly.
18303
18304 2005-06-02  Jackson Harper  <jackson@ximian.com>
18305
18306         * X11Dnd.cs: Attempting to keep at least one file in MWF
18307         monostyled.
18308
18309 2005-06-02  Peter Bartok  <pbartok@novell.com>
18310
18311         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
18312           that way
18313
18314 2005-06-02  Peter Bartok  <pbartok@novell.com>
18315
18316         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
18317         * XplatUI.cs: Added DoDragDrop() method
18318         * XplatUIDriver.cs: Added DoDragDrop() method
18319
18320 2005-06-02  Jackson Harper  <jackson@ximian.com>
18321
18322         * Splitter.cs: Implement BorderStyle.
18323
18324 2005-06-02  Jackson Harper  <jackson@ximian.com>
18325
18326         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
18327         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
18328         X11 using XDND.
18329
18330 2005-06-02  Peter Bartok  <pbartok@novell.com>
18331
18332         * DataObject.cs:
18333           - Added Data setter
18334           - Fixed broken insertion code for SetData, now also
18335             overwrites any existing entry of the same format name
18336         * Hwnd.cs: Added list of pointers that automatically gets
18337           freed when the window is disposed
18338         * XplatUI.cs: Call driver initialization method when loading
18339           a driver
18340         * Control.cs:
18341           - OnDragLeave takes EventArgs, not DragEventArgs
18342           - Added setting of WS_EX_ACCEPTFILES style when dropping is
18343             supported
18344           - Forces style update when drop state changes
18345         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
18346           not perfect since we cannot (yet) call the IDataObject.GetData()
18347           method, we keep getting 0x80004005 error, dunno why)
18348
18349 2005-06-02  Peter Bartok  <pbartok@novell.com>
18350
18351         * DragEventArgs.cs: Make fields internal so we can cache the
18352           object and re-set the fields from XplatUI
18353
18354 2005-06-02  Jackson Harper  <jackson@ximian.com>
18355
18356         * Control.cs: Add some internal methods so the DnD subsystem can
18357         raise DnD events. Also call into the driver when AllowDrop is set.
18358         * XplatUI.cs:
18359         * XplatUIDriver.cs: New method for setting whether or not a window
18360         is allowed to accept drag and drop messages.
18361                 
18362 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
18363         
18364         * ScrollBar.cs: Make sure that values sent in Scroll events
18365         are always between Maximum and Minimum.
18366
18367 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
18368
18369         * Menu.cs: Call MenuChanged when menuitem visibility has been
18370         changed.
18371         * MenuItem.cs: Rebuild menu when item is (not) visible.
18372         * MainMenu.cs: MainMenu has special MenuChanged.
18373         * Theme.cs: Caption and FrameBorderSize are not fixed.
18374         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
18375         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
18376         * XplatUIX11.cs,
18377         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
18378         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
18379
18380 2005-05-30  Jackson Harper  <jackson@ximian.com>
18381
18382         * DataFormat.cs: We can't statically initialize this stuff because
18383         it calls into the xplatui and could create a loop. So we lazy init
18384         it.
18385
18386 2005-05-28  Jackson Harper  <jackson@ximian.com>
18387
18388         * Control.cs: Proper implementation of Product(Name/Version).
18389
18390 2005-05-27  Jackson Harper  <jackson@ximian.com>
18391
18392         * DataObject.cs: Dont crash if no data is found.
18393
18394 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
18395         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
18396                 as per status page, guessing it should be set to true
18397
18398 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
18399
18400         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
18401         * DataGridTableStyle.cs: set proper formatting text, def header text
18402         * ThemeWin32Classic.cs: new themable paramaters
18403         * DataGridBoolColumn.cs: paint check box, get data, fixes
18404         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
18405         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
18406         * DataGridColumnStyle.cs: fixes
18407         * Theme.cs: new themable paramaters
18408                 
18409 2005-05-26  Peter Bartok  <pbartok@novell.com>
18410
18411         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
18412
18413 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18414         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
18415
18416 2005-05-24  Peter Bartok  <pbartok@novell.com>
18417
18418         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
18419           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
18420           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
18421           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
18422           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
18423           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
18424           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
18425           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
18426           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
18427           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
18428           missing attributes, etc
18429         * DataGridPreferredColumnWidthTypeConverter.cs: Added
18430
18431 2005-05-24  Peter Bartok  <pbartok@novell.com>
18432
18433         * Help.cs: Added, implemented trivial functions, throws up MessageBox
18434           when user tries to get help
18435         * DataObject.cs, DataFormats.cs, LinkArea.cs,
18436           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
18437           to suppress warnings
18438         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
18439           avoid unreachable code warning
18440
18441 2005-05-20  Peter Bartok  <pbartok@novell.com>
18442
18443         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
18444
18445 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18446
18447         * DataGridTextBoxColumn.cs: Basic painting methods
18448         * DataGridTableStyle.cs: Set table style in the column
18449         * ThemeWin32Classic.cs: Use Theme for colors
18450         * DataGridDrawingLogic.cs: Implement more drawing
18451         * DataGrid.cs: drawing, theming, enhacements, fixes
18452         * DataGridColumnStyle.cs: fixes, drawing
18453         * Theme.cs: theming for Datagrid
18454
18455 2005-05-20  Peter Bartok  <pbartok@novell.com>
18456
18457         * Cursor.cs: Implemented GetObjectData() method
18458
18459 2005-05-20  Peter Bartok  <pbartok@novell.com>
18460
18461         * Cursors.cs: Added setting of cursor name
18462         * Cursor.cs:
18463           - Implemented constructors
18464           - Implemented Draw and DrawStretched
18465           - Implemented Current property
18466           - Implemented == and != operators
18467           - Implemented Dispose()
18468           - Implemented ToString
18469           - Added missing attributes
18470         * XplatUIX11.cs:
18471           - Added missing reset for OverrideCursor when DoEvents is called
18472           - Fixed creation of cursor, logic was wrong
18473         * XplatUIWin32.cs:
18474           - Added missing reset for OverrideCursor when DoEvents is called
18475           - Fixed creation of cursor, bit arrays were swapped
18476         * Clipboard.cs: Removed obsolete MonoTODO attribute
18477
18478 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18479
18480         * ComboBox.cs: fixes OnSelectedItemChanged
18481         * ControlBindingsCollection.cs: fixes item range check
18482
18483 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
18484
18485         * UpDownBase.cs:
18486                 - Calc preferred height properly
18487                 - Implement missing properties
18488                 
18489         * NumericUpDown.cs: Implement missing events
18490
18491 2005-05-19  Jackson Harper  <jackson@ximian.com>
18492
18493         * TabControl.cs: New method that resizes the tab pages before
18494         redrawing them. This as needed as the control is double buffered
18495         and sizing will not be recalculated unless ResizeTabPages is
18496         called.
18497         * TabPage.cs: Set base.Text instead of Text in the constructor so
18498         that UpdateOwner does not get called. Use the new Redraw method of
18499         TabControl instead of Refresh so the sizing is recalculated.
18500         * ThemeWin32Classic.cs: Draw the text for button tabs.
18501
18502 2005-05-19  Jackson Harper  <jackson@ximian.com>
18503
18504         * Control.cs: Paint control background images. Fix typo where
18505         PaintControlBackground was not getting called correctly.
18506
18507 2005-05-19  Peter Bartok  <pbartok@novell.com>
18508
18509         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
18510           I can investigate, apparently I broke FileDialog
18511
18512 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
18513
18514         * AxHost.cs: Some simple properties.
18515         * Control.cs: window must be accessible after ctor.
18516         * Form.cs: Added TransparencyKey property.
18517         * TextBoxBase.cs: Implemented Clear. Text property can be null.
18518         * XplatUIWin32.cs: SetBorderStyle implemented.
18519
18520 2005-05-18  Peter Bartok  <pbartok@novell.com>
18521
18522         * DataObject.cs: Entries are not global but particular to the
18523           DataObject, now it behaves that way
18524         * XplatUIWin32.cs: Implemented Clipboard methods
18525         * Clipboard.cs: Implemented
18526         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
18527         * XplatUIOSX.cs: Updated to final clipboard prototypes
18528         * XplatUIX11.cs: Implemented Clipboard methods
18529         * XplatUIDriver.cs: Updated to final clipboard prototypes
18530         * XplatUIStructs.cs:
18531           - Added BITMAPINFOHEADER struct
18532           - Added ClipboardFormats enum
18533         * X11Structs.cs:
18534           - Added ClipboardStruct
18535           - Added Atom enum items for clipboard types
18536           - Fixed atom types for Selection event structures
18537         * DataFormats.cs:
18538           - Added internal properties and methods for drivers to enumerate
18539             all known formats
18540           - Switched initialization method to allow drivers to assign their
18541             own IDs even for the MS predefined clipboard IDs
18542         * XplatUI.cs: Updated to final clipboard interface
18543
18544 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18545         * PropertyGridView.cs: Fixed compiler warnings.
18546
18547 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
18548         * PropertyGrid.cs: Added some event calls
18549         * PropertyGridView.cs: Change drawing code to use double buffering
18550         * PropertyGridTextBox.cs: Changed Text property name
18551         * GridItem.cs: Added Bounds property.
18552         * GridEntry.cs: Added Bounds property.
18553
18554 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
18555
18556         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
18557         since GetType() may not return the correct type if the object is
18558         a remoting proxy.
18559
18560 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
18561
18562         * TreeNodeCollection.cs: fixes get/set item ranges
18563         
18564 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
18565
18566         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
18567                 
18568 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
18569
18570         * ComboBox.cs: Fix item range comparation
18571         * ListView.cs: Fix item range comparation
18572
18573 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
18574
18575         * FontDialog.cs:
18576           - Clear example panel when OnPaint is called
18577           - Better solution for displaying the example panel text
18578           - Select default indexes in the ListBoxes
18579
18580 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
18581
18582         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
18583
18584 2005-05-11  Peter Bartok  <pbartok@novell.com>
18585
18586         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
18587         * SelectionRangeConverter.cs: Implemented
18588         * PropertyGrid.cs: Fixed attribute value
18589         * Control.cs:
18590           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
18591           - Added Sebastien Pouliot's CAS Stack Propagation fixes
18592         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
18593           that's common to all drivers. First methods to go there are
18594           Sebastien Pouliot's CAS Stack Propagation helper methods
18595         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
18596           Sebastien Pouliot for CAS Stack Propagation
18597
18598 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
18599
18600         * OSXStructs.cs:
18601           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
18602
18603 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
18604
18605         * DataGridTextBoxColumn.cs: fixed some members
18606         * GridColumnStylesCollection.cs: indexed column is case insensitive
18607         * DataGridTableStyle.cs: fixes
18608         * ThemeWin32Classic.cs: add new theme parameter
18609         * Theme.cs: add new theme parameter
18610         * DataGridDrawingLogic.cs: Datagrid's drawing logic
18611         * DataGrid.cs: fixes, new internal properties, etc.
18612         * DataGridColumnStyle.cs: allows to set grid value
18613         *
18614
18615 2005-05-10  Peter Bartok  <pbartok@novell.com>
18616
18617         * AccessibleObject.cs:
18618           - Removed MonoTODO attribute on help, method is correct
18619           - Fixed Bounds property
18620         * AxHost.cs: Moved MonoTODO
18621         * ButtonBase.cs: Now setting AccessibleObject properties
18622         * RadioButton.cs: Setting proper AccessibleObject role
18623         * CheckBox.cs: Setting proper AccessibleObject role
18624         * ControlBindingsCollection.cs: Added properties, methods and attributes
18625         * DataFormats.cs: Fixed awkward internal API, and changed to enable
18626           userdefined DataFormats.Format items as well
18627         * ListControl.cs: Removed data_member from the public eye
18628         * OpenFileDialog.cs:
18629           - Made class sealed
18630           - Added missing attributes
18631         * SaveFileDialog.cs: Added missing attributes
18632         * ImageListStreamer.cs: Fixed code that caused warnings
18633         * LinkLabel.cs: Removed unreachable code
18634         * TreeView.cs: Fixed code that caused warnings
18635         * PropertyGridView.cs: Fixed code that caused warnings
18636         * GridColumnStylesCollection.cs: Added missing attributes
18637         * GridTableStylesCollection: Added missing attribute
18638         * PropertyManager: Added .ctor
18639         * SecurityIDType: Added
18640         * DataObject.cs: Implemented class
18641         * LinkArea.cs: Added missing attribute
18642
18643 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
18644
18645         * RadioButton.cs: call base method to allow to fire OnClick event
18646         * UpDownBase.cs: OnMouseUp call base method
18647         * CheckedListBox.cs: call base method before returning
18648         * TrackBar.cs: call base method before returning
18649         
18650
18651 2005-05-10  Peter Bartok  <pbartok@novell.com>
18652
18653         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
18654           for messages
18655
18656 2005-05-10  Peter Bartok  <pbartok@novell.com>
18657
18658         * DataFormats.cs: Implemented
18659         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
18660           XplatUIX11.cs: Added Clipboard APIs
18661         * XplatUIWin32.cs: Implemented Clipboard APIs
18662         * FolderBrowserDialog.cs: Added missing event, attributes
18663
18664 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
18665
18666         * CheckBox.cs: call base method to allow to fire OnClick event
18667
18668 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
18669
18670         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
18671
18672 2005-05-06  Peter Bartok  <pbartok@novell.com>
18673
18674         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
18675         * Screen.cs: Implemented
18676         * HelpNavigator.cs: Added
18677         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
18678           property
18679         * HelpProvider.cs: Implemented all we can do until we have a CHM
18680           help library (which means that "What's This" does work now)
18681
18682 2005-05-06  Jackson Harper  <jackson@ximian.com>
18683
18684         * XplatUIX11.cs: Fix waking up the main loop.
18685                 
18686 2005-05-05  Peter Bartok  <pbartok@novell.com>
18687
18688         * XplatUI.cs: Updated revision
18689         * Form.cs: Removed enless loop
18690         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
18691         * Label.cs (OnPaint): Added call to base.OnPaint()
18692         * ToolTip.cs: Made ToolTipWindow reusable for other controls
18693         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
18694         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
18695         * AxHost.cs: Added
18696         * ButtonBase.cs: Moved base.OnPaint() call to end of method
18697         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
18698           to ToolTip.ToolTipWindow for drawing and size methods; this allows
18699           reuse of ToolTipWindow by other controls
18700         * SizeGrip.cs: Moved base.OnPaint() call to end of method
18701         * XplatUIX11.cs: Now clipping drawing area (experimental)
18702         * PictureBox.cs: Moved base.OnPaint() call to end of method
18703         * Theme.cs: Fixed ToolTip abstracts to match new format
18704         * ErrorProvider.cs: Implemented
18705
18706 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
18707
18708         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
18709         * LinkLabel.cs:
18710                 - Adds cursors
18711                 - Handles focus
18712                 - Implements LinkBehavior
18713                 - Fixes many issues
18714
18715 2005-05-03  Jackson Harper  <jackson@ximian.com>
18716
18717         * ListView.cs: Calculate the scrollbar positioning on resize and
18718         paint, so they get put in the correct place.
18719
18720 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
18721
18722         * ColorDialogs.cs: The small color panels are now handled by
18723           SmallColorControl. This fixes drawing of the focus rectangle
18724           and adds a 3D border.
18725
18726 2005-05-03  Peter Bartok  <pbartok@novell.com>
18727
18728         * Control.cs: Modified version of Jonathan Chamber's fix for
18729           double-buffering
18730
18731 2005-05-03  Jackson Harper  <jackson@ximian.com>
18732
18733         * ListView.cs: Remove redraw variable. Control now handles whether
18734         or not a redraw needs to be done, and will only raise the paint
18735         event if redrawing is needed.
18736
18737 2005-05-03  Jackson Harper  <jackson@ximian.com>
18738
18739         * Splitter.cs: No decorations for the splitter form. Cache the
18740         hatch brush.
18741
18742 2005-05-03  Jackson Harper  <jackson@ximian.com>
18743
18744         * TreeView.cs: Use dashed lines to connect nodes. Use the
18745         ControlPaint method for drawing the focus rect instead of doing
18746         that in treeview.
18747
18748 2005-05-02  Peter Bartok  <pbartok@novell.com>
18749
18750         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
18751
18752 2005-04-29  Jackson Harper  <jackson@ximian.com>
18753
18754         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
18755         entire image buffer. Just clear the clipping rectangle.
18756
18757 2005-04-29  Jackson Harper  <jackson@ximian.com>
18758
18759         * ThemeWin32Classic.cs: Don't draw list view items that are
18760         outside the clipping rectangle.
18761
18762 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
18763
18764         * ListBox.cs: added horizontal item scroll
18765
18766 2005-04-29  Jackson Harper  <jackson@ximian.com>
18767
18768         * ThemeWin32Classic.cs: Remove some old debug code that was
18769         causing flicker with the new double buffering code.
18770
18771 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
18772
18773         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
18774         behave like combobox and comboboxlist (still not sure if this is
18775         correct though).
18776
18777 2005-04-28  Jackson Harper  <jackson@ximian.com>
18778
18779         * ThemeWin32Classic.cs: Don't fill the middle of progress
18780         bars. This fills areas outside of the clip bounds that don't need
18781         to be filled.
18782
18783 2005-04-28  Jackson Harper  <jackson@ximian.com>
18784
18785         * Control.cs: Don't expose functionality to touch the image buffers.
18786         * ProgressBar.cs:
18787         * ListView.cs: We do not need to (and no longer can) manipulate
18788         the image buffers directly. All of this is handled by Control.
18789
18790 2005-04-28  Peter Bartok  <pbartok@novell.com>
18791
18792         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
18793           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
18794           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
18795
18796 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
18797
18798         * Combobox:
18799                 - Adjust control's height for non-simple comboboxes (bug fix)
18800                 - Remove dead code
18801         * MenuAPI.cs: remove unused var
18802         * ScrollBar.cs: remove unsed var
18803                  
18804         * ListBox.cs: unselect items when clearing
18805
18806 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
18807
18808         * ListControl.cs: honors OnPositionChanged and default Selected Item
18809         * ListBox.cs: unselect items when clearing
18810
18811 2005-04-27  Jackson Harper  <jackson@ximian.com>
18812
18813         * X11Keyboard.cs: Initialize a default keyboard and give a warning
18814         if a "correct" keyboard is not found. This will make us not crash,
18815         but might give some users bad keyboard layouts...seems to be the
18816         same thing rewind does.
18817
18818 2005-04-27  Jackson Harper  <jackson@ximian.com>
18819
18820         * BindingManagerBase.cs: Attach the current/position changed
18821         handlers to their respective events.
18822
18823 2005-04-27  Jackson Harper  <jackson@ximian.com>
18824
18825         * Control.cs: Make sure that the first WM_PAINT does a full draw,
18826         not just a blit.
18827         * ThemeWin32Classic.cs: Don't fill the background for picture
18828         boxes. This could overright user drawing.
18829         * ComboBox.cs: Just fill the clipping rect not the entire client
18830         rect when drawing the background. This prevents pieces of the
18831         image buffer from getting overwritten and is theoretically faster.
18832
18833 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
18834
18835         * ComboBox.cs: Databinding support fixes, fire missing events
18836         * ListControl.cs: implement missing methods and properties, fixes
18837         * ThemeWin32Classic.cs: Databiding support on Drawing
18838         * CheckedListBox.cs: Databinding support fixes, fire missing events
18839         * ListBox.cs: Databinding support fixes, fire missing events
18840         
18841 2005-04-25  Peter Bartok  <pbartok@novell.com>
18842
18843         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
18844
18845 2005-04-25  Jackson Harper  <jackson@ximian.com>
18846
18847         * TreeView.cs: Use the horizontal scrollbars height not width when
18848         determining how much of the client area is available.
18849
18850 2005-04-25  Jackson Harper  <jackson@ximian.com>
18851
18852         * Control.cs: Double buffering is handled differently now. As per
18853         the spec, the extra buffer is created in the WM_PAINT message and
18854         passed down to the control's drawing code.
18855         * GroupBox.cs:
18856         * Label.cs:
18857         * CheckBox.cs:
18858         * ProgressBar.cs:
18859         * RadioButton.cs:
18860         * ColorDialog.cs:
18861         * ComboBox.cs:
18862         * PropertyGridView.cs:
18863         * UpDownBase.cs:
18864         * MessageBox.cs:
18865         * MenuAPI.cs:
18866         * ListView.cs:
18867         * ButtonBase.cs:
18868         * SizeGrip.cs:
18869         * ScrollBar.cs:
18870         * ListBox.cs:
18871         * TrackBar.cs:
18872         * ToolBar.cs:
18873         * PictureBox.cs:
18874         * DateTimePicker.cs:
18875         * StatusBar.cs:
18876         * TreeView.cs: Update to new double buffering system.
18877         * MonthCalendar.cs: Uncomment block, as Capture is now
18878         working. Update to new double buffering
18879         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
18880         * PaintEventArgs.cs: New internal method allows us to set the
18881         graphics object. This is used for double buffering.
18882         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
18883         rectangle. The internal paint_area var has been removed from
18884         StatusBar. The clipping rect should be used instead.
18885         * Theme.cs: Give the PictureBox drawing method a clipping rect.
18886         * TabPage.cs: The RefreshTabs method was removed, so just call the
18887         tab controls Refresh method now.
18888         * TabControl.cs: Update to new double buffering. Make sure the
18889         handle is created before sizing the tab pages, otherwise we will
18890         get stuck in a loop.
18891
18892 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
18893
18894         * LinkLabel.cs: Fix typo, bug #74719; patch
18895           from Borja Sanchez Zamorano
18896
18897 2005-04-22  Jackson Harper  <jackson@ximian.com>
18898
18899         * TreeNode.cs: Implement Handle stuff.
18900         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
18901
18902 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
18903
18904         * DataGridTextBoxColumn.cs: call base constructors, fixes
18905         * GridColumnStylesCollection.cs: missing events, methods, and functionality
18906         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
18907         * DataGridTableStyle.cs: implements create default column styles
18908         * DataGridBoolColumn.cs: which types can handle
18909         * DataGrid.cs: missing methods, fixes, new functionality
18910         * DataGridColumnStyle.cs: fixes
18911
18912 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
18913         * FolderBrowserDialog.cs:
18914         - Use a thread to fill the TreeView
18915         - Adjusted some sizes
18916
18917 2005-04-19  Peter Bartok  <pbartok@novell.com>
18918
18919         * LinkLabel.cs: (Re-)create the pieces when setting the Text
18920           property. Fixes #74360.
18921
18922 2005-04-19  Jackson Harper  <jackson@ximian.com>
18923
18924         * XEventQueue.cs: Lock when getting the lockqueue size.
18925         * PictureBox.cs: Call base OnPaint
18926         
18927 2005-04-19  Peter Bartok  <pbartok@novell.com>
18928
18929         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
18930           messages were no longer being processed (this broke BeginInvoke)
18931
18932           
18933 2005-04-18  Jackson Harper  <jackson@ximian.com>
18934
18935         * TreeView.cs: buglet that caused node images to get drawn
18936         regardless of whether or not they were in the clipping rectangle.
18937
18938 2005-04-18  Jackson Harper  <jackson@ximian.com>
18939
18940         * CurrencyManager.cs: There are four rules for GetItemProperties:
18941         - If the type is an array use the element type of the array
18942         - If the type is a typed list, use the type
18943         - If the list contains an Item property that is not an object, use
18944         that property
18945         - use the first element of the list if there are any elements in
18946         the list.
18947         
18948 2005-04-17  Jackson Harper  <jackson@ximian.oom>
18949
18950         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
18951         click. This handles offsets for scrolling properly and reduces
18952         memory. Also fixed GetNode to not offset now that TopNode works
18953         properly.
18954         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
18955         
18956 2005-04-17  Jackson Harper  <jackson@ximian.com>
18957
18958         * CursorConverter.cs: Initial implementation.
18959
18960 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18961
18962         * ListControl.cs: work towards complex data binding support on ListControl
18963         * CurrencyManager.cs: work towards complex data binding support on ListControl
18964         * ListBox.cs: work towards complex data binding support on ListControl
18965
18966
18967 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18968
18969         * GridTableStylesCollection.cs: fixes name and constructor
18970         * DataGridTableStyle.cs: fixes
18971         * DataGridBoolColumn.cs: fixes names and constructors
18972         * DataGrid.cs: define methods and properties. Some init implementations
18973         * DataGridCell.cs: define methods and properties. Some init implementations
18974         * GridTablesFactory.cs: Define methods and properties
18975
18976 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
18977
18978         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
18979         graphics port changes.  We still want the coordinates in global screen
18980         coordinates.
18981
18982 2005-04-14  Jackson Harper  <jackson@ximian.com>
18983
18984         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
18985         check plus minus or checkbox clicks unless those features are enabled.
18986
18987 2005-04-14  Jackson Harper  <jackson@ximian.com>
18988
18989         * TreeView.cs: Add methods for setting the top and bottom visible
18990         nodes. TreeNode::EnsureVisible uses these methods.
18991         * TreeNode.cs: Implement EnsureVisible
18992
18993 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
18994
18995         * Form.cs: Pospone menu assignation if the window has not been created yet
18996         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
18997         size and position
18998
18999 2005-04-12  Jackson Harper  <jackson@ximian.com>
19000
19001         * TreeView.cs: Set the TopNode properly when scrolling
19002         occurs. This has the added benifit of reducing the amount of
19003         walking that needs to be done when drawing. Also removed an old
19004         misleading TODO.
19005         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
19006         
19007 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
19008
19009         * Timer.cs: fixes interval setting when the timer is already enabled
19010         
19011 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
19012
19013         * FolderBrowserDialog.cs: First approach
19014
19015 2005-04-09  Peter Bartok  <pbartok@novell.com>
19016
19017         * FolderBrowserDialog: Added
19018
19019 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
19020
19021         * LinkLabel.cs: move drawing code into the theme
19022         * ThemeWin32Classic.cs: drawing code and painting background bugfix
19023         * Theme.cs: define DrawLinkLabel method
19024
19025 2005-04-05  Jackson Harper  <jackson@ximian.com>
19026
19027         * BindingContext.cs: Use weak references so these bad actors don't
19028         stay alive longer then they need to.
19029
19030 2005-04-05  Jackson Harper  <jackson@ximian.com>
19031
19032         * ListControl.cs: Basic implementation of complex databinding.
19033         * ComboBox.cs:
19034         * ListBox.cs: Add calls to ListControl databinding methods.
19035
19036 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
19037
19038         * FileDialog.cs:
19039           - Don't change PopupButtonState to Normal when the
19040             PopupButton gets pressed several times.
19041           - Renamed ButtonPanel to PopupButtonPanel
19042
19043 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
19044
19045         * ColorDialog.cs: Use cached objects instead of creating them
19046         * LinkLabel.cs: Use cached objects instead of creating them
19047         * Splitter.cs: Use cached objects instead of creating them
19048         * FontDialog.cs: Use cached objects instead of creating them
19049         * PropertyGridView.cs: Use cached objects instead of creating them
19050         * MessageBox.cs: Use cached objects instead of creating them
19051         * FileDialog.cs: Use cached objects instead of creating them
19052         * ThemeWin32Classic.cs: Use cached objects instead of creating them
19053         * TreeView.cs: Use cached objects instead of creating them
19054         
19055 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
19056
19057         * Control.cs: use Equals to compare the font since no == op
19058         * ScrollBar.cs: use Equals to compare the font since no == op
19059
19060 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
19061
19062         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
19063
19064 2005-04-01  Jackson Harper  <jackson@ximian.com>
19065
19066         * Binding.cs: Implement IsBinding.
19067         * BindingManagerBase.cs:
19068         * PropertyManager.cs:
19069         * CurrencyManager.cs: Add IsSuspended property.
19070
19071 2005-04-01  Jackson Harper  <jackson@ximian.com>
19072
19073         * Binding.cs: Had some IsAssignableFrom calls backwards.
19074
19075 2005-04-01  Jackson Harper  <jackson@ximian.com>
19076
19077         * Binding.cs: Handle null data members when pulling data.
19078         * PropertyManager.cs: Handle the data member being a property that
19079         does not exist.
19080
19081 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19082
19083         * DataGridTextBoxColumn.cs: fixes signature
19084         * DataGrid.cs: calls right constructor
19085
19086 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
19087
19088         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
19089         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
19090         * GridTableStylesCollection.cs: implements GridTableStylesCollection
19091         * DataGridTableStyle.cs: implements DataGridTableStyle
19092         * DataGridBoolColumn.cs: implements DataGridBoolColumn
19093         * DataGridTextBox.cs: implements DataGridTextBox
19094         * DataGridColumnStyle.cs: implements DataGridColumnStyle
19095
19096 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
19097
19098         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
19099
19100 2005-03-29  Peter Bartok  <pbartok@novell.com>
19101
19102         * Application.cs:
19103           - Properly implemented CompanyName property
19104           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
19105             returns a path that includes CompanyName, ProductName and
19106             Version (fixes bug #70330)
19107
19108 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
19109
19110         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
19111           fixes bug #72588.
19112
19113 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19114
19115         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
19116         
19117           - Added ReadOnly CheckBox
19118           - Further refactoring: moved some code from Open-/SaveFileDialog
19119             to FileDialog
19120
19121 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
19122
19123         * OpenFileDialog.cs: Fixed CheckFileExists
19124         * FileDialog.cs:
19125           Moved FileView and DirComboBox outside FileDialog class.
19126           They can now be used outside FileDialog
19127
19128 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19129
19130         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
19131         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
19132
19133 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
19134
19135         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19136           - Added missing CreatePrompt property in SaveDialog
19137           - Overall SaveDialog handling should be better now
19138           - Added non standard ShowHiddenFiles property
19139           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
19140           - Added InitialDirectory and RestoreDirectory support
19141
19142 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
19143
19144         * FileDialog.cs: Made dirComboBox usable
19145
19146 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
19147
19148         * FileDialog.cs: Added Filter support (case sensitiv)
19149
19150 2005-03-24  Jackson Harper  <jackson@ximian.com>
19151
19152         * TabControl.cs: Need a couple more pixels for the lines.
19153
19154 2005-03-23  Jackson Harper  <jackson@ximian.com>
19155
19156         * TabControl.cs: Give the tab page focus when it is selected.
19157
19158 2005-03-23  Jackson Harper  <jackson@ximian.com>
19159
19160         * TabControl.cs: Account for the drawing of tabs borders when
19161         invalidating. If the slider was clicked dont do click detection on
19162         the tabs.
19163
19164 2005-03-23  Jackson Harper  <jackson@ximian.com>
19165
19166         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
19167
19168 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
19169
19170         * CategoryGridEntry.cs: Added
19171         * GridItem.cs: Added helper properties
19172         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
19173         * GridEntry.cs: Updated code for collection
19174         * PropertyGrid.cs: Cleaned up some formatting
19175         * PropertyGridView.cs: Added drop down functionality for enums.
19176         * GridItemCollection.cs: Added enumerator logic
19177         * PropertyGridEntry.cs: Added
19178
19179 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19180
19181         * FileDialog.cs:
19182           - Removed unnecessary commented code
19183           - Fixed handling for entering the filename manually in the combobox
19184
19185 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
19186
19187         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
19188
19189 2005-03-18  Peter Bartok  <pbartok@novell.com>
19190
19191         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
19192           them being touching the border
19193
19194 2005-03-18  Peter Bartok  <pbartok@novell.com>
19195
19196         * TextControl.cs: Quick hack to center text better
19197
19198 2005-03-18  Peter Bartok  <pbartok@novell.com>
19199
19200         * ControlPaint.cs:
19201           - Don't throw NotImplemented exceptions, just print a notice once
19202             instead (requested by Miguel). This makes running existing SWF
19203             apps a bit easier
19204         * Control.cs:
19205           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
19206           - Added context menu trigger on right click
19207         * Panel.cs: Trigger invalidate on resize
19208         * StatusBar.cs:
19209           - Removed old double-buffer drawing
19210           - Added ResizeRedraw style to force proper update of statusbar
19211         * ListView.cs:
19212           - Removed debug output
19213         * ThemeWin32Classic.cs:
19214           - Fixed drawing of status bar, now draws Text property if there
19215             are no defined panels
19216
19217 2005-03-18  Jackson Harper  <jackson@ximian.com>
19218
19219         * ImageList.cs: When the image stream is set pull all the images
19220         from it.
19221         * ImageListStreamer.cs: Implement reading image list streams.
19222
19223 2005-03-18  Peter Bartok  <pbartok@novell.com>
19224
19225         * ThemeWin32Classic.cs (DrawPictureBox):
19226           - Fixed calculations for centered drawing
19227           - Fixed drawing for normal mode, not scaling the image on normal
19228
19229 2005-03-18  Peter Bartok  <pbartok@novell.com>
19230
19231         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
19232           textbox
19233         * FileDialog.cs:
19234           - Made Open/Save button the accept button for FileDialog
19235           - Tied the cancel button to the IButtonControl cancel button
19236           - Save/Open now properly builds the pathname
19237           - Now handles user-entered text
19238           - Preventing crash on right-click if no item is selected
19239           - Fixed Text property, now uses contents of textbox
19240           - Fixed SelectedText property, now just returns the text part that
19241             is selected in the text box
19242
19243 2005-03-18  Jackson Harper  <jackson@ximian.com>
19244
19245         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
19246         rect, make sure to de-adjust the interior rect after drawing the
19247         tab text.
19248
19249 2005-03-18  Peter Bartok  <pbartok@novell.com>
19250
19251         * MenuAPI.cs: Remove menu *before* executing selected action to
19252           prevent the menu from 'hanging around'
19253           
19254 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
19255
19256         * XplatUIOSX.cs: Implemented WorkingArea property
19257
19258 2005-03-17  Peter Bartok  <pbartok@novell.com>
19259
19260         * XplatUIX11.cs: Fixed menu coord calculations
19261         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
19262           for calculating offsets
19263
19264 2005-03-17  Peter Bartok  <pbartok@novell.com>
19265
19266         * Hwnd.cs: Do not consider menu presence for default client
19267           rectangle location/size
19268         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
19269           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
19270           translation functions
19271         * FileDialog.cs: Fixed (what I presume is a) typo
19272
19273 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
19274
19275         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
19276           X access (avoids X-Async errors)
19277
19278 2005-03-16  Jackson Harper  <jackson@ximian.com>
19279
19280         * TabControl.cs: Raise the SelectedIndexChanged event.
19281
19282 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
19283
19284         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
19285           - Removed vertical ToolBar and replaced it with a custom panel
19286             (desktop and home button already work)
19287           - Added Help button (some controls get resized or relocated then)
19288           - Draw correct text depending on Open or Save.
19289           - Fixed some typos...
19290
19291 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
19292
19293         * ScrollBar.cs:
19294           - Only change Maximum and Minimum when need it (bug fix)
19295
19296 2005-03-15  Peter Bartok  <pbartok@novell.com>
19297
19298         * Form.cs: Use Handle for icon, to trigger creation if
19299           the window does not yet exist
19300         * Control.cs:
19301           - CanSelect: Slight performance improvement
19302           - Focus(): Preventing possible recursion
19303           - Invalidate(): Removed ControlStyle based clear flag setting
19304           - WM_PAINT: fixed logic for calling OnPaintBackground
19305           - WM_ERASEBKGND: Fixed logic, added call to new driver method
19306             EraseWindowBackground if the control doesn't paint background
19307         * XplatUIWin32.cs:
19308           - Moved EraseWindowBackground() method to internal methods
19309           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
19310             is sent via SendMessage on BeginPaint call on Win32
19311         * XplatUIX11.cs:
19312           - Added EraseWindowBackground() method
19313           - No longer sends WM_ERASEBKGND on .Expose, but on call to
19314             PaintEventStart, which more closely matches Win32 behaviour
19315           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
19316           - Fixed SetFocus() to properly deal with client and whole windows
19317         * Hwnd.cs: Added ErasePending property
19318         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
19319         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
19320
19321 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
19322
19323         * XplatUIOSX.cs:
19324           - Fix hard loop when timers exist.
19325           - Fix bugs with middle and right click for 3 button mice.
19326
19327 2005-03-11  Peter Bartok  <pbartok@novell.com>
19328
19329         * XplatUIX11.cs:
19330           - get_WorkingArea: Need to call X directly, GetWindowPos only
19331             returns cached data now
19332           - Added sanity check to GetWindowPos hwnd usage
19333
19334 2005-03-11  Jackson Harper  <jackson@ximian.com>
19335
19336         * BindingManagerBase.cs: This method isn't used anymore as
19337         PullData now updates the data in the control.
19338
19339 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
19340
19341         * Form.cs: fixes menu drawing on X11
19342         * MenuAPI.cs:  fixes menu drawing on X11
19343
19344 2005-03-11  Peter Bartok  <pbartok@novell.com>
19345
19346         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
19347           from Jonathan Gilbert; should fix bug #73606
19348         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
19349           in Screen coordinates. Thanks, Jordi.
19350         * Form.cs: Added missing attribute
19351
19352 2005-03-11  Peter Bartok  <pbartok@novell.com>
19353
19354         * Form.cs:
19355           - Rudimentary Mdi support
19356           - Removed outdated FormParent code
19357           - Implemented lots of missing properties and methods, still missing
19358             transparency support
19359           - Added missing attributes
19360           - Implemented support for MaximumBounds
19361           - Added firing of various events
19362         * XplatUI.cs: Added SetIcon() method
19363         * XplatUIDriver.cs: Added SetIcon() abstract
19364         * XplatUIOSX.cs: Stubbed out SetIcon() method
19365         * XplatUIX11.cs:
19366           - Implemented SetIcon() support
19367           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
19368           - Switched to unix line endings
19369         * XplatUIWin32.cs:
19370           - Made POINT internal so for can access it as part of MINMAX
19371           - Implemented SetIcon() support
19372           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
19373             native Mdi support again, might have to go managed)
19374         * Control.cs: Now fires the StyleChanged event
19375         * MdiClient.cs: Added; still mostly empty
19376
19377 2005-03-10  Peter Bartok  <pbartok@novell.com>
19378
19379         * SaveFileDialog.cs: Added emtpy file
19380
19381 2005-03-08  Peter Bartok  <pbartok@novell.com>
19382
19383         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
19384           in turn triggers OnCreateContro) when creating a handle for the
19385           first time.
19386         * TextControl.cs: Fixed endless loop in certain cases when
19387           replacing the current selection
19388
19389 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
19390
19391         * ScrollBar.cs:
19392           - Honors NewValue changes in Scroll events allowing apps to change it
19393           - Adds First and Last Scroll events
19394           - Fixes Thumb events
19395
19396 2005-03-07  Peter Bartok  <pbartok@novell.com>
19397
19398         * Hwnd.cs: Added DefaultClientRectangle property
19399         * XplatUI.cs: Now using the X11 driver Where() method, which provides
19400           more detailed debug information
19401         * XplatUIX11.cs:
19402           - Fixed size-change feedback loop, where we would pull an old size
19403             off the queue and mistakenly change our window's size to an
19404             earlier value
19405           - Now compressing ConfigureNotify events, to reduce looping and
19406             redraw issues
19407         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
19408           is called
19409
19410 2005-03-07  Jackson Harper  <jackson@ximian.com>
19411
19412         * Binding.cs: Push data pushes from data -> property. Check if the
19413         property is readonly when attempting to set it.
19414
19415 2005-03-07  Jackson Harper  <jackson@ximian.com>
19416
19417         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
19418         instead of IsSubclassOf. Pulling data now sets the value on the
19419         control.
19420         * PropertyManager.cs:
19421         * CurrencyManager.cs: Just need to pull data when updating now,
19422         because PullData will set the value on the control.
19423
19424 2005-03-04  Jackson Harper  <jackson@ximian.com>
19425
19426         * Binding.cs: Implement data type parsing and converting on pulled
19427         data. TODO: Are there more ways the data can be converted?
19428
19429 2005-03-04  Jackson Harper  <jackson@ximian.com>
19430
19431         * Binding.cs: Support <Property>IsNull checks. Also bind to the
19432         controls Validating method so we can repull the data when the
19433         control loses focus.
19434
19435 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
19436
19437         * ColumnHeader.cs:
19438           - Fixes null string format
19439           
19440         * ListView.cs:
19441           - Adds enum type checks
19442           - Fixes redrawing and recalc need after changing some properties
19443           - Fixes on focus_item set after the event
19444           - Fixes adding columns after the control has been created
19445           
19446         * ThemeWin32Classic.cs:
19447           - Fixes CheckBox focus rectangle
19448           - Fixes ColumnHeader drawing
19449
19450
19451 2005-03-03  Jackson Harper  <jackson@ximian.com>
19452
19453         * Binding.cs: Bind to <Property>Changed events so we can detect
19454         when properties are changed and update the data.
19455
19456 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
19457
19458         * ImageList.cs:
19459           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
19460           - Fixes ImageList constructor with ImageList container
19461           - Fixes image scaling (wrong parameters at DrawImage)
19462
19463 2005-02-02  Jackson Harper  <jackson@ximian.com>
19464
19465         * Binding.cs: Make property searches case-insensitive. Eliminate
19466         some duplicated code.
19467
19468 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
19469
19470         * ComboBox.cs:
19471                 - Handle focus event
19472                 - Fix scrollbar events
19473                 - Discard highlighted item if remove it
19474                 - Fixes SelectedItem with strings
19475
19476 2005-03-01  Peter Bartok  <pbartok@novell.com>
19477
19478         * Control.cs:
19479           - Fixed Visible property, now follows (once again) parent chain
19480             to return false if any control in the chain is visible=false
19481           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
19482           - Fixed several places where is_visible instead of Visible was used
19483           - Implemented FIXME related to focus selection when setting focused
19484             control to be invisible
19485
19486         * XplatUIWin32.cs: Now using proper method to find out if window is
19487           visible. Thanks to Jordi for pointing it out
19488
19489 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
19490
19491         * ComboBox.cs: show/hide scrollbar instead of creating it
19492
19493 2005-02-27  Jackson Harper  <jackson@ximian.com>
19494
19495         * CurrencyManager.cs: Add PositionChanged stuff.
19496
19497 2005-02-27  Peter Bartok  <pbartok@novell.com>
19498
19499         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
19500         * XplatUIOSX.cs: Added GetMenuOrigin() stub
19501         * XplatUIWin32.cs: Implemented GetMenuOrigin()
19502         * XplatUIX11.cs:
19503           - Implemented GetMenuDC()
19504           - Implemented GetMenuOrigin()
19505           - Implemented ReleaseMenuDC()
19506           - Implemented generation of WM_NCPAINT message
19507           - Implemented generation and handling of WM_NCCALCSIZE message
19508         * Form.cs: Added debug helper message for Jordi's menu work
19509         * Hwnd.cs:
19510           - Modified ClientRect property; added setter, fixed getter to handle
19511             setting of ClientRect
19512           - Added MenuOrigin property
19513
19514 2005-02-26  Peter Bartok  <pbartok@novell.com>
19515
19516         * XplatUIX11.cs:
19517           - Destroys the caret if a window that's being destroyed contains it
19518           - Ignores expose events coming from the X11 queue for windows that
19519             already are destroyed
19520           - Now uses the proper variable for handling DestroyNotify, before we
19521             marked the wrong window as destroyed
19522           - Improved/added some debug output
19523
19524 2005-02-26  Peter Bartok  <pbartok@novell.com>
19525
19526         * X11Keyboard.cs: Fixes to work on 64bit systems
19527
19528 2005-02-26  Peter Bartok  <pbartok@novell.com>
19529
19530         * Control.cs:
19531           - Now calling OnHandleDestroyed from DestroyHandle()
19532             instead of Dispose()
19533           - Removed bogus call to controls.Remove() from DestroyHandle()
19534
19535 2005-02-26  Peter Bartok  <pbartok@novell.com>
19536
19537         * Control.cs: Properly destroy child windows when our handle is
19538           destroyed
19539
19540 2005-02-25  Peter Bartok  <pbartok@novell.com>
19541
19542         * XplatUI.cs:
19543           - Added 'DriverDebug' define to allow tracing XplatUI API calls
19544           - Alphabetized Static Methods and Subclasses
19545
19546         * XplatUIX11.cs:
19547           - Added XException class to allow custom handling of X11 exceptions
19548           - Created custom X11 error handler, tied into XException class
19549           - Added support for MONO_XEXCEPTIONS env var to allow the user
19550             to either throw an exception on X errors or continue running
19551             after displaying the error
19552           - Added handling of DestroyNotify message
19553           - Added handler for CreateNotify message (still disabled)
19554           - Improved (tried to at least) Where method to provide file and lineno
19555         * X11Structs.cs:
19556           - Added XErrorHandler delegate
19557           - Added XRequest enumeration (to suppor translation of errors)
19558
19559 2005-02-25  Jackson Harper  <jackson@ximian.com>
19560
19561         * PropertyManager.cs: Implement editing features
19562         * CurrencyManager.cs:
19563         * Binding.cs: First attempt at UpdateIsBinding
19564         * BindingManagerBase.cs: Call UpdateIsBinding before
19565         pushing/pulling data.
19566
19567 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
19568
19569         * MenuAPI.cs: Respect disabled items
19570         * ThemeWin32Classic.cs
19571                 - Caches ImageAttributes creation for DrawImageDisabled
19572                 - Fixes vertical menu line drawing
19573                 - Draws disabled arrows in disable menu items
19574
19575 2005-02-24  Peter Bartok  <pbartok@novell.com>
19576
19577         * Hwnd.cs:
19578           - Added UserData property to allow associating arbitrary objects
19579             with the handle
19580           - Fixed leak; now removing Hwnd references from static windows array
19581         * XplatUIWin32.cs:
19582           - Fixed Graphics leak in PaintEventEnd
19583           - Removed usage of HandleData, switched over to Hwnd class
19584         * HandleData.cs: Removed, obsoleted by Hwnd.cs
19585
19586 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
19587
19588         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
19589         * ScrollBar.cs: Fixes bug
19590         * TrackBar.cs: removes death code, clipping, mimize refreshes,
19591          keyboard navigation enhancements
19592
19593 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
19594
19595         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
19596         * GroupBox.cs: Add control styles
19597         * Label.cs: Add control styles
19598         * UpDownBase.cs: Add control styles
19599         * ListBox.cs: Add control styles
19600         * XplatUIWin32.cs: Fixes wrong parameter order
19601
19602
19603 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
19604
19605         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
19606
19607 2005-02-23  Jackson Harper  <jackson@ximian.com>
19608
19609         * PropertyManager.cs: Implement property binding. This doesn't
19610         seem to work yet though as (I think) there are some bugs in
19611         System.ComponentModel.PropertyDescriptor.
19612         * BindingContext.cs: Use new PropertyManager constructor.
19613
19614 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
19615
19616         * ProgressBar.cs: use clip region in ProgressBar
19617         * ThemeWin32Classic.cs: use clip region in ProgressBar
19618
19619 2004-02-22  Jackson Harper  <jackson@ximian.com>
19620
19621         * BindingsCollection.cs: Remove some debug code.
19622
19623 2005-02-22  Jackson Harper  <jackson@ximian.com>
19624
19625         * BindingContext.cs:
19626         * ControlBindingsCollection.cs:
19627         * CurrencyManager.cs:
19628         * Binding.cs:
19629         * BindingManagerBase.cs: Initial implementation
19630         * BindingsCollection.cs: Add an internal contains method that the
19631         BindingManagerBase uses to ensure bindings aren't added twice to
19632         the collection.
19633         * PropertyManager.cs: Stubbed out.
19634         * Control.cs:
19635         * ContainerControl.cs: Hook up databinding
19636         
19637 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
19638
19639         * XplatUIOSX.cs:
19640           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
19641           Fixed Invalidate/Update chain.
19642           Fixed tons of other minor bugs (this is almost a complete rewrite).
19643
19644 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
19645
19646         * ComboBox.cs: do subcontrol creation when the control is created
19647
19648 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19649
19650         * Label.cs: fixes image drawing (image and imagelist)
19651         * ThemeWin32Classic.cs: cache brushes
19652         
19653 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19654
19655         * Form.cs: Move menu drawing code to Theme class
19656         * ComboBox.cs: Move ComboBox drawing code to Theme class
19657         * MenuItem.cs: Move menu drawing code to Theme class
19658         * MenuAPI.cs: Move menu drawing code to Theme class
19659         * ThemeWin32Classic.cs: New methods
19660         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
19661         * ListBox.cs: Move Listbox drawing code to Theme class
19662         * Theme.cs: New methods
19663
19664 2005-02-20  Peter Bartok  <pbartok@novell.com>
19665
19666         * Control.cs:
19667           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
19668             only process mnemonics on those)
19669           - Fixed event sequence for key handling; first calling
19670             ProcessKeyEventArgs now
19671         * TextBoxBase.cs:
19672           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
19673             for processing non-character keys
19674           - Fixed WM_CHAR to generate proper event sequence before processing
19675         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
19676           generation
19677
19678 2005-02-19  Peter Bartok  <pbartok@novell.com>
19679
19680         * UserControl.cs: Added TextChanged event; added attributes
19681         * SizeGrip.cs: Implemented resizing and optional display of grip
19682         * Form.cs: Fixed attribute
19683         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19684           Changed meaning of ScrollWindow bool argument; instead of the
19685           clear attribute (which will be true usually anyway), it gives the
19686           option of moving child controls as well.
19687         * XplatUIX11.cs:
19688           - Changed to match new ScrollWindow argument
19689           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
19690             now handles the implicit parent window a WM puts around us
19691         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
19692           to work)
19693         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
19694         * TreeView.cs: Adjusted to new ScrollWindow arguments
19695
19696 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
19697
19698         * Form.cs: Menu integration with non-client area
19699         * MenuItem.cs: Menu integration with non-client area
19700         * MenuAPI.cs: Menu integration with non-client area
19701
19702 2005-02-18  Peter Bartok  <pbartok@novell.com>
19703
19704         * MethodInvoker.cs: Added
19705         * MdiLayout.cs: Added
19706         * SendKeys.cs: Started implementation
19707         * ErrorIconAlignment.cs: Added
19708
19709 2005-02-18  Peter Bartok  <pbartok@novell.com>
19710
19711         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
19712         * Form.cs: Added handling for Menu-related Non-client messages
19713
19714 2005-02-17  Peter Bartok  <pbartok@novell.com>
19715
19716         * UpDownBase.cs: Fixed typo, compilation errors
19717         * DomainUpDown.cs: Fixed attribute value
19718
19719 2005-02-16  Miguel de Icaza  <miguel@novell.com>
19720
19721         * UpDownBase.cs: Attach entry events.
19722         Propagate events.
19723         Add ForeColor property, Focused, InterceptArrowKeys (interception
19724         does not work yet).
19725
19726 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
19727
19728         * Form.cs:
19729                 - Redraw non client are on Setmenu
19730                 - Calc proper menu starting point
19731
19732 2005-02-17  Peter Bartok  <pbartok@novell.com>
19733
19734         * Application.cs: Fixed message_filter check
19735
19736 2005-02-17  Peter Bartok  <pbartok@novell.com>
19737
19738         * Application.cs: Now calls registered message filters
19739         * DockStyle.cs: Fixed attribute
19740         * Form.cs: Fixed attribute
19741         * Menu.cs: Fixed attribute
19742         * ToolTip.cs: Fixed attribute
19743         * TreeNode.cs: Added missing attributes and arranged in regions
19744         * PropertyGrid.cs: Fixed signatures
19745         * TreeNodeCollection.cs: Added attributes
19746         * Splitter.cs: Added missing attributes; arranged into regions
19747         * TabPage.cs: Added missing attributes; arranged into regions
19748         * TextBoxBase.cs: Added missing attributes
19749         * TextBox.cs: Added missing attributes
19750         * ArrangeDirection.cs: Added missing attributes
19751         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
19752         * ToolBarButton.cs: Fixed attributes
19753         * AnchorStyles.cs: Fixed attribute
19754         * TrackBar.cs: Fixed attributes
19755         * TabControl.cs: Added missing attributes and arranged into regions
19756         * ToolBar.cs: Fixed attribute
19757         * StatusBar.cs: Fixed signature, organized into regions and added
19758           attributes
19759         * StatusBarPanel.cs: Fixed attributes
19760         * ContentsResizedEventArgs.cs: Implemented
19761         * ContentsResizedEventHandler.cs: Implemented
19762         * DateBoldEventArgs.cs: Implemented
19763         * DateBoldEventHandler.cs: Implemented
19764         * UpDownEventArgs.cs: Implemented
19765         * UpDownEventHandler.cs: Implemented
19766         
19767 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
19768
19769         * Form.cs: first Menu NC refactoring
19770         * MenuAPI.cs: first Menu NC refactoring
19771         
19772 2005-02-16  Peter Bartok  <pbartok@novell.com>
19773
19774         * ImeMode.cs: Added missing attributes
19775         * Menu.cs: Fixed attribute
19776         * GroupBox.cs: Fixed attribute
19777         * Label.cs: Fixed attribute
19778         * ColorDialog.cs (RunDialog): Removed TODO attribute
19779         * ComboBox.cs: Fixed attributes
19780         * ListControl.cs: Added missing attributes
19781         * PropertyGrid.cs: Fixed attributes
19782         * Control.cs: Fixed attributes
19783         * ListViewItem.cs: Added TypeConverter attribute
19784         * NotifyIcon.cs: Fixed attributes
19785         * ListView.cs: Fixed attributes
19786         * ButtonBase.cs: Fixed attribute
19787         * ImageList.cs: Added missing attributes
19788         * ContainerControl.cs: Fixed signature
19789         * CheckedListBox.cs: Fixed attribute; added missing attributes
19790         * Panel.cs: Fixed attributes
19791         * PropertyTabChangedEventArgs.cs: Added missing attribute
19792         * PropertyValueChangedEventArgs.cs: Added missing attribute
19793         * Binding.cs: Fixed attribute
19794         * ListViewItemConverter: Implemented ListViewSubItemConverter class
19795         * ListBox.cs: Fixed attribute; added missing attributes;
19796         * ScrollableControl.cs: Added missing attributes
19797         * PictureBox.cs: Added missing attributes; implemented missing property
19798         * DateTimePicker.cs: Added missing attributes
19799         * Theme.cs (ToolWindowCaptionHeight): Fixed type
19800         * MonthCalendar.cs: Fixed attributes
19801         * StatusBarPanel.cs: Added missing attributes
19802         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
19803
19804 2005-02-16  Peter Bartok  <pbartok@novell.com>
19805
19806         * TextBoxBase.cs: The previous method to enforce height yet remember
19807           the requested high was less than ideal, this is an attempt to do
19808           it better.
19809         * Control.cs: Added comment about possible problem
19810         * Copyright: Updated format
19811         * GridItemType.cs: Fixed swapped values
19812
19813 2005-02-15  Jackson Harper  <jackson@ximian.com>
19814
19815         * BaseCollection.cs: Use property so we never access an
19816         uninitialized list. Also initialize the list in the property.
19817
19818 2005-02-15  Peter Bartok  <pbartok@novell.com>
19819
19820         * GroupBox.cs (ProcessMnemonic): Implemented
19821         * Label.cs (ProcessMnemonic): Implemented
19822         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
19823           hotkeys
19824
19825 2005-02-15  Peter Bartok  <pbartok@novell.com>
19826
19827         * RadioButton.cs (ProcessMnemonic): Implemented
19828         * CheckBox.cs (ProcessMnemonic): Implemented
19829         * Control.cs:
19830           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
19831             handling
19832           - Added internal method to allow calling ProcessMnemonic from other
19833             controls
19834         * ContainerControl.cs:
19835           - Started support for handling validation chain handling
19836           - Implemented ProcessMnemonic support
19837           - Added Select() call to Active, to make sure the active control
19838             receives focus
19839         * Form.cs: Setting toplevel flag for Forms (this was lost in the
19840           FormParent rewrite)
19841         * ThemeWin32Classic.cs:
19842           - DrawCheckBox(): Fixed stringformat to show hotkeys
19843           - DrawRadioButton(): Fixed stringformat to show hotkeys
19844         * CommonDialog.cs: Removed WndProc override, not needed
19845
19846 2005-02-14  Peter Bartok  <pbartok@novell.com>
19847
19848         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
19849           missed those in the rewrite
19850
19851 2005-02-14  Miguel de Icaza  <miguel@novell.com>
19852
19853         * NumericUpDown.cs (Increment, ToString): Add.
19854         (DecimalPlaces): implement.
19855         
19856         Add attributes.
19857         
19858         * UpDownBase.cs: Add the designer attributes.
19859
19860 2005-02-13  Peter Bartok  <pbartok@novell.com>
19861
19862         * Panel.cs: Removed border_style, now in Control
19863         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
19864           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
19865
19866 2005-02-13  Peter Bartok  <pbartok@novell.com>
19867
19868         * MouseButtons.cs: Added missing attributes
19869         * XplatUIStructs.cs: Added enumeration for title styles
19870         * LeftRightAlignment.cs: Added missing attributes
19871         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
19872           it compatible with Graphics.FromHwnd()
19873         * SelectedGridItemChangedEventArgs.cs: Fixed property type
19874         * Keys.cs: Added missing attributes
19875         * SelectionRange.cs: Added missing attributes
19876         * SelectionRangeConverter.cs: Added
19877         * XplatUI.cs:
19878           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
19879             ReleaseMenuDC methods
19880           - Renamed ReleaseWindow to UngrabWindow
19881           - Added proper startup notice to allow version identification
19882         * Form.cs:
19883           - Added missing attributes
19884           - Removed FormParent concept
19885         * Label.cs: Removed border_style field, now in Control
19886         * RadioButton.cs: Now properly selects RadioButton when focus is
19887           received
19888         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
19889         * Control.cs:
19890           - Added missing attributes
19891           - Added borderstyle handling
19892           - Removed FormParent concept support
19893           - Fixed calls to XplatUI to match changed APIs
19894           - Fixed bug that would case us to use disposed Graphics objects
19895           - Removed unneeded internal methods
19896           - PerformLayout(): Fixed to handle DockStyle.Fill properly
19897           - SelectNextControl(): Fixed to properly check common parents
19898         * TextBoxBase.cs: Removed border_style field (now in Control)
19899         * MessageBox.cs:
19900           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
19901             fixed calculations for form size
19902           - Added support for localized strings and icons
19903           - Improved form size calculations, added border
19904         * ListView.cs: Removed border_style field (now in Control)
19905         * X11Structs.cs: Moved several structs from X11 driver here
19906         * X11Keyboard.cs: Changed debug message
19907         * Application.cs: Removed FormParent concept support
19908         * CommonDialog.cs:
19909           - Resetting end_modal flag
19910           - Removed FormParent concept support
19911         * NativeWindow.cs: Removed FormParent concept support
19912         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
19913           Client area and Non-Client whole window to allow support for WM_NC
19914           messages
19915         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
19916           prevent using it until it supports Hwnd as per Geoff Norton's request
19917         * ToolBar.cs: Fixed drawing, was not doing proper drawing
19918         * PictureBox.cs: Removed border_style field, now in Control
19919         * XplatUIWin32.cs: Added new driver methods
19920
19921 2005-02-12  Peter Bartok  <pbartok@novell.com>
19922
19923         * OpacityConverter.cs: Implemented
19924         * Hwnd.cs: Internal class to support drivers that need to emulate
19925           client area/non-client area window behaviour
19926
19927 2005-02-11  Peter Bartok  <pbartok@novell.com>
19928
19929         * KeysConverter.cs: Implemented
19930
19931 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
19932
19933         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
19934         * LinkLabel: Added missing attributes
19935         * MainMenu.cs: fixes ToString
19936         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
19937         * ListBox.cs: fixes event position
19938         * TrackBar.cs: adds missing attributes and events
19939         
19940 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
19941
19942         * MenuItem.cs: Use SystemInformation and bug fixes
19943         * MenuAPI.cs: Use SystemInformation and bug fixes
19944
19945 2005-02-09  Jackson Harper  <jackson@ximian.com>
19946
19947         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
19948         their keystate otherwise things like VK_MENU get stuck "on".
19949
19950 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
19951
19952         * ListBox.cs: Fixes AddRange bug
19953         
19954 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
19955
19956         * ProgressBar.cs
19957                 - Add missing attributes
19958                 - Add missing method
19959                 
19960         * CheckedListBox.cs: Added missing attributes
19961                 - Add missing attributes
19962                 - Remove extra method
19963         
19964         * ComboBox.cs: Added missing attributes
19965         * VScrollBar.cs: Added missing attributes
19966         * ScrollBar.cs:  Added missing attributes
19967         * ListBox.cs: Fixes signature, add missing consts
19968         * LinkArea.cs:   Added missing attributes
19969         
19970
19971 2005-02-08  Peter Bartok  <pbartok@novell.com>
19972
19973         * Menu.cs: Added missing attributes
19974         * MainMenu.cs: Added missing attributes
19975         * GroupBox.cs: Added missing attributes
19976         * Label.cs: Added missing attributes
19977         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
19978         * ColorDialog.cs:
19979           - Added Instance and Options properties
19980           - Added missing attributes
19981         * Cursor.cs: Made Serializable
19982         * NotifyIcon: Added missing attributes
19983         * MenuItem.cs: Added missing attributes
19984         * TextBoxBase.cs: Implemented AppendText() and Select() methods
19985         * Panel.cs: Added Missing attributes
19986         * MonthCalendar.cs: Fixed CreateParams
19987
19988 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19989         
19990         * LinkLabel.cs:
19991                 - Fixes signature
19992                 - Fixes issues with links
19993                 - Adds the class attributes
19994
19995 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19996         
19997         * ComboBox.cs:
19998                 - Fixes button when no items available in dropdown
19999                 - Fixes repainting problems
20000                 - Adds the class attributes
20001                 
20002 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20003
20004         * XplatUIOSX.cs: Detect the menu bar and title bar height from
20005         the current theme.  Cache these on startup.
20006
20007 2005-02-07  Jackson Harper  <jackson@ximian.com>
20008
20009         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
20010         the scrollbar buttons when they are depressed.
20011
20012 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20013
20014         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
20015         Get the display size from the main displayid.  We currently dont
20016         support multiple display configurations.
20017
20018 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
20019
20020         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
20021
20022 2005-02-07  Miguel de Icaza  <miguel@novell.com>
20023
20024         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
20025
20026 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
20027
20028         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
20029
20030 2005-02-04  Jackson Harper  <jackson@ximian.com>
20031
20032         * ThemeWin32Classic.cs: Respect the clipping rect when
20033         drawing. Only fill the intersection of clips and rects so there
20034         isn't a lot of large fills.
20035         * ScrollBar.cs: Pass the correct clipping rect to the theme
20036         engine. Remove some debug code.
20037
20038 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
20039         
20040         * DateTimePicker.cs:
20041                 - Fixed crash on DateTime.Parse, use Constructor instead
20042
20043 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20044         
20045         * MenuItem.cs:
20046         * MenuAPI.cs:
20047                 - Owner draw support (MeasureItem and DrawItem)
20048
20049 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
20050         
20051         *  Menu.cs:
20052                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
20053                 - Fixes MenuItems.Add range
20054         * MenuItem.cs:
20055                 - MergeMenu and Clone and CloneMenu functions
20056
20057 2005-02-03  Jackson Harper  <jackson@ximian.com>
20058
20059         * ScrollBar.cs: Make abstract
20060         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
20061         is abstract.
20062
20063 2005-02-03  Jackson Harper  <jackson@ximian.com>
20064
20065         * ScrollBar.cs: First part of my scrollbar fixups. This removes
20066         all the unneeded refreshes and uses invalidates with properly
20067         computed rects.
20068
20069 2005-02-03  Peter Bartok  <pbartok@novell.com>
20070
20071         * ComponentModel.cs: Added
20072         * IDataGridEditingService.cs: Added
20073         * Timer.cs: Added missing attributes
20074         * ToolTip.cs: Added missing attributes
20075
20076 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
20077
20078         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
20079
20080 2005-02-03  Peter Bartok  <pbartok@novell.com>
20081
20082         * ListBox.cs: Added missing attributes
20083
20084 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
20085         
20086         * ListBox.cs:
20087                 - Fixes font height after font change
20088                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
20089                 
20090 2005-02-02  Peter Bartok  <pbartok@novell.com>
20091
20092         * HandleData.cs: Introduced static methods to allow class
20093           to be more self-contained and track it's own HandleData objects
20094         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
20095           HandleData to use new static methods
20096
20097 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
20098
20099         * Combobox.cs:
20100                 - Fixes default size and PreferredHeight
20101                 - Missing events
20102                 - ObjectCollection.Insert implementation
20103                 
20104         * ListControl.cs
20105                 - Fixes signature
20106         * ListBox.cs:
20107                 - Several fixes
20108                 - ObjectCollection.Insert implementation
20109                 - No selection after clean
20110                 - Small fixes
20111
20112 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20113
20114         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
20115
20116 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
20117
20118         * Combobox.cs:
20119                 - Caches ItemHeight calculation for OwnerDrawVariable
20120                 - Handles dropdown properly
20121                 - Fixes several minor bugs
20122
20123 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20124
20125         * ListBox.cs:
20126                 - Fixes 71946 and 71950
20127                 - Fixes changing Multicolumn on the fly
20128                 - Fixes keyboard navigation on Multicolumn listboxes
20129
20130 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20131         
20132         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
20133         crash reporter log.
20134
20135 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20136
20137         * XplatUIOSX.cs: Allow applications to actually exit.
20138
20139 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
20140
20141         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
20142         their parent at creation time rather than lazily later.  Fixes a major
20143         regression we were experiencing.
20144
20145 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
20146
20147         * ThemeWin32Classic.cs: more date time picker painting fixes
20148         * DateTimePicker.cs: more monthcalendar drop down fixes
20149         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
20150
20151 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
20152
20153         * ScrollBar.cs:
20154                 - When moving the thumb going outside the control should stop the moving
20155                 - Adds the firing of missing events
20156                 - Fixes no button show if Size is not specified
20157                 - End / Home keys for keyboard navigation
20158
20159 2005-01-30  Peter Bartok  <pbartok@novell.com>
20160
20161         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
20162           sanity check to prevent theoretical loop
20163         * XplatUIWin32.cs (SetVisible): Removed debug output
20164         * XplatUIX11.cs (SystrayChange): Added sanity check
20165         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
20166         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
20167           behaviour, valid until the X11 client window rewrite is done
20168         * TextBox.cs (ctor): Setting proper default foreground and background
20169           colors
20170
20171 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
20172
20173         * Theme: Added DrawDateTimePicker to interface
20174         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
20175         * DateTimePicker.cs: Created (still needs keys and painting code)
20176         * DateTimePickerFormat.cs: added
20177         * MonthCalendar.cs: fixed CreateParams for popup window mode
20178           
20179 2005-01-29  Peter Bartok  <pbartok@novell.com>
20180
20181         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
20182           this should also the calculations for ligher/darker
20183         * Theme.cs: Fixed defaults for ScrollBar widths/heights
20184
20185 2005-01-29  Peter Bartok  <pbartok@novell.com>
20186
20187         * ArrangeDirection.cs: Added
20188         * ArrangeStartingPositon.cs: Added
20189         * SystemInformation.cs: Implemented
20190         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20191           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
20192           used by SystemInformation class
20193         * X11Strucs.cs: Added XSizeHints structure
20194         * MenuAPI.cs:
20195           - Fixed CreateParams to make sure the menu window is always visible
20196           - TrackPopupMenu: Added check to make sure we don't draw the
20197             menu offscreen
20198
20199 2005-01-29  Peter Bartok  <pbartok@novell.com>
20200
20201         * HandleData.cs: Added method for altering invalid area
20202         * TextBoxBase.cs: Implemented TextLength
20203
20204 2005-01-28  Peter Bartok  <pbartok@novell.com>
20205
20206         * XplatUIX11.cs: Improvement over last patch, not sending
20207           the WM_PAINT directly anymore, instead we scroll any pending
20208           exposed areas and let the system pick out the WM_PAINT later
20209
20210 2005-01-28  Peter Bartok  <pbartok@novell.com>
20211
20212         * SWF.csproj: Deleted, no longer used. Instead,
20213           Managed.Windows.Forms/SWF.csproj should be used
20214         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
20215           directly, to avoid a potential race condition with the next
20216           scroll
20217
20218 2005-01-28  Peter Bartok  <pbartok@novell.com>
20219
20220         * XplatUI.cs: Made class internal
20221
20222 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
20223
20224         * CheckedListBox.cs:
20225                 - Draw focus
20226                 - Fixed Drawing
20227                 - Missing methods and events
20228
20229 2005-01-27  Peter Bartok  <pbartok@novell.com>
20230
20231         * Application.cs (Run): Don't use form if we don't have one
20232
20233 2005-01-27  Peter Bartok  <pbartok@novell.com>
20234
20235         * TextBoxBase.cs (get_Lines): Fixed index off by one error
20236
20237 2005-01-27  Peter Bartok  <pbartok@novell.com>
20238
20239         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
20240         * GridItem.cs: Added; Patch by Jonathan S. Chambers
20241         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
20242         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
20243         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
20244         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
20245         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20246         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20247         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20248         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20249         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
20250         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
20251
20252 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20253
20254         * Combobox.cs:
20255                 - Draw focus on Simple Combobox
20256                 - Fixes drawing issues
20257                 - fixes 71834
20258
20259 2005-01-27  Peter Bartok  <pbartok@novell.com>
20260
20261         * Form.cs:
20262           - Place window in default location, instead of hardcoded 0/0
20263           - Send initial LocationChanged event
20264         * Control.cs:
20265           - UpdateBounds after creation to find out where the WM placed us
20266           - Make sure that if the ParentForm changes location the Form
20267             is notified
20268         * XplatUIX11.cs: XGetGeometry will not return the coords relative
20269             to the root, but to whatever the WM placed around us.
20270             Translate to root coordinates before returning toplevel
20271             coordinates
20272         * XplatUIWin32.cs: Removed debug output
20273         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
20274           flag to GetWindowPos, to allow translation of coordinates on X11
20275
20276 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
20277
20278         * ListBox.cs: connect LostFocus Event
20279
20280 2005-01-27  Peter Bartok  <pbartok@novell.com>
20281
20282         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20283           XplatUIX11.cs: Extended the Systray API
20284         * Form.cs: Removed debug output
20285         * Application.cs: Fixed focus assignment, always need to call
20286           XplatUI.Activate() since Form.Activate() has rules that may
20287           prevent activation
20288         * NotifyIcon.cs: Should be complete now
20289         * ToolTip.cs: Worked around possible timer bug
20290
20291 2005-01-27  Jackson Harper  <jackson@ximian.com>
20292
20293         * TabControl.cs:
20294         - Only invalidate the effected tabs when the
20295         selected index changes. This reduces drawing and gets rid of some
20296         flicker.
20297         - Only refresh if the tabs need to be shifted, otherwise only
20298         invalidate the slider button.
20299         - On windows the tabs are not filled to right if the slider is
20300         visible.
20301         
20302 2005-01-27  Jackson Harper  <jackson@ximian.com>
20303
20304         * TabControl.cs: Only refresh on mouseup if we are showing the
20305         slider. Also only invalidate the button whose state has changed.
20306
20307 2005-01-26  Peter Bartok  <pbartok@novell.com>
20308
20309         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
20310         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
20311           and SystrayRemove() methods
20312         * XplatUIOSX.cs: Stubbed Systray methods
20313         * XplatUIX11.cs:
20314           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
20315             methods
20316           - Fixed broken XChangeProperty calls (marshalling messed up things)
20317         * X11Structs.cs: Added enums and structs required for Size hinting
20318         * NotifyIcon.cs: Added & implemented
20319
20320 2005-01-26  Jackson Harper  <jackson@ximian.com>
20321
20322         * TabControl.cs: Space vertically layed out tabs properly.
20323
20324 2005-01-26  Peter Bartok  <pbartok@novell.com>
20325
20326         * Form.cs (CreateClientParams): Always set the location to 0,0
20327           since we're a child window.
20328
20329         * Control.cs (SetVisibleCore): Always explicitly setting the location
20330           of a toplevel window, apparently X11 doesn't like to move windows
20331           while they're not mapped.
20332
20333 2005-01-26  Jackson Harper  <jackson@ximian.com>
20334
20335         * TabControl.cs: Implement FillToRight size mode with vertically
20336         rendered tabs.
20337
20338 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20339
20340         * ControlPaint.cs, ThemeWin32Classic.cs
20341                 - Fixes DrawFocusRectangle
20342
20343 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
20344
20345         * MenuAPI.cs:
20346                 - MenuBar tracking only starts when item is first clicked
20347                 - Fixes menu hidding for multiple subitems
20348                 - Unselect item in MenuBar when item Executed
20349                 - Fixes bug 71495
20350
20351 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
20352
20353         * ListControl.cs:
20354                 - IsInputKey for ListBox
20355         * ListBox.cs:
20356                 - Focus item
20357                 - Shift and Control item selection
20358                 - Implement SelectionMode.MultiExtended
20359                 - Fixes RightToLeft
20360         * ComboBox.cs:
20361                 - IsInputKey implemented
20362                 - Do not generate OnTextChangedEdit on internal txt changes
20363                 
20364 2005-01-23  Peter Bartok  <pbartok@novell.com>
20365
20366         * AccessibleObject.cs: Partially implemented Select()
20367         * MonthCalendar.cs: Added missing attributes and events
20368         * Form.cs: Fixed CreateParams behaviour, now controls derived from
20369           form can properly override CreateParams.
20370         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
20371           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
20372           Control performs Invalidate & Update
20373         * NativeWindow (CreateHandle): Added special handling for Form
20374           and Form.FormParent classes to allow overriding of From.CreateParams
20375         * Control.cs:
20376           - ControlNativeWindow: Renamed 'control' variable to more intuitive
20377             name 'owner'
20378           - ControlNativeWindow: Added Owner property
20379           - Removed usage of Refresh() on property changes, changed into
20380             Invalidate(), we need to wait until the queue is processed for
20381             updates, direct calls might cause problems if not all vars for
20382             Paint are initialized
20383           - Added call to UpdateStyles() when creating the window, to set any
20384             styles that CreateWindow might have ignored.
20385           - Added support for Form CreateParent overrides to UpdateStyles()
20386         * MessageBox.cs: Removed no longer needed FormParent override stuff,
20387           CreateParams are now properly overridable
20388         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
20389           CreateParams are now properly overridable
20390
20391 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
20392
20393         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
20394         OnTextBoxChanged.
20395
20396         Capture LostFocus and OnTextBoxChanged.  The later introduces a
20397         recursive invocation that I have not figured out yet.
20398
20399         Reset the timer when not using (it was accumulating).
20400
20401
20402         (OnTextBoxChanged): Set UserEdit to true here to track whether the
20403         user has made changes that require validation.
20404
20405         Reset changing to avoid loops.
20406
20407 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
20408
20409         * NumericUpDown.cs: Display value at startup.
20410
20411         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
20412         ValidateEditText.
20413
20414         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
20415         filled in.  Added some basic parsing of text.
20416
20417         Still missing the OnXXX method overrides, and figuring out the
20418         events that must be emitted.
20419
20420         * UpDownBase.cs: Handle UserEdit on the Text property.
20421         
20422 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
20423
20424         * ComboBox.cs:
20425           - Fixes IntegralHeight
20426           - ToString method
20427
20428 2005-01-21  Jackson Harper  <jackson@ximian.com>
20429
20430         * TabControl.cs: Set the SelectedIndex property when SelectedTab
20431         is set so that the page visibility is updated and the tabs are
20432         sized correctly.
20433
20434 2005-01-21  Jackson Harper  <jackson@ximian.com>
20435
20436         * TabControl.cs: Use cliping rectangle for blitting. Give the
20437         theme the clipping rect so we can do clipping while
20438         drawing. Remove some debug code.
20439
20440 2005-01-21  Jackson Harper  <jackson@ximian.com>
20441
20442         * TabPage.cs: Add a new method so tab pages can force the tab
20443         control to recalculate the tab page sizes.
20444         * TabControl.cs: UpdateOwner needs to make the tab control recalc
20445         sizes.
20446
20447 2005-01-20  Jackson Harper  <jackson@ximian.com>
20448
20449         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
20450
20451 2005-01-20  Jackson Harper  <jackson@ximian.com>
20452
20453         * TreeView.cs: Set the bounds for nodes properly. They were
20454         getting screwed up when checkboxes were not enabled, but images
20455         were.
20456
20457 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
20458
20459         * ListBox.cs:
20460                 - Owner draw support
20461                 - Fixes
20462                 
20463 2005-01-20  Jackson Harper  <jackson@ximian.com>
20464
20465         * XplatUIStructs.cs: More misc keys
20466         * X11Keyboard.cs: Ignore some control keys.
20467
20468 2005-01-20  Jackson Harper  <jackson@ximian.com>
20469
20470         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
20471         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
20472
20473 2005-01-19  Peter Bartok  <pbartok@novell.com>
20474
20475         * Control.cs: Un-selecting the control when it is loosing focus
20476
20477 2005-01-19  Jackson Harper  <jackson@ximian.com>
20478
20479         * TreeView.cs: Hook up to the text controls leave event so we can
20480         end editing when the users clicks outside the text box.
20481         
20482 2005-01-19  Jackson Harper  <jackson@ximian.com>
20483
20484         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
20485         get set in the conversion array.
20486
20487 2005-01-19  Peter Bartok  <pbartok@novell.com>
20488
20489         * Application.cs (ModalRun): Added a call to CreateControl to ensure
20490           focus is properly set
20491         * Button.cs:
20492           - Added missing attributes
20493           - removed styles, those are already set in the base class
20494         * ButtonBase.cs:
20495           - Added missing attributes
20496           - Added clip window styles
20497         * CheckBox.cs: Added missing attributes
20498         * CommonDialog.cs:
20499           - FormParentWindow.CreateParams: Added required clip styles
20500         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
20501           also filters modifier keys
20502         * MessageBox.cs:
20503           - Added assignment of Accept and Cancel button to enable Enter
20504             and Esc keys in MessageBox dialogs
20505           - FormParentWindow.CreateParams: Added required clip styles
20506         * RadioButton.cs: Added missing attributes
20507         * TextControl.cs: No longer draws selection if control does not
20508           have focus
20509         * TextBoxBase.cs:
20510           - Now draws simple rectangle around test area to make it obvious
20511             there's a control. This is a hack until we properly support borders
20512           - A few simple fixes to support selections better, now erases selected
20513             text when typing, and resets selection when using movement keys
20514
20515 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
20516
20517         * UpDownBase.cs: Added some new properties.
20518
20519         * DomainUpDown.cs: Implement a lot to get my test working.
20520
20521 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20522
20523         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
20524
20525 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20526
20527         * OSXStructs (WindowAttributes): Fixed csc complaints
20528
20529 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20530
20531         * XplayUIOSX.cs:
20532           OSXStructs.cs: Initial refactor to move enums and consts into
20533           OSXStructs and use them in the driver for greater readability.
20534
20535 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
20536
20537         * XplatUIOSX.cs: Initial support for Standard Cursors.
20538         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
20539
20540 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
20541
20542         * ComboBox.cs: ability to change style when the ctrl is already
20543         created, missing methods and events, bug fixes, signature fixes
20544
20545 2005-01-19  Peter Bartok  <pbartok@novell.com>
20546
20547         * Cursors.cs (ctor): Added ctor to fix signature
20548
20549 2005-01-18  Peter Bartok  <pbartok@novell.com>
20550
20551         * Button.cs: Implemented DoubleClick event
20552         * ButtonBase.cs:
20553           - Fixed keyboard handling to behave like MS, where the press of
20554             Spacebar is equivalent to a mousedown, and the key release is
20555             equivalent to mouseup. Now a spacebar push will give the same
20556             visual feedback like a mouse click.
20557           - Added missing attributes
20558           - Added ImeModeChanged event
20559           - Added support for generating DoubleClick event for derived classes
20560         * CheckBox.cs:
20561           - Implemented DoubleClick event
20562           - Added missing attributes
20563         * CommonDialog.cs: Added missing attribute
20564         * ContextMenu.cs: Added missing attributes
20565         * RadioButton.cs:
20566           - AutoChecked buttons do not allow to be unselected when clicked
20567             (otherwise we might end up with no selected buttons in a group)
20568           - Added missing attributes
20569           - Implemented DoubleClickEvent
20570         * ThreadExceptionDialog.cs: Enabled TextBox code
20571
20572 2005-01-18  Peter Bartok  <pbartok@novell.com>
20573
20574         * Form.cs: Removed debug output
20575         * Button.cs: Added support for DoubleClick method
20576
20577 2005-01-18  Peter Bartok  <pbartok@novell.com>
20578
20579         * Form.cs:
20580           - Added method to parent window that allows triggering size
20581             calculations when a menu is added/removed
20582           - set_Menu: Cleaned up mess from early days of Form and Control,
20583             now properly triggers a recalc when a menu is added/removed
20584           - Added case to select form itself as focused form if no child
20585             controls exist
20586           - Added PerformLayout call when showing dialog, to ensure properly
20587             placed controls
20588         * Control.cs:
20589           - Select(): Made internal so Form can access it
20590           - Focus(): Only call Xplat layer if required (avoids loop), and sets
20591             status
20592         * Application.cs (Run): Removed hack and calls PerformLayout instead
20593           to trigger calculation when Form becomes visible
20594
20595 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
20596
20597         * ComboBox.cs: fixes for ownerdraw
20598
20599 2005-01-18  Peter Bartok  <pbartok@novell.com>
20600
20601         * TextControl.cs:
20602           - Sentinel is no longer static, each Document gets it's own, this
20603             avoids locking or alternatively overwrite problems when more
20604             than one text control is used simultaneously.
20605           - Switched to use Hilight and HilightText brushes for text selection
20606
20607         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
20608
20609 2005-01-18  Peter Bartok  <pbartok@novell.com>
20610
20611         * Control.cs:
20612           - Hooked up the following events:
20613                 o ControlAdded
20614                 o ControlRemoved
20615                 o HandleDestroyed
20616                 o ImeModeChanged
20617                 o ParentChanged
20618                 o TabStopChanged
20619                 o Invalidated
20620                 o SystemColorsChanged
20621                 o ParentFontChanged
20622                 o Move
20623           - Removed debug output
20624           - Added a call to the current theme's ResetDefaults when a color change
20625             is detected
20626         * Form.cs: Now setting the proper ImeMode
20627         * Theme.cs: Defined a method to force recreation of cached resources
20628           and rereading of system defaults (ResetDefaults())
20629         * ThemeWin32Classic.cs: Added ResetDefaults() stub
20630
20631 2005-01-17  Peter Bartok  <pbartok@novell.com>
20632
20633         * Control.cs: Added missing attributes
20634
20635 2005-01-17  Jackson Harper  <jackson@ximian.com>
20636
20637         * TreeNode.cs: Implement editing. Add missing properties selected
20638         and visible.
20639         * TreeView.cs: Implement node editing. Also some fixes to use
20640         Invalidate (invalid area) instead of Refresh when selecting.
20641
20642 2005-01-17  Peter Bartok  <pbartok@novell.com>
20643
20644         * Control.cs:
20645           - Implemented InvokeGotFocus() method
20646           - Implemented InvokeLostFocus() method
20647           - Implemented InvokePaint() method
20648           - Implemented InvokePaintBackground() method
20649           - Implemented InvokeClick() method
20650           - Implemented FindForm() method
20651           - Implemented RectangleToClient() method
20652           - Implemented ClientToRectangle() method
20653           - Implemented ResetBackColor() method
20654           - Implemented ResetCursor() method
20655           - Implemented ResetFont() method
20656           - Implemented ResteForeColor() method
20657           - Implemented ResetImeMode() method
20658           - Implemented ResetLeftToRight() method
20659           - Implemented ResetText() method
20660           - Implemented Scale() methods
20661           - Implemented ScaleCore() method
20662           - Implemented Update() method
20663           - Removed unused variables
20664           - Stubbed AccessibilityNotifyClients and
20665             ControlAccessibleObject.NotifyClients() methods (dunno what to do
20666             with those yet)
20667           - Now setting proper default for RightToLeft property
20668           - Fixed bug in SetClientSizeCore that would cause windows to get
20669             really big
20670           - Now sending Click/DoubleClick events
20671           - Now selecting controls when left mouse button is clicked on
20672             selectable control
20673         * AccessibleEvents.cs: Added
20674         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
20675         * XplatUIOSX.cs: Stubbed UpdateWindow() method
20676         * XplatUIWin32.cs: Implemented UpdateWindow() method
20677         * XplatUIX11.cs: Implemented UpdateWindow() method
20678         * Form.cs: Removed stray semicolon causing CS0162 warning
20679         * ThemeWin32Classic.cs: Fixed unused variable warnings
20680         * ScrollableControl.cs: Now calls base method for ScaleCore
20681         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
20682           style to avoid interference with internal click handler (which is
20683           different than standard Control click handling)
20684         * RadioButton.cs:
20685           - Now unchecks all sibling radio buttons when control is
20686             selected (Fixes #68756)
20687           - Removed internal tabstop variable, using the one inherited from
20688             Control
20689
20690 2005-01-17  Jackson Harper  <jackson@ximian.com>
20691
20692         * NavigateEventArgs.cs: Fix base type.
20693         * LinkLabel.cs: Sig fix
20694         
20695 2005-01-17  Jackson Harper  <jackson@ximian.com>
20696
20697         * TreeView.cs: Only invalidate the effected nodes bounds when
20698         selecting nodes.
20699
20700 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20701
20702         * XplatUIWin32.cs: fixes Win32 marshaling
20703         * XplatUIX11.cs: fixes method signature
20704
20705 2005-01-17  Peter Bartok  <pbartok@novell.com>
20706
20707         * XplatUIX11.cs: Clean up resources when we no longer need them
20708
20709 2005-01-17  Peter Bartok  <pbartok@novell.com>
20710
20711         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
20712           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
20713           and DestroyCursor() methods.
20714         * Cursor.cs: Partially implemented, now supports standard cursors;
20715           still contains some debug code
20716         * Cursors.cs: Implemented class
20717         * Control.cs:
20718           - WndProc(): Added handling of WM_SETCURSOR message, setting the
20719             appropriate cursor
20720           - Implemented Cursor property
20721           - Replaced break; with return; more straightforwar and possibly
20722             faster
20723           - Now properly setting the result for WM_HELP
20724         * X11Structs.cs: Added CursorFontShape enum
20725         * XplatUIStructs.cs:
20726           - Added StdCursor enum (to support DefineStdCursor() method)
20727           - Added HitTest enum (to support sending WM_SETCURSOR message)
20728         * XplatUIX11.cs:
20729           - Now sends the WM_SETCURSOR message
20730           - Implemented new cursor methods
20731         * XplatUIOSX.cs: Stubbed new cursor methods
20732         * XplatUIWin32.cs:
20733           - Implemented new cursor methods
20734           - Added GetSystemMetrics function and associated enumeration
20735
20736 2005-01-15  Peter Bartok  <pbartok@novell.com>
20737
20738         * Control.cs:
20739           - WndProc(): Now handles EnableNotifyMessage
20740           - SelectNextControl(): Fixed bug where if no child or sibling
20741             controls exist we looped endlessly
20742
20743 2005-01-14  Jackson Harper  <jackson@ximian.com>
20744
20745         * TreeView.cs: Recalculate the tab pages when a new one is added
20746         so that the proper bounding rects are created.
20747
20748 2005-01-14  Jackson Harper  <jackson@ximian.com>
20749
20750         * TreeView.cs: Draw a gray box instead of a grip in the lower
20751         right hand corner when there are both horizontal and vertical
20752         scroll bars.
20753
20754 2005-01-14  Jackson Harper  <jackson@ximian.com>
20755
20756         * Control.cs: When erasing backgrounds use FromHwnd instead of
20757         FromHdc when there is a NULL wparam. This occurs on the X driver.
20758         * XplatUIX11.cs: Set the wparam to NULL.
20759
20760 2005-01-13  Jackson Harper  <jackson@ximian.com>
20761
20762         * PictureBox.cs: Implement missing methods (except ToString, need
20763         to test that on windows) and events. When visibility is changed we
20764         need to redraw the image because the buffers are killed. When size
20765         is changed refresh if the sizemode needs it.
20766
20767 2005-01-13  Peter Bartok  <pbartok@novell.com>
20768
20769         * Control.cs (SelectNextControl): Was using wrong method to select
20770           a control
20771
20772 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20773
20774         * ComboBox.cs: fixes dropstyle
20775
20776 2005-01-13  Peter Bartok  <pbartok@novell.com>
20777
20778         * Form.cs:
20779           - Implemented Select() override
20780           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
20781           - Now sets keyboard focus on startup
20782         * Control.cs (SelectNextControl): Now properly handles directed=true
20783         * TextBoxBase.cs:
20784           - WndProc: Now passes tab key on to base if AcceptTabChar=false
20785           - Added (really bad) focus rectangle (mostly for testing)
20786         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
20787           to enforce redraw on focus changes
20788         * ContainerControl.cs:
20789           - Fixed detection of Shift-Tab key presses
20790           - Fixed traversal with arrow keys
20791         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
20792           gonna keep this or if it's complete yet
20793         
20794 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
20795
20796         * ComboBox.cs: missing properties, fixes
20797
20798 2005-01-13  Peter Bartok  <pbartok@novell.com>
20799
20800         * Panel.cs (ctor): Setting Selectable window style to off
20801         * Splitter.cs (ctor): Setting Selectable window style to off
20802         * GroupBox.cs (ctor): Setting Selectable window style to off
20803         * Label.cs (ctor): Setting Selectable window style to off
20804
20805 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
20806
20807         * UpDownBase.cs (InitTimer): If the timer has been already
20808         created, enable it.
20809
20810         Use a TextBox instead of a Label.
20811
20812 2005-01-12  Jackson Harper  <jackson@ximian.com>
20813
20814         * TreeView.cs: Refresh the tree after sorting the nodes. Always
20815         draw the connecting node lines (when ShowLines is true).
20816         * TreeNode.cs: The nodes index can now be updated. This is used
20817         when a node collection is sorted.
20818         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
20819         insert or an existing unsorted node collection can be sorted.
20820         
20821 2005-01-12  Peter Bartok  <pbartok@novell.com>
20822
20823         * ContainerControl.cs: Implemented ProcessDialogKeys()
20824
20825 2005-01-12  Peter Bartok  <pbartok@novell.com>
20826
20827         * Control.cs:
20828           - Implemented SelectNextControl() method
20829           - Several focus related bug fixes
20830           - Fixed Docking calculations to match MS documentation and
20831             behaviour
20832
20833 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
20834
20835         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
20836         bug fixes
20837
20838 2005-01-12  Peter Bartok  <pbartok@novell.com>
20839
20840         * Control.cs:
20841           - Fixed broken Contains() method
20842           - Implemented GetNextControl() method. Finally. This is the pre-
20843             requisite for focus handling.
20844
20845 2005-01-12  Peter Bartok  <pbartok@novell.com>
20846
20847         * OSXStrucs.cs: Added
20848
20849 2005-01-12  Peter Bartok  <pbartok@novell.com>
20850
20851         * XplatUIWin32.cs:
20852           - Removed PeekMessageFlags
20853           - Implemented SetWindowStyle() method
20854         * XplatUIStructs.cs: Added PeekMessageFlags
20855         * X11Structs: Added missing border_width field to XWindowChanges struct
20856         * XplatUIX11.cs:
20857           - PeekMessage: Now throws exception if flags which are not yet
20858             supported are passed
20859           - Implemented SetWindowStyle() method
20860           - Fixed SetZOrder to handle AfterHwnd properly
20861         * XplatUI.cs: Added SetWindowStyle() method
20862         * XplatUIDriver.cs: Added SetWindowStyle() abstract
20863         * Control.cs:
20864           - Implemented UpdateStyles() method
20865           - Implemented UpdateZOrder() method
20866         * XplatUIOSX.cs: Added SetWindowStyle() stub
20867
20868 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
20869
20870         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
20871         button mouse).
20872
20873
20874 2005-01-11  Jackson Harper  <jackson@ximian.com>
20875
20876         * TreeView.cs: Still need to draw lines to siblings even if out of
20877         the current node is out of the clip.
20878
20879 2005-01-11  Jackson Harper  <jackson@ximian.com>
20880
20881         * TreeView.cs: When setting the hbar/vbar/grip position use
20882         SetBounds so that perform layout is only called once. Also suspend
20883         and resume layout so layout is only done once for all controls.
20884         - Removed some debug fluff
20885         * SizeGrip.cs: Call base implmentation in overriding methods.
20886         - When visibility is changed the drawing buffers are killed so we
20887         need to redraw.
20888
20889 2005-01-11  Jackson Harper  <jackson@ximian.com>
20890
20891         * TreeView.cs: Calculate the open node count while drawing. This
20892         saves us an entire tree traversal for every paint operation. Use
20893         a member var for the open node count so less vars are passed around.
20894
20895 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
20896
20897         * MonthCalendar.cs:
20898         - fixed selection to use mousemove, not mouse polling on timer
20899         * ThemeWin32Classic.cs
20900         - removed redundant unused variable "no_more_content"
20901         
20902 2005-01-11  Peter Bartok  <pbartok@novell.com>
20903
20904         * XplatUIX11.cs (DoEvents): Needs to return when no more events
20905           are pending, so it now calls PeekMessage instead of GetMessage;
20906           implemented a incomplete version of PeekMessage
20907         
20908 2005-01-11  Peter Bartok  <pbartok@novell.com>
20909
20910         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
20911           I18n issues
20912         * TextBoxBase.cs: Added sending of TextChanged event
20913
20914 2005-01-10  Jackson Harper  <jackson@ximian.com>
20915
20916         * TreeView.cs: Try not to draw outside the clipping rectangle on
20917         each node element.
20918
20919 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
20920
20921         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
20922
20923 2005-01-10  Jackson Harper  <jackson@ximian.com>
20924
20925         * TreeView.cs:
20926         - Implement fast scrolling. Now only the newly
20927         exposed nodes are drawn and the old image is moved using the
20928         XplatUI::ScrollWindow method.
20929         - Factor in height of nodes when calculating whether or not the
20930         node is in the clipping rect.
20931
20932 2005-01-10  Jackson Harper  <jackson@ximian.com>
20933
20934         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
20935
20936 2005-01-10  Peter Bartok  <pbartok@novell.com>
20937
20938         * Application.cs: Added temporary hack to resolve all our resize
20939           required issues on startup. This will get fixed properly at
20940           some point in the future
20941
20942 2005-01-10  Jackson Harper  <jackson@ximian.com>
20943
20944         * SizeGrip.cs: New internal class that is used as a sizing
20945         grip control...hence the name.
20946
20947 2005-01-10  Peter Bartok  <pbartok@novell.com>
20948
20949         * Control.cs: Implemented proper TabIndex handling, now assigning
20950           a tabindex when a control is added to a container
20951         * GroupBox.cs (ctor): Now sets the Container style bit, required
20952           for Control.GetNextControl()
20953
20954 2005-01-09  Jackson Harper  <jackson@ximian.com>
20955
20956         * TextBoxBase.cs: Clear window when scrolling (fixes build).
20957
20958 2005-01-09  Peter Bartok <pbartok@novell.com>
20959
20960         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20961           XplatUIX11.cs: Added ability to control ScrollWindow expose and
20962           an overload for ScrollWindow to allow only scrolling a rectangle
20963
20964 2005-01-09  Peter Bartok <pbartok@novell.com>
20965
20966         * Form.cs:
20967           - Implemented SetDesktopBounds method
20968           - Implemented SetDesktopLocation method
20969
20970 2005-01-08  Jackson Harper  <jackson@ximian.com>
20971
20972         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
20973         the node count has changed, this removes to VScroll::Refresh calls
20974         when drawing.
20975
20976 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
20977
20978         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
20979
20980 2005-01-07  Jackson Harper  <jackson@ximian.com>
20981
20982         * TreeNode.cs: Just update the single node when it is
20983         checked. Don't refresh after toggling, the Expand/Collapse already
20984         handles this.
20985         * TreeView.cs: Respect clipping a little more when drawing. Try
20986         not to redraw things that don't need to be redrawn. Just hide the
20987         scrollbars when they are no longer needed instead of removing
20988         them, so they don't have to be created again and again.
20989         
20990 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
20991
20992         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
20993         coordinates to window space to place the caret properly, FIXED.
20994         Implement GetWindowState & SetWindowState
20995
20996 2005-01-06  Peter Bartok <pbartok@novell.com>
20997
20998         * Form.cs:
20999           - Implemented ClientSize property
21000           - Implemented DesktopBounds property
21001           - Implemented DesktopLocation property
21002           - Implemented IsRestrictedWindow property
21003           - Implemented Size property
21004           - Implemented TopLevel property
21005           - Implemented FormWindowState property
21006         * Control.cs:
21007           - Implemented GetTopLevel() method
21008           - Implemented SetTopLevel() method
21009         * X11Structs.cs (Atom):
21010           - Added AnyPropertyType definition
21011           - Added MapState definiton and updated XWindowAttribute struct
21012         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
21013         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
21014         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
21015         * XplatUIWin32.cs:
21016           - Implemented GetWindowState() and SetWindowState() methods
21017           - Fixed Win32GetWindowLong return type
21018         * XplatUIX11.cs:
21019           - Introduced central function for sending NET_WM messages
21020           - Implemented GetWindowState() and SetWindowState() methods
21021         * TextBoxBase.cs (set_Lines):
21022           - Now uses Foreground color for text added via Text property (Duh!)
21023           - Added code to remember programmatically requested size (fixes
21024             behaviour when Multiline is set after Size)
21025           - Added AutoSize logic
21026
21027 2005-01-06  Jackson Harper  <jackson@ximian.com>
21028
21029         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
21030
21031 2005-01-06  Jackson Harper  <jackson@ximian.com>
21032
21033         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
21034         set to less then 0.
21035
21036 2005-01-06  Jackson Harper  <jackson@ximian.com>
21037
21038         * ScrollableControl.cs: Lazy init the scrollbars.
21039         
21040 2005-01-06  Jackson Harper  <jackson@ximian.com>
21041
21042         * Theme.cs: Speed up getting pens and solid brushes, by using
21043         their ARGB as a hash instead of tostring and not calling Contains.
21044
21045 2005-01-06  Peter Bartok <pbartok@novell.com>
21046
21047         * Form.cs:
21048           - Implemented OnActivated and OnDeactivate event trigger
21049           - Implemented Activate() method
21050           - Fixed ShowDialog() to activate the form that was active before
21051             the dialog was shown
21052         * XplatUIX11.cs:
21053           - Added global active_window var that tracks the currently active
21054             X11 window
21055           - Now always grabs Property changes from the root window to always
21056             catch changes on the active window property
21057           - Added code to PropertyNotify handler to send Active/Inactive
21058             messages when state changes. This puts X11 and Win32 en par on
21059             WM_ACTIVATE notifications (except for double notifications when
21060             the user clicks away from our modal window to another one of our
21061             windows)
21062
21063 2005-01-05  Jackson Harper  <jackson@ximian.com>
21064
21065         * ImageList.cs: Implment ctor
21066
21067 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21068
21069         * XplatUIOSX.cs: Implement Activate/SetTopmost
21070
21071 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21072
21073         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
21074
21075 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
21076
21077         * XplatUIOSX.cs: Implement GetActive/SetFocus.
21078
21079 2005-01-05  Peter Bartok <pbartok@novell.com>
21080
21081         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
21082           XplatUIOSX.cs: Added GetActive method to return the currently
21083           active window for the application (or null, if none is active)
21084         * Form.cs:
21085           - Implemented ActiveForm
21086           - Commented out owner assignment for modal dialogs (causes problems
21087             on Win32, since the owner will be disabled)
21088           - Reworked some Active/Focus handling (still incomplete)
21089         * CommonDialog.cs: Commented out owner assignment for modal dialogs
21090           (causes problems on Win32, since the owner will be disabled)
21091         * IWin32Window: Added ComVisible attribute
21092
21093 2005-01-05  Peter Bartok <pbartok@novell.com>
21094
21095         * ToolTip.cs (WndProc): Enable setting focus now that we have the
21096           required XplatUI functions.
21097
21098 2005-01-05  Peter Bartok <pbartok@novell.com>
21099
21100         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
21101           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
21102           to implement focus and activation handling; still incomplete and
21103           with debug output
21104
21105 2005-01-04  Peter Bartok <pbartok@novell.com>
21106
21107         * TextBoxBase.cs: Changed access level for Document property to
21108           match switch to internal for TextControl
21109
21110 2005-01-04  Peter Bartok <pbartok@novell.com>
21111
21112         * AccessibleObject: Added ComVisible attribute
21113
21114 2005-01-04  Jackson Harper  <jackson@ximian.com>
21115
21116         * X11Keyboard.cs: Remove unneeded var.
21117
21118 2005-01-04  Jackson Harper  <jackson@ximian.com>
21119
21120         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
21121         but PAINT.
21122         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
21123         ClientMessage. This makes apps exit cleanly (more often).
21124         
21125 2005-01-04  Jackson Harper  <jackson@ximian.com>
21126
21127         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
21128         handling focus, return correct colors and fonts,
21129         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
21130         handle selection, horizontal scrolling, and mouse interaction.
21131
21132 2005-01-04  Peter Bartok <pbartok@novell.com>
21133
21134         * ICommandExecutor.cs: Added
21135         * IDataGridColumnStyleEditingNotificationService.cs: Added
21136         * IFeatureSupport.cs: Added
21137         * IFileReaderService.cs: Added
21138         * IDataObject.cs: Added ComVisible attribute
21139         * AmbientProperties.cs: Added
21140         * BaseCollection.cs: Added missing attributes
21141         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
21142         * BaseCollection.cs: Added missing attributes
21143         * Binding.cs: Added TypeConverter attribute
21144         * BindingContext.cs: Added DefaultEvent attribute
21145         * BindingsCollection.cs: Added DefaultEvent attribute
21146         * Button.cs: Added DefaultValue attribute
21147         * DragEventArgs.cs: Added ComVisible attribute
21148         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
21149         * KeyEventArgs.cs: Added ComVisible attribute
21150         * KeyPressEventArgs.cs: Added ComVisible attribute
21151         * MouseEventArgs.cs: Added ComVisible attribute
21152         * NavigateEventArgs.cs: Added
21153         * NavigateEventHandler.cs: Added
21154         * FeatureSupport.cs: Added
21155         * OSFeature.cs: Added
21156         * Theme.cs: Added abstract Version property to support OSFeature
21157         * ThemeWin32Classic.cs: Added Version property to
21158           support OSFeature.Themes
21159         * ProgressBar.cs: Removed OnPaintBackground override, not required since
21160           the proper styles to avoid background drawing are set, also doesn't
21161           match MS signature
21162         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
21163         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
21164         * ScrollEventArgs.cs: Added ComVisible attribute
21165         * SplitterEventArgs.cs: Added ComVisible attribute
21166         * AccessibleSelection.cs: Added Flags attribute
21167         * Appearance.cs: Added ComVisible attribute
21168         * Border3DSide.cs: Added ComVisible attribute
21169         * Border3DStyle.cs: Added ComVisible attribute
21170         * BorderStyle.cs: Added ComVisible attribute
21171         * DragAction.cs: Added ComVisible attribute
21172         * ErrorBlinkStyle.cs: Added
21173         * ScrollEventType.cs: Added ComVisible attribute
21174         * AnchorStyles.cs: Added Editor attribute
21175         * DockStyle.cs: Added Editor attribute
21176         * HorizontalAlignment.cs: Added ComVisible attribute
21177         * HelpEventArgs.cs: Added ComVisible attribute
21178         * PaintEventArgs.cs: Added IDisposable
21179
21180 2005-01-04  Peter Bartok <pbartok@novell.com>
21181
21182         * TextControl.cs: Switched Line, LineTag and Document classes to
21183           internal
21184
21185 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21186
21187         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
21188         Simple mode, fixes, IntegralHeight, etc.
21189
21190 2005-01-04  Peter Bartok <pbartok@novell.com>
21191
21192         * TextBoxBase.cs: Using proper font variable now
21193
21194 2005-01-04  Peter Bartok <pbartok@novell.com>
21195
21196         * Form.cs (ShowDialog): Set parent to owner, if provided
21197         * GroupBox.cs: Removed unused vars
21198         * TextControl.cs:
21199           - Added GetHashCode() for Document and LineTag classes
21200           - Removed unused variables
21201           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
21202             to allow translation between continuous char position and line/pos
21203         * CheckBox.cs: Removed vars that are provided by base class
21204         * RadioButton.cs: Removed vars that are provided by base class, added
21205           new keyword where required
21206         * LinkLabel.cs: Added new keyword where required
21207         * Control.cs (WndProc): Removed unused variable
21208         * TextBoxBase.cs:
21209           - Finished SelectionLength property
21210           - Implemented SelectionStart property
21211           - Implemented Text property
21212           - Removed unused vars
21213         * MessageBox.cs: Added new keyword where required
21214         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
21215           WndProc signature
21216         * MenuAPI.cs: Added new keyword where required
21217         * ButtonBase.cs: Removed vars that are provided by base class, added
21218           new keyword where required
21219         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
21220           argument to double, to allow compiling with csc 2.0 (Atsushi ran
21221           into this)
21222         * Application.cs (Run): Now triggers the ThreadExit event
21223         * CommonDialog.cs: Added new keyword where required; now properly sets
21224           parent (owner) for dialog
21225         * XplatUIX11.cs: Commented out unused vars
21226         * StatusBar.cs: Fixed signature for Text property
21227         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
21228
21229 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
21230
21231         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
21232         TrackBar.cs, MonthCalendar.cs: remove unused vars
21233
21234 2005-01-03  Jackson Harper  <jackson@ximian.com>
21235
21236         * ThemeWin32Classic.cs:
21237         * X11Keyboard.cs: Remove unused vars.
21238
21239 2005-01-03  Peter Bartok  <pbartok@novell.com>
21240
21241         * TextBox.cs:
21242           - set_Text: Tied into TextControl
21243           - set_TextAlignment: Tied into TextControl
21244         * TextControl.cs:
21245           - Added alignment properties and implemented alignment handling
21246             and drawing (still has a bug, not generating proper expose events)
21247           - Added new Line() constructor to allow passing the line alignment
21248           - Fixed selection setting, properly handling end<start now
21249           - Added aligment considerations to RecalculateDocument()
21250         * TextBoxBase.cs:
21251           - Now properly enforces control height for single line controls
21252           - Added support for CharacterCasing
21253           - Added IsInputKey override
21254           - Fixed Keys.Enter logic
21255           - Added SetBoundsCore override
21256           - Fixed mouse selection handling
21257
21258 2005-01-03  Jackson Harper  <jackson@ximian.com>
21259
21260         * TreeView.cs:
21261           - Collapse and uncheck all nodes when CheckBoxes is disabled.
21262           - Checkboxes are always aligned to the bottom of the node,
21263           regardless of item height.
21264           - Use the node bounds to draw the text so we can center it when
21265           the item height is greater then the font height.
21266           - Node::Bounds are only the text part of the node.
21267         * TreeNode.cs: New method to combine collapsing and unchecking all
21268           nodes recursively.
21269
21270 2005-01-02  Jackson Harper  <jackson@ximian.com>
21271
21272         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
21273         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
21274         tree when a check is changed. TODO: Only refresh the checked node.
21275
21276 2004-12-30  Jackson Harper  <jackson@ximian.com>
21277
21278         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
21279         * TreeNode.cs: When collapsing make sure to never collapse the
21280         root node.
21281
21282 2004-12-29  Jackson Harper  <jackson@ximian.com>
21283
21284         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
21285         
21286 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
21287
21288         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
21289
21290 2004-12-28  Peter Bartok  <pbartok@novell.com>
21291
21292         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
21293           not yet assigned
21294
21295 2004-12-28  Peter Bartok  <pbartok@novell.com>
21296
21297         * Control.cs (WndProc): Added WM_HELP handler, now generates
21298           HelpRequested event
21299         * Form.cs: Added HelpButton property and required support code
21300         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
21301
21302 2004-12-28  Peter Bartok  <pbartok@novell.com>
21303
21304         * CommonDialog.cs:
21305           - Made DialogForm.owner variable internal
21306           - Added check to ensure owner form is set before setting
21307             owner properties in CreateParams
21308
21309 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
21310
21311         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
21312           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
21313           GetCursorPos.  Fix major visibility issues.  Rework the windowing
21314           system to support borderless/titleless windows (implements menus).
21315           Fix GetWindowPos.  Implement initial background color support for
21316           views.
21317
21318 2004-12-28  Peter Bartok  <pbartok@novell.com>
21319
21320         * Form.cs (get_CreateParams): Make sure we have an owner before using
21321           the owner variable. Implement proper default if no owner exists
21322
21323 2004-12-28  Peter Bartok  <pbartok@novell.com>
21324
21325         * In preparation for making Managed.Windows.Forms the default build target
21326           for System.Windows.Forms, the following stubbed files were added.
21327           Dialogs are currently being implemented by contributors and are only
21328           short-term place holders.
21329         * ColorDialog.cs: Initial check-in (minmal stub)
21330         * DataGrid.cs: Initial check-in (minimal stub)
21331         * DataGridLineStyle.cs: Initial check-in (minimal stub)
21332         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
21333         * DataGridTableStyle.cs: Initial check-in (minimal stub)
21334         * FontDialog.cs: Initial check-in (minimal stub)
21335         * FileDialog.cs: Initial check-in (minimal stub)
21336         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
21337         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
21338         * OpenFileDialog: Initial check-in (minimal stub)
21339         * IComponentEditorPageSite.cs: Initial check-in
21340         * Splitter.cs: Initial check-in (for Jackson)
21341         * SplitterEventArgs.cs: Initial check-in (for Jackson)
21342         * SplitterEventHandler.cs: Initial check-in (for Jackson)
21343         * TextBox.cs: Initial check-in; still needs some wiring to
21344           TextControl backend
21345         * Form.cs: Implemented ControlBox property
21346         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
21347         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
21348         * TextControl.cs: Added selection functionality; added todo header
21349         * TextBoxBase.cs:
21350           - Implemented Lines property
21351           - Implemented TextHeight property
21352           - Implemented SelectedText property
21353           - Implemented SelectionLength property
21354           - Implemented SelectAll method
21355           - Implemented ToString method
21356           - Removed and cleaned up some debug code
21357           - Implemented (still buggy) mouse text selection
21358
21359 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
21360
21361         * ComboBox.cs: Complete DropDownList implementation, fixes.
21362
21363 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
21364
21365         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
21366         * ComboBoxStyle.cs: ComboBoxStyle enum
21367         * ComboBox.cs: Initial work on ComboBox control
21368
21369 2004-12-21  Peter Bartok  <pbartok@novell.com>
21370
21371         * Control.cs (ctor, CreateParams): Moved setting of is_visible
21372           forward so that anything that creates a window gets the default,
21373           also no longer uses Visible property in CreateParams to avoid
21374           walking up the parent chain and possibly get the wrong visible
21375           status. Fixed IsVisible to no longer walk up to the parent.
21376
21377 2004-12-21  Peter Bartok  <pbartok@novell.com>
21378
21379         * Form.cs (ShowDialog): Unset modality for the proper window
21380  
21381 2004-12-20  Peter Bartok  <pbartok@novell.com>
21382
21383         * CommonDialog.cs: Initial check-in
21384
21385 2004-12-20  Peter Bartok  <pbartok@novell.com>
21386
21387         * Control.cs (Visible): Now uses the parent window instead of the
21388           client area window for the property
21389
21390         * Form.cs
21391           - ShowDialog(): Now uses the proper window for modality
21392           - The default visibility state for the form parent is now false. This
21393             will prevent the user from seeing all the changes to the form and
21394             its controls before the application hits Application.Run()
21395           - Removed some stale commented out code
21396
21397         * NativeWindow.cs:
21398           - Added FindWindow() method to have a method to check for existence
21399             of a window handle
21400           - Added ability to override default exception handling (for example
21401             when debugging with VS.Net; to do this the ExternalExceptionHandler
21402             define must be set
21403           - Removed some useless debug output
21404
21405         * XplatUIX11.cs:
21406           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
21407             not working as expected
21408           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
21409             property to allow switching back to the modal window if focus is
21410             given to another one of our windows (Application Modal)
21411           - Now only sets override_redirect if we create a window
21412             without WS_CAPTION
21413           - Moved EventMask selection before mapping of newly created window
21414             so we can catch the map event as well
21415           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
21416           - Added various Atom related DllImports
21417           - Implemented Exit() method
21418           - .ctor() : No longer shows window if WS_VISIBLE is not defined
21419             in the CreateParams
21420
21421         * MessageBox.cs: Now properly deals with the FormParent window by
21422           providing an override the FormParent CreateParams property to
21423           set as POPUP instead of OVERLAPPED window.
21424
21425 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21426
21427         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
21428         Minor code cleanup.
21429
21430 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
21431         
21432         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
21433
21434 2004-12-18  Peter Bartok  <pbartok@novell.com>
21435
21436         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
21437           implementing SetModal() method
21438
21439 2004-12-18  Peter Bartok  <pbartok@novell.com>
21440
21441         * X11Structs.cs (XGCValues): Fixed type of function element
21442         * XplatUI.cs: Added ScrollWindow() method
21443         * XplatUIDriver.cs: Added ScrollWindow() abstract
21444         * XplatUIWin32.cs: Implemented ScrollWindow() method
21445         * XplatUIX11.cs: Implemented ScrollWindow() method
21446         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
21447
21448 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21449
21450         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
21451         Some more keyboard support (INCOMPLETE)
21452
21453 2004-12-17  Peter Bartok  <pbartok@novell.com>
21454
21455         * TextControl.cs:
21456         - Added color attribute to line tags.
21457         - Added color argument to all functions dealing with tags
21458         - Added color argument support to various functions
21459         - Fixed miss-calculation of baseline/shift in certain circumstances
21460
21461         * TextBoxBase.cs: Added new color option to test code
21462
21463 2004-12-17  Jackson Harper  <jackson@ximian.com>
21464
21465         * TreeNode.cs:
21466         * MonthCalendar.cs: Signature fixes
21467
21468 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21469
21470         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
21471         keyboard event moved it.  Create a new graphics context for each paint resolves this
21472
21473 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
21474
21475         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
21476         Make caret exist and go blink blink.  Initial keyboard support.
21477         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
21478         works.
21479
21480 2004-12-17  Jackson Harper  <jackson@ximian.com>
21481
21482         * XplatUIStructs.cs: Updated set of virtual keycodes.
21483         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
21484
21485 2004-12-17  Jackson Harper  <jackson@ximian.com>
21486
21487         * XplatUIX11.cs: Prune old keyboard code.
21488
21489 2004-12-17  Jackson Harper  <jackson@ximian.com>
21490
21491         * XplatUIX11.cs: When generating mouse wparams get the modifier
21492         keys from the ModifierKeys property.
21493
21494 2004-12-17  Jackson Harper  <jackson@ximian.com>
21495
21496         * X11Keyboard.cs: Send up/down input when generating
21497         messages. Remove some unused vars.
21498
21499 2004-12-17  Jackson Harper  <jackson@ximian.com>
21500
21501         * TabControl.cs:
21502         * TreeView.cs: get rid of warnings.
21503
21504 2004-12-17  Jackson Harper  <jackson@ximian.com>
21505
21506         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
21507
21508 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
21509
21510         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
21511           CheckedListBox.cs: Implementation
21512
21513 2004-12-17  Peter Bartok  <pbartok@novell.com>
21514
21515         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
21516
21517 2004-12-16  Peter Bartok  <pbartok@novell.com>
21518
21519         * TextControl.cs:
21520           - InsertCharAtCaret(): Fixed start pos fixup
21521           - CaretLine_get: No longer derives the line from the tag, the tag
21522             could be stale if lines in the document have been added or deleted
21523           - RebalanceAfterDelete(): Fixed bug in balancing code
21524           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
21525           - Line.Streamline(): Now can also elminate leading empty tags
21526           - DumpTree(): Added a few more tests and prevented exception on
21527             uninitialized data
21528           - Added Debug section for Combining lines
21529           - Delete(): Now copies all remaining properties of a line
21530           
21531         * TextBoxBase.cs:
21532           - Left mousebutton now sets the caret (and middle button still acts
21533             as formatting tester, which must go away soon)
21534           - Added Debug section for Deleting/Combining lines
21535           - Fixed calculations for UpdateView after Combining lines
21536
21537 2004-12-16  Peter Bartok  <pbartok@novell.com>
21538
21539         * TextControl.cs: Now properly aligns text on a baseline, using the
21540           new XplatUI.GetFontMetrics() method. Simplified several calculations
21541         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
21542           defined
21543
21544 2004-12-16  Peter Bartok  <pbartok@novell.com>
21545
21546         * XplatUI.cs: Added GetFontMetrics() method
21547         * XplatUIDriver.cs: Added GetFontMetrics() abstract
21548         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
21549           into libgdiplus, our private GetFontMetrics function
21550         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
21551         * XplatUIWin32.cs: Implemented GetFontMetrics() method
21552
21553 2004-12-16  Jackson Harper  <jackson@ximain.com>
21554
21555         * XplatUIStruct.cs: Add enum for dead keys
21556         * X11Keyboard.cs: Map and unmap dead keys.
21557
21558 2004-12-16  Jackson Harper  <jackson@ximian.com>
21559
21560         * X11Keyboard.cs: Detect and use the num lock mask.
21561
21562 2004-12-16  Peter Bartok  <pbartok@novell.com>
21563
21564         * Control.cs (CreateGraphics): Added check to make sure the
21565           handle of the window exists before calling Graphics.FromHwnd()
21566
21567 2004-12-16  Peter Bartok  <pbartok@novell.com>
21568
21569         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
21570           contains a lot of code that's not supposed to be there for the
21571           real thing, but required for developing/testing the textbox
21572           backend.
21573
21574 2004-12-16  Peter Bartok  <pbartok@novell.com>
21575
21576         * TextControl.cs:
21577         - Fixed Streamline method
21578         - Added FindTag method to Line
21579         - Added DumpTree method for debugging
21580         - Added DecrementLines() method for deleting lines
21581         - Fixed UpdateView to update the cursor to end-of-line on single-line
21582           updates
21583         - Added PositionCaret() method
21584         - Fixed MoveCaret(LineDown) to move into the last line, too
21585         - Added InsertChar overload
21586         - Fixed InsertChar tag offset calculations
21587         - Added DeleteChar() method
21588         - Added Combine() method for folding lines
21589         - Fixed Delete() method, no longer allocates wasted Line object and
21590           now copies all properties when swapping nodes
21591         - Delete() method now updates document line counter
21592
21593 2004-12-15  Jackson Harper  <jackson@ximian.com>
21594
21595         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
21596         * X11Keyboard.cs: Expose the currently selected modifier keys
21597         through a property.
21598
21599 2004-12-15  Peter Bartok  <pbartok@novell.com>
21600
21601         * TextControl.cs: Initial check-in. Still incomplete
21602
21603 2004-12-15  Jackson Harper  <jackson@ximian.com>
21604
21605         * TreeNode.cs:
21606         * TreeView.cs: Fix build on csc (second time today ;-))
21607
21608 2004-12-15  Jackson Harper  <jackson@ximian.com>
21609
21610         * TreeView.cs: Store the treenodes plus/minus box bounds when it
21611         is calculated and use this for click testing.
21612         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
21613
21614 2004-12-15  Jackson Harper  <jackson@ximian.com>
21615
21616         * TreeView.cs: Pass the nodes image index to the image list when
21617         drawing that image.
21618
21619 2004-12-15  Jackson Harper  <jackson@ximian.com>
21620
21621         * X11Keyboard.cs: Set messages hwnd.
21622         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
21623         post_message calls.
21624
21625 2004-12-15  Jackson Harper  <jackson@ximian.com>
21626
21627         * X11Keyboard.cs: Fix to compile with csc.
21628         
21629 2004-12-15  Jackson Harper  <jackson@ximian.com>
21630
21631         * X11Structs.cs: Add key mask values
21632         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
21633         * X11Keyboard.cs: New file - Extrapolates and interpolates key
21634         down/up foo into WM_CHAR foo
21635         * KeyboardLayouts.cs: Common keyboard layouts
21636         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
21637         post messages into the main queue.
21638
21639 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
21640
21641         * Button.cs: implement ProcessMnemonic
21642         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
21643           brushes everytime
21644         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
21645         * ButtonBase.cs: Show HotkeyPrefix (not the &)
21646
21647 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
21648         
21649         * MonthCalendar.cs: Implemented click-hold for next/previous month
21650           and date selection
21651           
21652 2004-12-11  Peter Bartok  <pbartok@novell.com>
21653
21654         * X11Structs.cs:
21655           - Added XKeyboardState (moved from XplatUIX11.cs)
21656           - Added XCreateGC related enums and structures
21657           - Added GXFunction for XSetFunction
21658
21659         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
21660
21661         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
21662           CaretVisible() calls
21663
21664         * ToolTip.cs: Added code to prevent stealing focus from app windows
21665
21666         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
21667           DestroyCaret, SetCaretPos and CaretVisible)
21668
21669         * XplatUIX11.cs:
21670           - Added implementation for caret functions
21671           - Moved hover variables into a struct, to make it a bit easier
21672             on the eyes and to debug
21673           - Removed XKeyboardState (moved to XplatUIX11.cs)
21674           - Moved Keyboard properties into the properties region
21675
21676         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
21677           call to get a graphics context for our control
21678
21679         * XplatUIOSX.cs: Added empty overrides for the new caret functions
21680
21681         * TreeView.cs: Fixed bug. No matter what color was set it would always
21682           return SystemColors.Window
21683
21684         * XplatUIWin32.cs: Implemented caret overrides
21685
21686 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
21687
21688         * ListBox.cs: fire events, implement missing methods and properties,
21689         sorting.
21690
21691 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
21692
21693         * MonthCalendar.cs: invalidation bug fixing
21694         * ThemeWin32Classic.cs: paint fixing
21695
21696 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
21697
21698         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
21699         prepare the CGContextRef there now.
21700
21701 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
21702
21703         * MonthCalendar.cs:
21704           - optimisationL only invalidate areas that have changed
21705         * ThemeWin32Classic.cs:
21706           - only paint parts that intersect with clip_area
21707
21708 2004-12-09  Peter Bartok  <pbartok@novell.com>
21709
21710         * Application.cs: Undid changes from r37004 which cause problems
21711         on X11
21712
21713 2004-12-09  Ravindra  <rkumar@novell.com>
21714
21715         * ToolBar.cs: Added support for displaying ContextMenu
21716         attached to a button on ToolBar.
21717         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
21718         property.
21719
21720 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21721
21722         * Label.cs: autosize works in text change and removes unnecessary
21723         invalidate
21724
21725 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
21726
21727         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
21728         remove warnings
21729
21730 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
21731
21732         * XplatUIOSX.cs: Added mouse move/click/grab support
21733         Remove some debugging WriteLines not needed anymore.
21734         Add window resizing/positioning.
21735         Fix visibility on reparenting.
21736
21737 2004-12-08  Peter Bartok  <pbartok@novell.com>
21738
21739         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
21740
21741 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
21742
21743         * XplatUIOSX.cs: Initial checkin
21744         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
21745
21746 2004-12-03  Ravindra <rkumar@novell.com>
21747
21748         * ListView.cs: Added some keybindings and fixed scrolling.
21749         ScrollBars listen to ValueChanged event instead of Scroll
21750         Event. This would let us take care of all changes being
21751         done in the scrollbars' values programmatically or manually.
21752         * ListView.cs (CanMultiselect): Added a check for shift key.
21753         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
21754         * ListViewItem.cs (Clone): Fixed. We need to make a copy
21755         of ListViewSubItemCollection as well.
21756
21757 2004-12-06  Peter Bartok <pbartok@novell.com>
21758
21759         * Control.cs (Parent): Added check and exception to prevent
21760         circular parenting
21761
21762 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
21763
21764         * ListBox.cs: implemented clipping, selection single and multiple,
21765         bug fixing
21766
21767 2004-12-03  Ravindra <rkumar@novell.com>
21768
21769         * ListView.cs (ListView_KeyDown):
21770         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
21771         when CTRL key is pressed.
21772         * ListViewItem.cs (Selected): Fixed setting the property.
21773
21774 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
21775
21776         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
21777
21778         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
21779         MinimizeBox, ShowInTaskbar, TopMost properties.
21780
21781         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
21782         will be implemented).
21783
21784 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
21785
21786         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
21787
21788         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
21789         tests.
21790         
21791         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
21792         
21793         * TreeView.cs: BackColor is Colors.Window.
21794
21795 2004-12-01  Jackson Harper  <jackson@ximian.com>
21796
21797         * TreeView.cs: When resizing the tree if the user is making it
21798         smaller we don't get expose events, so we need to handle adding
21799         the horizontal scrollbar in the size changed handler as well as
21800         the expose handler.
21801
21802 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
21803
21804         * DrawItemState.cs: fixes wrong enum values
21805
21806 2004-12-01  Jackson Harper  <jackson@ximian.com>
21807
21808         * TreeView.cs: Resize the hbar as well as the vbar on resize.
21809
21810 2004-12-01  Jackson Harper  <jackson@ximian.com>
21811
21812         * NodeLabelEditEventArgs.cs:
21813         * NodeLabelEditEventHandler.cs:
21814         * OpenTreeNodeEnumerator.cs:
21815         * TreeNode.cs:
21816         * TreeNodeCollection.cs:
21817         * TreeView.cs:
21818         * TreeViewAction.cs:
21819         * TreeViewCancelEventArgs.cs:
21820         * TreeViewCancelEventHandler.cs:
21821         * TreeViewEventArgs.cs:
21822         * TreeViewEventHandler.cs: Initial implementation.
21823
21824 2004-12-01  Ravindra <rkumar@novell.com>
21825
21826         * ListView.cs (CalculateListView): Fixed scrolling related
21827         calculations. Also, removed some debug statements from other
21828         places.
21829         * ListViewItem.cs: Changed access to 'selected' instance variable
21830         from private to internal.
21831         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
21832
21833 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
21834
21835         * ThemeWin32Classic.cs: remove cache of brush and pens for
21836         specific controls and use the global system, fixes scrollbutton
21837         bugs (for small sizes, disabled, etc)
21838         
21839         * ScrollBar.cs: does not show the thumb for very small controls
21840         (as MS) and allow smaller buttons that the regular size
21841
21842 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
21843
21844         * UpDownBase.cs: Add abstract methods for the interface.
21845         Add new virtual methods (need to be hooked up to TextEntry when it
21846         exists).
21847         Add override methods for most features.
21848         Computes the size, forces the height of the text entry.
21849
21850         * NumericUpDown.cs: Put here the current testing code.
21851
21852         * Set eol-style property on all files that do not have mixed line
21853         endings, to minimize the future problems.  There are still a few
21854         files with mixed endings, and someone should choose whether they
21855         want to move it or not.
21856
21857 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
21858
21859         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
21860         System.Colors
21861         
21862 2004-11-30  Ravindra <rkumar@novell.com>
21863
21864         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
21865         drawing and replaced use of SystemColors by theme colors.
21866         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
21867         * ListView.cs (ListViewItemCollection.Add): Throw exception when
21868         same ListViewItem is being added more than once.
21869
21870 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
21871
21872         * MonthCalendar.cs:
21873           - ControlStyles love to make the control not flicker
21874           
21875 2004-11-30  Peter Bartok  <pbartok@novell.com>
21876
21877         * CharacterCasing.cs: Added
21878
21879 2004-11-29  Peter Bartok  <pbartok@novell.com>
21880
21881         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21882           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
21883           I am removing these files as they conflict with already completed
21884           work. While it is fantastic to get contributions to MWF, I
21885           respectfully ask that everyone please coordinate their contributions
21886           through mono-winforms-list or #mono-winforms at this time. We're
21887           explicitly avoiding stubbing and don't want controls that don't have
21888           their basic functionality implemented in svn. Please also see
21889           http://www.mono-project.com/contributing/winforms.html
21890
21891
21892 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
21893
21894         * Application.cs (ModalRun): Don't hang after exit.
21895
21896         * Theme.cs: New TreeViewDefaultSize property.
21897
21898         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
21899         with less hardcoded SystemColors constant.
21900         Implemented TreeViewDefaultSize.
21901
21902         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21903         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
21904
21905
21906 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
21907
21908         * MonthCalendar.cs:
21909           - Fix NextMonthDate and PrevMonthDate click moving calendar
21910
21911 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21912
21913         * MonthCalendar.cs:
21914           - Fix usage of ScrollChange Property when scrolling months
21915
21916 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
21917
21918         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
21919          - Fixes menu destroying
21920          - Support adding and removing items on already created menus
21921
21922 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21923
21924         * MonthCalendar.cs:
21925           - Re-worked all bolded dates handling to match win32
21926         * ThemeWin32Classic.cs:
21927           - Fixed rendering with bolded dates
21928
21929 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
21930
21931         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
21932         - Horizontal scroolbar
21933         - Multicolumn
21934         - Fixes
21935
21936
21937 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
21938
21939         * MonthCalendar.cs:
21940           - Fix Usage of MaxSelectionCount from SelectionRange
21941           - Fixed Shift + Cursor Selection
21942           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
21943           - Fixed normal cursor selection to be compat with win32
21944           - Fixed Shift + Mouse Click selection
21945
21946 2004-11-24  Peter Bartok <pbartok@novell.com>
21947
21948         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
21949         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
21950         * XplatUIX11.cs:
21951           - CreatedKeyBoardMsg now updates keystate with Alt key
21952           - Added workaround for timer crash to CheckTimers, Jackson will
21953             develop a proper fix and check in later
21954           - Implemented DispatchMessage
21955           - Removed calling the native window proc from GetMessage (call
21956             now moved to DispatchMessage)
21957
21958         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
21959           the keydata (Fixes bug #69831)
21960
21961         * XplatUIWin32.cs:
21962           - (DispatchMessage): Switched to return IntPtr
21963           - Added DllImport for SetFocus
21964
21965 2004-11-24  Ravindra <rkumar@novell.com>
21966
21967         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
21968         background drawing.
21969         * ListViewItem.cs: Fixed various properties, calculations
21970         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
21971         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
21972         and some internal properties. Fixed MouseDown handler and Paint
21973         method.
21974
21975 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21976
21977         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
21978
21979 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21980
21981         * ContainerControl.cs: correct accidental check in of local changes
21982
21983 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21984
21985         * ThemeWin32Classic.cs:
21986                 - Fixed Drawing Last month in grid (sometimes not showing)
21987         * MonthCalendar.cs:
21988                 - Fixed title width calculation bug (makeing title small)
21989
21990 2004-11-23  Peter Bartok <pbartok@novell.com>
21991
21992         * XplatUIX11.cs:
21993           - Added generation of WM_MOUSEHOVER event
21994           - Added missing assignment of async_method atom
21995           - Fixed WM_ERASEBKGND; now only redraws the exposed area
21996
21997 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
21998
21999         * ThemeWin32Classic.cs:
22000                 - Fixed Drawing of today circle when showtodaycircle not set
22001                 - fixed drawing of first and last month in the grid (gay dates)
22002         * MonthCalendar.cs:
22003                 - Fixed Drawing of today circle
22004                 - Fixed drawing of grady dates
22005                 - Fixed HitTest for today link when ShowToday set to false
22006                 - Fixed DefaultSize to obey ShowToday
22007
22008 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
22009
22010         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
22011         * System.Windows.Forms/Theme.cs
22012         * MonthCalendar.cs: added for MonthCalendar
22013         * SelectionRange.cs: added for MonthCalendar
22014         * Day.cs: added for MonthCalendar: added for MonthCalendar
22015         * DateRangeEventArgs.cs: added for MonthCalendar
22016         * DateRangeEventHandler.cs: added for MonthCalendar
22017
22018 2004-11-22  Ravindra <rkumar@novell.com>
22019
22020         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
22021         property.
22022
22023 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
22024
22025         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
22026         event handler.
22027         
22028         * NumericUpDown.cs: Added new implementation.
22029         * UpDownBase.cs: Added new implementation.
22030
22031         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
22032         implementations.
22033         
22034         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
22035         implementations.
22036
22037         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
22038         methods.
22039
22040 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
22041
22042         * Timer.cs  (Dispose): Should call the base dispose when
22043         overriding.
22044
22045 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22046
22047         * ScrollBar.cs: updates thumb position when max, min or increment
22048         is changed
22049
22050 2004-11-21  Ravindra <rkumar@novell.com>
22051
22052         * ListView.cs: Implemented item selection, activation and
22053         column header style. Fixed properties to do a redraw, if
22054         required. Added support for MouseHover, DoubleClick, KeyDown
22055         and KeyUp event handling and some minor fixes.
22056         * ListViewItem.cs: Fixed constructor.
22057         * ThemeWin32Classic.cs: Improved drawing for ListView.
22058
22059 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
22060
22061         * ThemeWin32Classic.cs: initial listbox drawing code
22062         * DrawMode.cs: new enumerator
22063         * ListControl.cs: stubbed class
22064         * ListBox.cs: initial implementation
22065         * Theme.cs: new methods definitions
22066         * SelectionMode.cs: new enumerator
22067
22068 2004-11-17  Peter Bartok  <pbartok@novell.com>
22069
22070         * XplatUIWin32.cs: Added double-click events to the class style
22071         * Control.cs (WndProc):
22072           - Added handling of click-count to MouseDown/ MouseUp events.
22073           - Added handling of middle and right mouse buttons
22074           - Removed old debug code
22075
22076 2004-11-17  Jackson Harper  <jackson@ximian.com>
22077
22078         * XplatUIX11.cs: Use the new Mono.Unix namespace.
22079
22080 2004-11-17  Ravindra <rkumar@novell.com>
22081
22082         * ListView.cs: Added event handling for MouseMove/Up/Down.
22083         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
22084         * ThemeWin32Classic.cs: We need to clear the graphics context and
22085         draw column header in a proper state.
22086
22087
22088 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
22089
22090         *  Menu.cs: fixes signature
22091
22092 2004-11-16  Peter Bartok  <pbartok@novell.com>
22093
22094         * XplatUIX11.cs (GetMessage): Implemented generation of
22095           double click mouse messages
22096
22097 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
22098
22099         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
22100         not by menu
22101
22102 2004-11-11  Peter Bartok  <pbartok@novell.com>
22103
22104         * HandleData.cs: Added Visible property
22105         * XplatUIX11.cs (IsVisible): Now uses Visible property from
22106           HandleData
22107         * XplatUIX11.cs: Removed old debug leftovers
22108         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
22109         * Control.cs (WndProc): Removed old debug leftovers,
22110           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
22111           needed WM_SIZE handling
22112
22113 2004-11-11  Jackson Harper  <jackson@ximian.com>
22114
22115         * OwnerDrawPropertyBag.cs:
22116         * TreeViewImageIndexConverter.cs: Initial implementation
22117
22118 2004-11-10  Jackson Harper  <jackson@ximian.com>
22119
22120         * ThemeWin32Classic.cs:
22121         * TabControl.cs: instead of moving tabs by the slider pos just
22122         start drawing at the tab that is offset by the slider. This way
22123         scrolling always moves by exactly one tab.
22124
22125 2004-11-10  Jackson Harper  <jackson@ximian.com>
22126
22127         * TabControl.cs: You can only scroll left when the slider has
22128         already ben moved right.
22129         
22130 2004-11-10  Jackson Harper  <jackson@ximian.com>
22131
22132         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
22133         the clip area.
22134         
22135 2004-11-10  Jackson Harper  <jackson@ximian.com>
22136
22137         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
22138         clip area.
22139         
22140 2004-11-09  Jackson Harper  <jackson@ximian.com>
22141
22142         * TabControl.cs (CalcXPos): New helper method so we can determine
22143         the proper place to start drawing vertical tabs.
22144         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
22145         
22146 2004-11-09  Jackson Harper  <jackson@ximian.com>
22147
22148         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
22149         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
22150         and Bottom, left and right are illegal values for this and
22151         multiline is enabled when the alignment is set to left or right.
22152         (DrawTab): Each alignment block should draw the text itself now
22153         because Left requires special love. Also add rendering for Left
22154         aligned tabs.
22155         
22156 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
22157
22158         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
22159         does not destroy the windows, removes debugging messages
22160
22161 2004-11-09  jba  <jba-mono@optusnet.com.au>
22162
22163         * ThemeWin32Classic.cs
22164         (DrawButtonBase): Fix verticle text rect clipping in windows
22165         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22166         rendering and incorrect text rect clipping
22167         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
22168         rendering and incorrect text rect clipping
22169         
22170 2004-11-08  Jackson Harper  <jackson@ximian.com>
22171
22172         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
22173         bottom when they are bottom aligned so the bottoms of the tabs get
22174         displayed.
22175         * TabControl.cs (DropRow): Move rows up instead of down when the
22176         tab control is bottom aligned.
22177
22178 2004-11-08 13:59  pbartok
22179
22180         * XplatUIX11.cs:
22181           - Added handling for various window styles
22182           - Added handling for popup windows
22183           - Added SetTopmost handling
22184
22185 2004-11-08 13:55  pbartok
22186
22187         * XplatUIWin32.cs:
22188           - Added argument to SetTopmost method
22189           - Fixed broken ClientToScreen function
22190
22191 2004-11-08 13:53  pbartok
22192
22193         * XplatUIStructs.cs:
22194           - Added missing WS_EX styles
22195
22196 2004-11-08 13:53  pbartok
22197
22198         * XplatUI.cs, XplatUIDriver.cs:
22199           - Added argument to SetTopmost
22200
22201 2004-11-08 13:52  pbartok
22202
22203         * X11Structs.cs:
22204           - Added XSetWindowAttributes structure
22205           - Improved XWindowAttributes structure
22206           - Added SetWindowValuemask enum
22207           - Added window creation arguments enum
22208           - Added gravity enum
22209           - Added Motif hints structure
22210           - Added various Motif flags and enums
22211           - Added PropertyMode enum for property functions
22212
22213 2004-11-08 13:50  pbartok
22214
22215         * Form.cs:
22216           - Fixed arguments for updated SetTopmost method
22217
22218 2004-11-08 13:49  pbartok
22219
22220         * ToolTip.cs:
22221           - Fixed arguments for updated SetTopmost function
22222           - Fixed usage of PointToClient
22223
22224 2004-11-08 13:44  pbartok
22225
22226         * MenuAPI.cs:
22227           - Added Clipping of children and siblings
22228
22229 2004-11-08 13:41  pbartok
22230
22231         * MainMenu.cs:
22232           - Removed SetMenuBarWindow call. We do this in Form.cs
22233
22234 2004-11-08 13:40  jackson
22235
22236         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
22237           scrolling jimmi in the correct location with bottom aligned tabs
22238
22239 2004-11-08 13:36  pbartok
22240
22241         * ContainerControl.cs:
22242           - Implemented BindingContext
22243           - Implemented ParentForm
22244
22245 2004-11-08 12:46  jackson
22246
22247         * TabControl.cs: Put bottom rendered tabs in the right location
22248
22249 2004-11-08 07:15  jordi
22250
22251         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
22252           removes dead code
22253
22254 2004-11-05 17:30  jackson
22255
22256         * TabControl.cs: When selected tabs are expanded make sure they
22257           don't go beyond the edges of the tab control
22258
22259 2004-11-05 14:57  jackson
22260
22261         * TabControl.cs: Reset show_slider so if the control is resized to
22262           a size where it is no longer needed it's not displayed anymore
22263
22264 2004-11-05 13:16  jackson
22265
22266         * TabControl.cs: Make tab pages non visible when added to the
22267           control
22268
22269 2004-11-05 12:42  jackson
22270
22271         * TabControl.cs: Implement SizeMode.FillToRight
22272
22273 2004-11-05 12:16  jackson
22274
22275         * Control.cs: Do not call CreateHandle if the handle is already
22276           created
22277
22278 2004-11-05 11:46  jackson
22279
22280         * TabControl.cs: Remove superflous call to CalcTabRows
22281
22282 2004-11-05 09:07  jackson
22283
22284         * XplatUIX11.cs: Update for Mono.Posix changes
22285
22286 2004-11-05 07:00  ravindra
22287
22288         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
22289           scrolling.
22290
22291 2004-11-04 22:47  jba
22292
22293         * ThemeWin32Classic.cs:
22294           - Fix Button rendering for FlatStyle = Flat or Popup
22295           - Fix RadioButton and CheckBox rendering when Appearance = Button
22296             (normal and flatstyle).
22297           - Correct outer rectangle color when drawing focus rectangle
22298           - Adjust button bounds to be 1 px smaller when focused
22299           - Make button not draw sunken 3d border when pushed (windows compat)
22300           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
22301           - Offset the text in RadioButton and Checkbox when being rendered as
22302           a button.
22303           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
22304           radiobuttons
22305           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
22306           - Fixed disabled text rendering for normally rendered radiobuttons
22307
22308 2004-11-04 10:26  jackson
22309
22310         * TabControl.cs: Recalculate tab rows when resizing
22311
22312 2004-11-04 07:47  jordi
22313
22314         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
22315           collection completion, drawing issues, missing features
22316
22317 2004-11-04 05:03  ravindra
22318
22319         * ScrollBar.cs:
22320                 - We need to recalculate the Thumb area when
22321                 LargeChange/maximum/minimum values are changed.
22322           - We set the 'pos' in UpdatePos() method to minimum, if it's less
22323                 than minimum. This is required to handle the case if large_change is
22324                 more than max, and use LargeChange property instead of large_change
22325                 variable.
22326           - We return max+1 when large_change is more than max, like MS does.
22327
22328 2004-11-04 04:29  ravindra
22329
22330         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
22331                 - Changed default value signatures (prefixed all with ListView).
22332                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
22333                 ListView.
22334           - Fixed calculations for ListViewItem and implemented Clone()
22335           method.
22336
22337 2004-11-04 04:26  ravindra
22338
22339         * Theme.cs, ThemeWin32Classic.cs:
22340                 - Changed default ListView values signatures (prefixed all with
22341                 ListView).
22342           - Fixed default size values for VScrollBar and HScrollBar.
22343                 - Fixed DrawListViewItem method.
22344
22345 2004-11-04 04:05  ravindra
22346
22347         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
22348
22349 2004-11-04 04:04  ravindra
22350
22351         * ImageList.cs: Implemented the missing overload for Draw method.
22352
22353 2004-11-03 19:29  jackson
22354
22355         * TabControl.cs: Handle dropping rows on selection properly
22356
22357 2004-11-03 11:59  jackson
22358
22359         * TabControl.cs: remove debug code
22360
22361 2004-11-03 11:52  jackson
22362
22363         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
22364           the scrolly widgerywoo
22365
22366 2004-11-02 13:52  jackson
22367
22368         * TabControl.cs: Resize the tab pages and tabs when the tab control
22369           is resized
22370
22371 2004-11-02 13:40  jackson
22372
22373         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
22374           selected tab to the bottom
22375
22376 2004-11-02 13:39  jackson
22377
22378         * TabPage.cs: Store the tab pages row
22379
22380 2004-11-02 12:33  jordi
22381
22382         * MenuItem.cs: fixes handle creation
22383
22384 2004-11-02 11:42  jackson
22385
22386         * TabControl.cs: signature fix
22387
22388 2004-11-02 08:56  jackson
22389
22390         * TabControl.cs: Calculate whether the tab is on an edge properly.
22391           Remove top secret debugging code
22392
22393 2004-11-01 19:57  jackson
22394
22395         * TabControl.cs: Add click handling, and proper sizing
22396
22397 2004-11-01 19:47  jackson
22398
22399         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
22400           tab controls
22401
22402 2004-11-01 19:39  jackson
22403
22404         * TabPage.cs: add internal property to store the bounds of a tab
22405           page
22406
22407 2004-10-30 04:23  ravindra
22408
22409         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
22410           values.
22411
22412 2004-10-30 04:21  ravindra
22413
22414         * ListView.cs, ListViewItem.cs: Added support for scrolling and
22415           fixed calculations.
22416
22417 2004-10-30 03:06  pbartok
22418
22419         * XplatUIX11.cs:
22420           - Removed extension of DllImported libs
22421
22422 2004-10-29 09:55  jordi
22423
22424         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
22425           navigation, itemcollection completion, menu fixes
22426
22427 2004-10-27 22:58  pbartok
22428
22429         * XplatUIX11.cs:
22430           - Now throws a nice error message when no X display could be opened
22431
22432 2004-10-26 13:51  jordi
22433
22434         * ListView.cs: removes warning
22435
22436 2004-10-26 03:55  ravindra
22437
22438         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
22439           ThemeWin32Classic.cs: Some formatting for my last checkins.
22440
22441 2004-10-26 03:36  ravindra
22442
22443         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
22444           control and default values.
22445
22446 2004-10-26 03:35  ravindra
22447
22448         * Theme.cs: Added some default values for ListView control.
22449
22450 2004-10-26 03:33  ravindra
22451
22452         * ToolBar.cs: ToolBar should use the user specified button size, if
22453           there is any. Added a size_specified flag for the same.
22454
22455 2004-10-26 03:33  ravindra
22456
22457         * ColumnHeader.cs: Added some internal members and calculations for
22458           ColumnHeader.
22459
22460 2004-10-26 03:32  ravindra
22461
22462         * ListViewItem.cs: Calculations for ListViewItem.
22463
22464 2004-10-26 03:31  ravindra
22465
22466         * ListView.cs: Added some internal members and calculations for
22467           ListView.
22468
22469 2004-10-22 13:31  jordi
22470
22471         * MenuAPI.cs: speedup menus drawing
22472
22473 2004-10-22 13:16  jackson
22474
22475         * XplatUIX11.cs: Make sure to update exposed regions when adding an
22476           expose event
22477
22478 2004-10-22 11:49  jackson
22479
22480         * Control.cs: oops
22481
22482 2004-10-22 11:41  jackson
22483
22484         * Control.cs: Check to see if the window should have its background
22485           repainted by X when drawing.
22486
22487 2004-10-22 11:31  jackson
22488
22489         * XplatUIX11.cs: When invalidating areas only use XClearArea if
22490           clear is true, this way we do not get flicker from X repainting the
22491           background
22492
22493 2004-10-22 11:28  jackson
22494
22495         * XEventQueue.cs: Queue properly
22496
22497 2004-10-21 09:38  jackson
22498
22499         * XEventQueue.cs: Fix access modifier
22500
22501 2004-10-21 09:36  jackson
22502
22503         * XEventQueue.cs: Don't loose messages
22504
22505 2004-10-21 09:22  jackson
22506
22507         * XEventQueue.cs: Don't loose messages
22508
22509 2004-10-20 04:15  jordi
22510
22511         * BootMode.cs: enum need it by SystemInfo
22512
22513 2004-10-19 21:58  pbartok
22514
22515         * XplatUIWin32.cs:
22516           - Small sanity check
22517
22518 2004-10-19 21:56  pbartok
22519
22520         * Form.cs:
22521           - Added private FormParentWindow class which acts as the container
22522             for our form and as the non-client area where menus are drawn
22523           - Added/Moved required tie-ins to Jordi's menus
22524           - Fixed/Implemented the FormStartPosition functionality
22525
22526 2004-10-19 21:52  pbartok
22527
22528         * Control.cs:
22529           - Removed unneeded locals
22530           - Added code to all size and location properties to understand and
22531             deal with the parent container of Form
22532
22533 2004-10-19 21:33  pbartok
22534
22535         * Application.cs:
22536           - Fixed to deal with new Form subclasses for menus
22537
22538 2004-10-19 17:48  jackson
22539
22540         * XEventQueue.cs: commit correct version of file
22541
22542 2004-10-19 16:50  jackson
22543
22544         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
22545
22546 2004-10-19 16:15  jordi
22547
22548         * MenuAPI.cs: MenuBarCalcSize returns the height
22549
22550 2004-10-19 08:31  pbartok
22551
22552         * Control.cs:
22553           - Added missing call to PreProcessMessage before calling OnXXXKey
22554           methods
22555
22556 2004-10-19 00:04  ravindra
22557
22558         * ToolTip.cs: Fixed constructor.
22559
22560 2004-10-18 09:31  jordi
22561
22562         * MenuAPI.cs: menuitems in menubars do not have shortcuts
22563
22564 2004-10-18 09:26  jordi
22565
22566         * MenuItem.cs: fixes MenuItem class signature
22567
22568 2004-10-18 08:56  jordi
22569
22570         * MenuAPI.cs: prevents windows from showing in the taskbar
22571
22572 2004-10-18 00:28  ravindra
22573
22574         * ToolTip.cs: Suppressed a warning message.
22575
22576 2004-10-18 00:27  ravindra
22577
22578         * Control.cs: Default value of visible property must be true.
22579
22580 2004-10-17 23:19  pbartok
22581
22582         * ToolTip.cs:
22583           - Complete implementation
22584
22585 2004-10-17 23:19  pbartok
22586
22587         * XplatUIX11.cs:
22588           - Added EnableWindow method
22589           - Added SetModal stub
22590           - Added generation of WM_ACTIVATE message (still needs testing)
22591           - Added SetTopMost stub
22592           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
22593
22594 2004-10-17 23:17  pbartok
22595
22596         * XplatUIWin32.cs:
22597           - Removed VirtualKeys to XplatUIStructs
22598           - Implemented SetTopMost method
22599           - Implemented EnableWindow method
22600           - Bugfix in ScreenToClient()
22601           - Bugfixes in ClientToScreen()
22602
22603 2004-10-17 22:51  pbartok
22604
22605         * XplatUIStructs.cs:
22606           - Added WS_EX styles to WindowStyles enumeration
22607
22608 2004-10-17 22:50  pbartok
22609
22610         * XplatUI.cs, XplatUIDriver.cs:
22611           - Added method for enabling/disabling windows
22612           - Added method for setting window modality
22613           - Added method for setting topmost window
22614
22615 2004-10-17 22:49  pbartok
22616
22617         * ThemeWin32Classic.cs:
22618           - Added ToolTip drawing code
22619
22620 2004-10-17 22:49  pbartok
22621
22622         * Theme.cs:
22623           - Added ToolTip abstracts
22624
22625 2004-10-17 22:47  pbartok
22626
22627         * Form.cs:
22628           - Fixed Form.ControlCollection to handle owner relations
22629           - Added Owner/OwnedForms handling
22630           - Implemented Z-Ordering for owned forms
22631           - Removed unneeded private overload of ShowDialog
22632           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
22633             so I hope)
22634           - Fixed Close(), had wrong default
22635           - Added firing of OnLoad event
22636           - Added some commented out debug code for Ownership handling
22637
22638 2004-10-17 22:16  pbartok
22639
22640         * Control.cs:
22641           - Fixed/implemented flat list of controls
22642
22643 2004-10-17 22:14  pbartok
22644
22645         * Application.cs:
22646           - Added code to simulate modal dialogs on Win32
22647
22648 2004-10-17 16:11  jordi
22649
22650         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
22651           mouse event
22652
22653 2004-10-17 13:39  jordi
22654
22655         * MenuAPI.cs: menu drawing fixes
22656
22657 2004-10-15 09:10  ravindra
22658
22659         * StructFormat.cs: General Enum.
22660
22661 2004-10-15 09:09  ravindra
22662
22663         * SizeGripStyle.cs: Enum for Form.
22664
22665 2004-10-15 09:08  ravindra
22666
22667         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
22668           in Theme for ListView.
22669
22670 2004-10-15 09:06  ravindra
22671
22672         * ColumnHeader.cs: Flushing some formatting changes.
22673
22674 2004-10-15 09:05  ravindra
22675
22676         * ListViewItem.cs: Implemented GetBounds method and fixed coding
22677           style.
22678
22679 2004-10-15 09:03  ravindra
22680
22681         * ListView.cs: Implemented Paint method and fixed coding style.
22682
22683 2004-10-15 07:34  jordi
22684
22685         * MenuAPI.cs: fix for X11
22686
22687 2004-10-15 07:32  ravindra
22688
22689         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
22690                 - Renamed Paint() method to Draw() for clarity. Also, moved
22691                 DrawImage() to OnPaint().
22692
22693 2004-10-15 07:25  ravindra
22694
22695         * CheckBox.cs, RadioButton.cs:
22696                 - Removed Redraw (), we get it from ButtonBase.
22697                 - Implemented Paint (), to do class specific painting.
22698
22699 2004-10-15 07:16  ravindra
22700
22701         * ButtonBase.cs:
22702                 - Redraw () is not virtual now.
22703                 - Added an internal virtual method Paint (), so that
22704                 derived classes can do their painting on their own.
22705                 - Modified OnPaint () to call Paint ().
22706
22707 2004-10-15 06:43  jordi
22708
22709         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
22710           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
22711
22712 2004-10-15 00:30  ravindra
22713
22714         * MessageBox.cs:
22715                 - MessageBox on windows does not have min/max buttons.
22716                 This change in CreateParams fixes this on Windows. We
22717                 still need to implement this windowstyle behavior in
22718                 our X11 driver.
22719
22720 2004-10-14 05:14  ravindra
22721
22722         * ToolBar.cs:
22723                 - Changed Redraw () to do a Refresh () always.
22724                 - Fixed the MouseMove event handling when mouse is pressed,
22725                 ie drag event handling.
22726                 - Replaced the usage of ToolBarButton.Pressed property to
22727                 ToolBarButton.pressed internal variable.
22728
22729 2004-10-14 05:10  ravindra
22730
22731         * ToolBarButton.cs:
22732                 - Added an internal member 'inside' to handle mouse move
22733                 with mouse pressed ie mouse drag event.
22734                 - Changed 'Pressed' property to return true only when
22735                 'inside' and 'pressed' are both true.
22736                 - Some coding style love.
22737
22738 2004-10-14 00:17  ravindra
22739
22740         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
22741           public method.
22742
22743 2004-10-14 00:15  ravindra
22744
22745         * ButtonBase.cs: Redraw () related improvements.
22746
22747 2004-10-14 00:14  ravindra
22748
22749         * MessageBox.cs: Moved InitFormSize () out of Paint method and
22750           removed unnecessary calls to Button.Show () method.
22751
22752 2004-10-13 17:50  pbartok
22753
22754         * XplatUIX11.cs:
22755           - Formatting fix
22756           - Removed destroying of window until we solve the problem of X
22757             destroying the window before us on shutdown
22758
22759 2004-10-13 16:32  pbartok
22760
22761         * ButtonBase.cs:
22762           - Now Redraws on MouseUp for FlatStyle Flat and Popup
22763
22764 2004-10-13 14:18  pbartok
22765
22766         * XplatUIX11.cs:
22767           - Added code to destroy the X window
22768
22769 2004-10-13 14:18  pbartok
22770
22771         * XplatUIWin32.cs:
22772           - Added code to destroy a window
22773
22774 2004-10-13 14:12  pbartok
22775
22776         * ButtonBase.cs:
22777           - Added the Redraw on Resize that got dropped in the last rev
22778
22779 2004-10-13 09:06  pbartok
22780
22781         * ThemeWin32Classic.cs:
22782           - Path from John BouAntoun:
22783             * Fix check rendering (centre correctly for normal style, offset
22784               correctly for FlatStyle).
22785             * Fix border color usage (use backcolor) for FlatStyle.Popup
22786             * Use checkbox.Capture instead of checkbox.is_pressed when
22787               rendering flatstyle states.
22788
22789 2004-10-12 21:48  pbartok
22790
22791         * ThemeWin32Classic.cs:
22792           - Removed all occurences of SystemColors and replaced them with the
22793             matching theme color
22794
22795 2004-10-12 21:41  pbartok
22796
22797         * ThemeWin32Classic.cs:
22798           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
22799             him using the function for flatstyle drawing
22800           - Changed functions to use the new version of CPDrawBorder3D
22801
22802 2004-10-12 21:15  pbartok
22803
22804         * ControlPaint.cs:
22805           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
22806             match MS documentation. They need to return defined colors if the
22807             passed color matches the configured control color. Thanks to John
22808             BouAntoun for pointing this out.
22809
22810 2004-10-12 20:57  pbartok
22811
22812         * Control.cs:
22813           - Fix from John BouAntoun: Raise ForeColorChanged event when text
22814             color is changed
22815
22816 2004-10-12 20:46  pbartok
22817
22818         * CheckBox.cs:
22819           - Fix from John BouAntoun: Now properly sets the Appearance property
22820
22821 2004-10-12 20:45  pbartok
22822
22823         * ThemeWin32Classic.cs:
22824           - Fixes from John BouAntoun: now handles forecolors and backcolors
22825             for flatstyle rendered controls much better; It also fixes normal
22826             checkbox rendering when pushed or disabled.
22827
22828 2004-10-08 02:50  jordi
22829
22830         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
22831           work
22832
22833 2004-10-07 08:56  jordi
22834
22835         * ThemeWin32Classic.cs: Removes deletion of cached brushes
22836
22837 2004-10-06 03:59  jordi
22838
22839         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
22840           XplatUIWin32.cs: removes warnings from compilation
22841
22842 2004-10-05 12:23  jackson
22843
22844         * RadioButton.cs: Fix ctor
22845
22846 2004-10-05 11:10  pbartok
22847
22848         * MessageBox.cs:
22849           - Partial implementation by Benjamin Dasnois
22850
22851 2004-10-05 10:15  jackson
22852
22853         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
22854           by John BouAntoun
22855
22856 2004-10-05 03:07  ravindra
22857
22858         * ToolBar.cs:
22859                 - Removed a private method, Draw ().
22860                 - Fixed the ButtonDropDown event handling.
22861                 - Fixed MouseMove event handling.
22862
22863 2004-10-05 03:04  ravindra
22864
22865         * ThemeWin32Classic.cs:
22866                 - Added DrawListView method and ListViewDefaultSize property.
22867                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
22868                 - Changed DOS style CRLF to Unix format (dos2unix).
22869
22870 2004-10-05 03:03  ravindra
22871
22872         * Theme.cs:
22873                 - Added DrawListView method and ListViewDefaultSize property.
22874
22875 2004-10-05 02:42  ravindra
22876
22877         * ToolBarButton.cs: Added an internal member dd_pressed to handle
22878           clicks on DropDown arrow.
22879
22880 2004-10-04 22:56  jackson
22881
22882         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
22883           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
22884           Control handle the buffers, derived classes should not have to
22885           CreateBuffers themselves.
22886
22887 2004-10-04 21:20  jackson
22888
22889         * StatusBar.cs: The control handles resizing the buffers now.
22890
22891 2004-10-04 21:18  jackson
22892
22893         * Control.cs: When resizing the buffers should be invalidated. This
22894           should be handled in Control not in derived classes.
22895
22896 2004-10-04 14:45  jackson
22897
22898         * TabPage.cs: oops
22899
22900 2004-10-04 02:14  pbartok
22901
22902         * LeftRightAlignment.cs:
22903           - Initial check-in
22904
22905 2004-10-04 01:09  jordi
22906
22907         * ThemeWin32Classic.cs: fixes right button position causing right
22908           button not showing on horizontal scrollbars
22909
22910 2004-10-02 13:12  pbartok
22911
22912         * XplatUIX11.cs:
22913           - Simplified the Invalidate method by using an X call instead of
22914             generating the expose ourselves
22915           - Added an expose when the window background is changed
22916           - Implemented ClientToScreen method
22917
22918 2004-10-02 13:08  pbartok
22919
22920         * XplatUIWin32.cs:
22921           - Added Win32EnableWindow method (test for implementing modal
22922           dialogs)
22923           - Added ClientToScreen method and imports
22924
22925 2004-10-02 13:07  pbartok
22926
22927         * XplatUI.cs, XplatUIDriver.cs:
22928           - Added ClientToScreen coordinate translation method
22929
22930 2004-10-02 13:06  pbartok
22931
22932         * KeyPressEventArgs.cs:
22933           - Fixed access level for constructor
22934
22935 2004-10-02 13:06  pbartok
22936
22937         * NativeWindow.cs:
22938           - Changed access level for the window_collection hash table
22939
22940 2004-10-02 13:05  pbartok
22941
22942         * Form.cs:
22943           - Added KeyPreview property
22944           - Added Menu property (still incomplete, pending Jordi's menu work)
22945           - Implemented ProcessCmdKey
22946           - Implemented ProcessDialogKey
22947           - Implemented ProcessKeyPreview
22948
22949 2004-10-02 13:02  pbartok
22950
22951         * Control.cs:
22952           - Added private method to get the Control object from the window
22953           handle
22954           - Implemented ContextMenu property
22955           - Implemented PointToScreen
22956           - Implemented PreProcessMessage
22957           - Implemented IsInputChar
22958           - Implemented IsInputKey
22959           - Implemented ProcessCmdKey
22960           - Completed ProcessKeyEventArgs
22961           - Fixed message loop to call the proper chain of functions on key
22962           events
22963           - Implemented ProcessDialogChar
22964           - Implemented ProcessDialogKey
22965           - Implemented ProcessKeyMessage
22966           - Implemented ProcessKeyPreview
22967           - Added RaiseDragEvent stub (MS internal method)
22968           - Added RaiseKeyEvent stub (MS internal method)
22969           - Added RaiseMouseEvent stub (MS Internal method)
22970           - Added RaisePaintEvent stub (MS Internal method)
22971           - Added ResetMouseEventArgs stub (MS Internal method)
22972           - Implemented RtlTranslateAlignment
22973           - Implemented RtlTranslateContent
22974           - Implemented RtlTranslateHorizontal
22975           - Implemented RtlTranslateLeftRight
22976           - Added generation of KeyPress event
22977
22978 2004-10-02 05:57  ravindra
22979
22980         * ListViewItem.cs: Added attributes.
22981
22982 2004-10-02 05:32  ravindra
22983
22984         * ListView.cs: Added attributes.
22985
22986 2004-10-01 11:53  jackson
22987
22988         * Form.cs: Implement the Close method so work on MessageBox can
22989           continue.
22990
22991 2004-09-30 14:06  pbartok
22992
22993         * XplatUIX11.cs:
22994           - Bug fixes
22995
22996 2004-09-30 11:34  jackson
22997
22998         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
22999
23000 2004-09-30 07:26  ravindra
23001
23002         * ListViewItemConverter.cs: Converter for ListViewItem.
23003
23004 2004-09-30 07:26  ravindra
23005
23006         * SortOrder.cs: Enum for ListView control.
23007
23008 2004-09-30 07:25  ravindra
23009
23010         * ColumnHeader.cs: Supporting class for ListView control.
23011
23012 2004-09-30 07:24  ravindra
23013
23014         * ListView.cs, ListViewItem.cs: Initial implementation.
23015
23016 2004-09-30 07:20  ravindra
23017
23018         * ItemActivation.cs: Enum for ListView Control.
23019
23020 2004-09-29 20:29  pbartok
23021
23022         * XplatUIX11.cs:
23023           - Added lookup of pixel value for background color; tries to get a
23024             color 'close' to the requested color, it avoids having to create a
23025             colormap.  Depending on the display this could mean the used color
23026             is slightly off the desired color. Might have to change it to a more
23027             resource intensive colormap approach, but it will work as a
23028           workaround to avoid red screens.
23029
23030 2004-09-29 14:27  jackson
23031
23032         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
23033
23034 2004-09-28 12:44  pbartok
23035
23036         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
23037           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
23038           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
23039           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
23040           TrackBar.cs, VScrollBar.cs:
23041           - Streamlined Theme interfaces:
23042             * Each DrawXXX method for a control now is passed the object for
23043               the control to be drawn in order to allow accessing any state the
23044               theme might require
23045
23046             * ControlPaint methods for the theme now have a CP prefix to avoid
23047               name clashes with the Draw methods for controls
23048
23049             * Every control now retrieves it's DefaultSize from the current
23050             theme
23051
23052 2004-09-28 12:17  jackson
23053
23054         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
23055           drawing
23056
23057 2004-09-24 14:57  jackson
23058
23059         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
23060           Gives us a nice little performance boost.
23061
23062 2004-09-24 12:02  jackson
23063
23064         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
23065           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
23066           Control and supporting classes. Initial checkin
23067
23068 2004-09-23 13:08  jackson
23069
23070         * Form.cs: Temp build fixage
23071
23072 2004-09-23 01:39  ravindra
23073
23074         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
23075           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
23076           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
23077           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
23078           EventHandlers needed by ListView Control.
23079
23080 2004-09-22 14:12  pbartok
23081
23082         * ScrollableControl.cs:
23083           - Implemented DockPadding property
23084           - Implemented AutoScroll property
23085           - Implemented AutoScrollMargin property
23086           - Implemented AutoScrollMinSize property
23087           - Implemented AutoScrollPosition property
23088           - Implemented DisplayRectangle property (still incomplete)
23089           - Implemented CreateParams property
23090           - Implemented HScroll property
23091           - Implemented VScroll property
23092           - Implemented OnVisibleChanged property
23093
23094 2004-09-22 14:09  pbartok
23095
23096         * Form.cs:
23097           - Added Form.ControllCollection class
23098           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
23099             RemoveOwnedForm (still incomplete, missing on-top and common
23100             minimize/maximize behaviour)
23101           - Added StartPosition property (still incomplete, does not use when
23102             creating the form)
23103           - Added ShowDialog() methods (still incomplete, missing forcing the
23104             dialog modal)
23105
23106 2004-09-22 14:05  pbartok
23107
23108         * Application.cs:
23109           - Added message loop for modal dialogs
23110
23111 2004-09-22 14:02  pbartok
23112
23113         * GroupBox.cs:
23114           - Fixed wrong types for events
23115
23116 2004-09-22 14:00  pbartok
23117
23118         * Shortcut.cs, FormWindowState.cs:
23119           - Fixed wrong values
23120
23121 2004-09-22 12:01  jackson
23122
23123         * Control.cs: Text is never null
23124
23125 2004-09-20 22:14  pbartok
23126
23127         * XplatUIWin32.cs:
23128           - Fixed accessibility level for Idle handler
23129
23130 2004-09-20 18:54  jackson
23131
23132         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23133           XplatUIX11.cs: New message loop that uses poll so we don't get a
23134           busy loop
23135
23136 2004-09-17 10:43  pbartok
23137
23138         * ScrollBar.cs:
23139           - Fixed behaviour of arrow buttons. Now properly behaves like
23140             Buttons (and like Microsoft's scrollbar arrow buttons)
23141
23142 2004-09-17 10:14  pbartok
23143
23144         * ScrollBar.cs:
23145           - Added missing release of keyboard/mouse capture
23146
23147 2004-09-17 06:18  jordi
23148
23149         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
23150           Theme.cs: Very early menu support
23151
23152 2004-09-16 17:45  pbartok
23153
23154         * XplatUIWin32.cs:
23155           - Fixed sending a window to the front
23156           - Added overload for SetWindowPos to avoid casting
23157
23158 2004-09-16 17:44  pbartok
23159
23160         * Control.cs:
23161           - Added SendToBack and BringToFront methods
23162
23163 2004-09-16 07:00  ravindra
23164
23165         * Copyright: Added Novell URL.
23166
23167 2004-09-16 07:00  ravindra
23168
23169         * ToolBar.cs: Invalidate should be done before redrawing.
23170
23171 2004-09-15 21:19  ravindra
23172
23173         * ColumnHeaderStyle.cs: Enum for ListView Control.
23174
23175 2004-09-15 21:18  ravindra
23176
23177         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
23178           ListView Control.
23179
23180 2004-09-13 18:26  jackson
23181
23182         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
23183           properly
23184
23185 2004-09-13 18:13  jackson
23186
23187         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
23188           a second thread and post messages into the main threads message
23189           queue. This makes timing much more consistent. Both win2K and XP
23190           have a minimum timer value of 15 milliseconds, so we now do this
23191           too.
23192
23193 2004-09-13 15:18  pbartok
23194
23195         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23196           XplatUIX11.cs:
23197           - Added Z-Ordering methods
23198
23199 2004-09-13 10:56  pbartok
23200
23201         * Form.cs:
23202           - Fixed #region names
23203           - Moved properties and methods into their proper #regions
23204
23205 2004-09-13 10:51  pbartok
23206
23207         * Form.cs:
23208           - Added Accept and CancelButton properties
23209           - Added ProcessDialogKey() method
23210
23211 2004-09-13 08:18  pbartok
23212
23213         * IWindowTarget.cs:
23214           - Initial check-in
23215
23216 2004-09-10 21:50  pbartok
23217
23218         * Control.cs:
23219           - Added DoDragDrop() [incomplete]
23220           - Properly implemented 'Visible' handling
23221           - Added SetVisibleCore()
23222           - Implemented FindChildAtPoint()
23223           - Implemented GetContainerControl()
23224           - Implemented Hide()
23225
23226 2004-09-10 19:28  pbartok
23227
23228         * Control.cs:
23229           - Moved methods into their appropriate #regions
23230           - Reordered methods within regions alphabetically
23231
23232 2004-09-10 18:57  pbartok
23233
23234         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23235           - Added method to retrieve text from window
23236
23237 2004-09-10 18:56  pbartok
23238
23239         * Control.cs:
23240           - Moved some internal functions into the internal region
23241           - Implemented FontHeight
23242           - Implemented RenderRightToLeft
23243           - Implemented ResizeRedraw
23244           - Implemented ShowFocusCues
23245           - Implemented ShowKeyboardCues
23246           - Implemented FromChildHandle
23247           - Implemented FromHandle
23248           - Implemented IsMnemonic
23249           - Implemented ReflectMessage
23250           - All public and protected Static Methods are now complete
23251
23252 2004-09-10 16:54  pbartok
23253
23254         * Control.cs:
23255           - Implemented remaining missing public instance properties
23256           - Alphabetized some out of order properties
23257
23258 2004-09-10 05:51  ravindra
23259
23260         * PictureBox.cs: Added a check for null image.
23261
23262 2004-09-10 00:59  jordi
23263
23264         * GroupBox.cs: remove cvs tag
23265
23266 2004-09-09 05:25  ravindra
23267
23268         * ToolBar.cs: Make redraw accessible from ToolBarButton.
23269
23270 2004-09-09 05:23  ravindra
23271
23272         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
23273           parent redraw.
23274
23275 2004-09-09 02:28  pbartok
23276
23277         * ThemeWin32Classic.cs:
23278           - Improve disabled string look
23279
23280 2004-09-09 01:15  jordi
23281
23282         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
23283           args and handler
23284
23285 2004-09-08 23:56  ravindra
23286
23287         * ItemBoundsPortion.cs: It's enum, not a class!
23288
23289 2004-09-08 23:47  ravindra
23290
23291         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
23292           Enums for Form.
23293
23294 2004-09-08 21:13  ravindra
23295
23296         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
23297           ListView control.
23298
23299 2004-09-08 21:03  ravindra
23300
23301         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
23302           avoid crash.
23303
23304 2004-09-08 21:01  ravindra
23305
23306         * ScrollableControl.cs: Removed unreachable code.
23307
23308 2004-09-08 06:45  jordi
23309
23310         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
23311
23312 2004-09-08 01:00  jackson
23313
23314         * XplatUIX11.cs: Only run the timers when updating the message
23315           queue. This effectively gives X messages a higher priority then
23316           timer messages. Timers still need love though
23317
23318 2004-09-07 14:01  jackson
23319
23320         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
23321           this for us and the handle is no longer valid.
23322
23323 2004-09-07 13:59  jackson
23324
23325         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
23326           loop that manages to not crash. TODO: Add poll and cleanup timers
23327
23328 2004-09-07 11:12  jordi
23329
23330         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
23331
23332 2004-09-07 03:40  jordi
23333
23334         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
23335           fixes, methods, multiple links
23336
23337 2004-09-06 06:55  jordi
23338
23339         * Control.cs: Caches ClientRectangle rectangle value
23340
23341 2004-09-05 02:03  jordi
23342
23343         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
23344           certain situations
23345
23346 2004-09-04 11:10  jordi
23347
23348         * Label.cs: Refresh when font changed
23349
23350 2004-09-02 16:24  pbartok
23351
23352         * Control.cs:
23353           - Added sanity check to creation of double buffer bitmap
23354
23355 2004-09-02 16:24  pbartok
23356
23357         * ButtonBase.cs:
23358           - Fixed selection of text color
23359           - Fixed handling of resize event; now properly recreates double
23360             buffering bitmap
23361           - Added missing assignment of TextAlignment
23362           - Added proper default for TextAlignment
23363
23364 2004-09-02 14:26  pbartok
23365
23366         * RadioButton.cs:
23367           - Added missing RadioButton.RadioButtonAccessibleObject class
23368
23369 2004-09-02 14:26  pbartok
23370
23371         * Control.cs:
23372           - Added missing Control.ControlAccessibleObject class
23373           - Started to implement Select()ion mechanisms, still very incomplete
23374
23375 2004-09-02 14:25  pbartok
23376
23377         * AccessibleObject.cs:
23378           - Added missing methods
23379
23380 2004-09-02 14:23  pbartok
23381
23382         * AccessibleNavigation.cs, AccessibleSelection.cs:
23383           - Initial check-in
23384
23385 2004-09-02 10:32  jordi
23386
23387         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
23388           pool for pens, brushes, and hatchbruses
23389
23390 2004-09-01 15:30  jackson
23391
23392         * StatusBar.cs: Fix typo
23393
23394 2004-09-01 14:44  pbartok
23395
23396         * RadioButton.cs:
23397           - Fixed state
23398
23399 2004-09-01 14:39  pbartok
23400
23401         * Button.cs, RadioButton.cs:
23402           - Functional initial check-in
23403
23404 2004-09-01 14:01  pbartok
23405
23406         * CheckBox.cs:
23407           - Added missing default
23408           - Added missing region mark
23409
23410 2004-09-01 09:10  jordi
23411
23412         * Label.cs: fixes method signatures, new methods, events, fixes
23413           autosize
23414
23415 2004-09-01 07:19  jordi
23416
23417         * Control.cs: Init string variables with an empty object
23418
23419 2004-09-01 04:20  jordi
23420
23421         * Control.cs: fires OnFontChanged event
23422
23423 2004-08-31 20:07  pbartok
23424
23425         * ButtonBase.cs:
23426           - Enabled display of strings
23427
23428 2004-08-31 20:05  pbartok
23429
23430         * Form.cs:
23431           - Added (partial) implementation of DialogResult; rest needs to be
23432             implemented when the modal loop code is done
23433
23434 2004-08-31 19:55  pbartok
23435
23436         * CheckBox.cs:
23437           - Fixed to match the removal of the needs_redraw concept
23438
23439 2004-08-31 19:55  pbartok
23440
23441         * ButtonBase.cs:
23442           - Removed the rather odd split between 'needs redraw' and redrawing
23443           - Now handles the events that require regeneration (ambient
23444             properties and size)
23445
23446 2004-08-31 19:41  pbartok
23447
23448         * Control.cs:
23449           - Added firing of BackColorChanged event
23450           - Added TopLevelControl property
23451           - Fixed handling of WM_ERASEBKGRND message
23452
23453 2004-08-31 12:49  pbartok
23454
23455         * ButtonBase.cs:
23456           - Removed debug
23457           - Minor fixes
23458
23459 2004-08-31 12:48  pbartok
23460
23461         * CheckBox.cs:
23462           - Finished (famous last words)
23463
23464 2004-08-31 04:35  jordi
23465
23466         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
23467           scrolling bugs, adds new methods
23468
23469 2004-08-30 14:42  pbartok
23470
23471         * CheckBox.cs:
23472           - Implemented CheckBox drawing code
23473
23474 2004-08-30 14:42  pbartok
23475
23476         * ButtonBase.cs:
23477           - Made Redraw() and CheckRedraw() virtual
23478           - Improved mouse up/down/move logic to properly track buttons
23479
23480 2004-08-30 09:44  pbartok
23481
23482         * CheckBox.cs:
23483           - Updated to fix broken build. Not complete yet.
23484
23485 2004-08-30 09:28  pbartok
23486
23487         * CheckState.cs:
23488           - Initial checkin
23489
23490 2004-08-30 09:17  pbartok
23491
23492         * Appearance.cs:
23493           - Initial check-in
23494
23495 2004-08-27 16:12  ravindra
23496
23497         * ToolBarButton.cs: Added TypeConverter attribute.
23498
23499 2004-08-27 16:07  ravindra
23500
23501         * ImageIndexConverter.cs: Implemented.
23502
23503 2004-08-27 14:17  pbartok
23504
23505         * Control.cs:
23506           - Removed unneeded stack vars
23507           - First attempt to fix sizing issues when layout is suspended
23508
23509 2004-08-25 15:35  jordi
23510
23511         * ScrollBar.cs: more fixes to scrollbar
23512
23513 2004-08-25 14:04  ravindra
23514
23515         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
23516           Added the missing divider code and grip for ToolBar Control.
23517
23518 2004-08-25 13:20  pbartok
23519
23520         * Control.cs:
23521           - Control now properly passes the ambient background color to child
23522             controls
23523
23524 2004-08-25 13:20  jordi
23525
23526         * ScrollBar.cs: small bug fix regarding bar position
23527
23528 2004-08-25 12:33  pbartok
23529
23530         * Timer.cs:
23531           - Now only calls SetTimer or KillTimer if the enabled state has
23532           changed
23533
23534 2004-08-25 12:33  pbartok
23535
23536         * XplatUIWin32.cs:
23537           - Fixed timer handling, now seems to work
23538           - Improved error message for window creation
23539
23540 2004-08-25 12:32  pbartok
23541
23542         * Control.cs:
23543           - Fixed generation of MouseUp message
23544
23545 2004-08-25 12:29  jordi
23546
23547         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
23548           and fixes for progressbar
23549
23550 2004-08-24 18:43  ravindra
23551
23552         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
23553           in ToolBar control.
23554
23555 2004-08-24 17:15  pbartok
23556
23557         * Panel.cs:
23558           - Added #region
23559           - Added missing events
23560           - Alphabetized
23561
23562 2004-08-24 17:14  pbartok
23563
23564         * StatusBar.cs, PictureBox.cs:
23565           - Now uses Control's CreateParams
23566
23567 2004-08-24 16:36  pbartok
23568
23569         * XplatUIX11.cs:
23570           - Fixed background color handling
23571           - Fixed sending of enter/leave events on a grab
23572
23573 2004-08-24 16:35  pbartok
23574
23575         * X11Structs.cs:
23576           - Refined definitions for CrossingEvent
23577
23578 2004-08-24 12:37  jordi
23579
23580         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
23581           formmating, methods signature, and adds missing events
23582
23583 2004-08-24 12:24  jordi
23584
23585         * Control.cs: fire OnEnabledChanged event
23586
23587 2004-08-24 11:17  pbartok
23588
23589         * XplatUIWin32.cs:
23590           - Implemented SetTimer() and KillTimer()
23591
23592 2004-08-24 11:16  pbartok
23593
23594         * XplatUIX11.cs:
23595           - Now uses Remove instead of Add to kill the timer
23596
23597 2004-08-24 10:16  jackson
23598
23599         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
23600           picture boxes in the theme now. Draw picture box borders and obey
23601           sizing modes
23602
23603 2004-08-24 05:49  jackson
23604
23605         * Timer.cs: Remove top secret debugging code
23606
23607 2004-08-24 05:34  jackson
23608
23609         * PictureBox.cs: Temp hack to make picture boxes draw their full
23610           image
23611
23612 2004-08-24 05:29  jackson
23613
23614         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23615           XplatUIX11.cs: Move timers to the driver level. On X they are
23616           queued by the driver and checked on idle.
23617
23618 2004-08-24 01:07  jackson
23619
23620         * XplatUIX11.cs: Use a queue for async messages instead of passing
23621           them as ClientMessages since that was totally broken. Also simply
23622           check for events and return an idle message if none are found. This
23623           gives us an idle handler, and prevents deadlocking when no messages
23624           are in the queue.
23625
23626 2004-08-23 18:19  ravindra
23627
23628         * XplatUIWin32.cs: Removed the unwanted destructor.
23629
23630 2004-08-23 17:27  pbartok
23631
23632         * ButtonBase.cs:
23633           - Finishing touches. Works now, just needs some optimizations.
23634
23635 2004-08-23 16:53  jordi
23636
23637         * ScrollBar.cs: small fix
23638
23639 2004-08-23 16:45  pbartok
23640
23641         * Application.cs:
23642           - Removed debug output
23643           - Simplifications
23644
23645 2004-08-23 16:43  jordi
23646
23647         * ScrollBar.cs: [no log message]
23648
23649 2004-08-23 16:10  pbartok
23650
23651         * Form.cs:
23652           - Fixed handling of WM_CLOSE message
23653           - Removed debug output
23654
23655 2004-08-23 16:09  pbartok
23656
23657         * Application.cs:
23658           - Added handling of Idle event
23659           - Added handling of form closing
23660           - Fixed reporting of MessageLoop property
23661           - Removed some unneeded code, should provide a bit of a speedup
23662
23663 2004-08-23 15:22  pbartok
23664
23665         * Control.cs:
23666           - Added InitLayout() method
23667           - Added code to properly perform layout when Anchor or Dock property
23668             is changed
23669           - Changed 'interpretation' of ResumeLayout. MS seems to have a
23670             LAMESPEC, tried to do it in a way that makes sense
23671
23672 2004-08-23 14:10  jordi
23673
23674         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
23675           properties and methods
23676
23677 2004-08-23 13:55  pbartok
23678
23679         * Control.cs:
23680           - Properly fixed Jordi's last fix
23681           - Now uses Cursor's Position property instead of calling XplatUI
23682           directly
23683
23684 2004-08-23 13:44  jordi
23685
23686         * PaintEventHandler.cs: Adding missing attribute
23687
23688 2004-08-23 13:39  pbartok
23689
23690         * Cursor.cs:
23691           - Implemented Position property
23692
23693 2004-08-23 13:39  pbartok
23694
23695         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23696           - Added method to move mouse cursor
23697
23698 2004-08-23 13:39  pbartok
23699
23700         * XplatUIX11.cs:
23701           - Fixed setting of background color
23702           - Added method to move mouse cursor
23703
23704 2004-08-23 13:16  jordi
23705
23706         * Control.cs: avoids null exception
23707
23708 2004-08-22 17:46  jackson
23709
23710         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
23711           PictureBox
23712
23713 2004-08-22 17:40  jackson
23714
23715         * XplatUIX11.cs: Add some missing locks
23716
23717 2004-08-22 15:10  pbartok
23718
23719         * Control.cs, Form.cs:
23720           - Removed OverlappedWindow style from Control, instead it's default
23721             now is child
23722           - Made form windows OverlappedWindow by default
23723
23724 2004-08-22 13:34  jackson
23725
23726         * ScrollBar.cs: Update the position through the Value property so
23727           the OnValueChanged event is raised.
23728
23729 2004-08-22 12:04  pbartok
23730
23731         * SWF.csproj:
23732           - Added Cursor.cs and UserControl.cs
23733
23734 2004-08-22 12:03  pbartok
23735
23736         * Cursor.cs:
23737           - Started implementation, not usable yet
23738
23739 2004-08-22 12:00  pbartok
23740
23741         * UserControl.cs:
23742           - Implemented UserControl (complete)
23743
23744 2004-08-21 19:20  ravindra
23745
23746         * ToolBar.cs: Correcting the formatting mess of VS.NET.
23747
23748 2004-08-21 18:49  ravindra
23749
23750         * ToolBar.cs: Probably this completes the missing attributes in
23751           toolbar control.
23752
23753 2004-08-21 18:03  ravindra
23754
23755         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
23756           Fixed toolbar control signatures.
23757
23758 2004-08-21 16:32  pbartok
23759
23760         * LinkLabel.cs:
23761           - Signature Fixes
23762
23763 2004-08-21 16:30  pbartok
23764
23765         * Label.cs:
23766           - Signature fixes
23767
23768 2004-08-21 16:19  pbartok
23769
23770         * Control.cs, Label.cs:
23771           - Signature fixes
23772
23773 2004-08-21 15:57  pbartok
23774
23775         * ButtonBase.cs:
23776           - Added loads of debug output for development
23777           - Fixed typo in method name
23778
23779 2004-08-21 15:52  pbartok
23780
23781         * ToolBarButtonClickEventArgs.cs:
23782           - Added missing base class
23783
23784 2004-08-21 14:53  pbartok
23785
23786         * Control.cs:
23787           - Updated to match new GrabWindow signature
23788
23789 2004-08-21 14:51  pbartok
23790
23791         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23792           - Added method to get default display size
23793
23794 2004-08-21 14:23  pbartok
23795
23796         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23797           - Added method to query current grab state
23798           - Added argument to allow confining a grab to a window
23799
23800 2004-08-21 14:22  pbartok
23801
23802         * Keys.cs:
23803           - Added [Flags] attribute so that modifiers can be used in bitwise
23804           ops
23805
23806 2004-08-21 14:21  pbartok
23807
23808         * TrackBar.cs, ScrollBar.cs:
23809           - Replaced direct XplatUI calls with their Control counterpart
23810
23811 2004-08-21 13:32  pbartok
23812
23813         * Control.cs:
23814           - Implemented Created property
23815
23816 2004-08-21 13:28  pbartok
23817
23818         * Control.cs:
23819           - Implemented ContainsFocus
23820
23821 2004-08-21 13:26  pbartok
23822
23823         * Control.cs:
23824           - Implemented CausesValidation
23825
23826 2004-08-21 13:21  pbartok
23827
23828         * Control.cs:
23829           - Implemented CanFocus
23830           - Implemented CanSelect
23831           - Implemented Capture
23832
23833 2004-08-21 12:35  pbartok
23834
23835         * XplatUIWin32.cs:
23836           - Fixed bug with Async message handling
23837           - Implemented getting the ModifierKeys
23838
23839 2004-08-21 12:32  jackson
23840
23841         * AsyncMethodResult.cs: Make sure we have the mutex before we
23842           release it. Fixes BeginInvoke on windows
23843
23844 2004-08-21 11:31  pbartok
23845
23846         * XplatUIWin32.cs, XplatUIX11.cs:
23847           - Drivers now return proper mouse state
23848
23849 2004-08-21 10:54  jackson
23850
23851         * Control.cs: Implement EndInvoke
23852
23853 2004-08-21 10:48  jackson
23854
23855         * Timer.cs: Remove unneeded finalizer
23856
23857 2004-08-20 19:52  ravindra
23858
23859         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
23860           in mouse event handling in the ToolBar control.
23861
23862 2004-08-20 19:50  ravindra
23863
23864         * ImageList.cs: Changed draw method to use the arguments passed in
23865           to draw the image.
23866
23867 2004-08-20 18:58  pbartok
23868
23869         * XplatUIStructs.cs:
23870           - Added private message for async communication
23871
23872 2004-08-20 17:38  ravindra
23873
23874         * Control.cs: Made RightToLeft property virtual and removed a
23875           Console.WriteLine.
23876
23877 2004-08-20 14:39  jordi
23878
23879         * ThemeGtk.cs: use style_attach
23880
23881 2004-08-20 14:39  pbartok
23882
23883         * XplatUIWin32.cs:
23884           - Added jackson's Async code from X11 to Win32
23885
23886 2004-08-20 14:09  pbartok
23887
23888         * SWF.csproj:
23889           - Added all new files
23890
23891 2004-08-20 14:09  pbartok
23892
23893         * Control.cs:
23894           - Added call to set window background color
23895
23896 2004-08-20 14:03  pbartok
23897
23898         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23899           - Added method for setting the window background
23900
23901 2004-08-20 14:02  pbartok
23902
23903         * XplatUIWin32.cs:
23904           - Added method for setting the background color
23905           - Added handling for erasing the window background
23906
23907 2004-08-20 13:45  jordi
23908
23909         * TrackBar.cs: fixes timer, new properties and methods
23910
23911 2004-08-20 13:34  jackson
23912
23913         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
23914           correct thread
23915
23916 2004-08-20 13:22  jackson
23917
23918         * Timer.cs: Timer Tick events are now handed through Controls Async
23919           mechanism so the callbacks are executed in the same thread as X
23920
23921 2004-08-20 13:19  jackson
23922
23923         * XplatUIDriver.cs: Expose functionality to send async messages
23924           through the driver
23925
23926 2004-08-20 13:18  jackson
23927
23928         * Control.cs: Implement Begininvoke
23929
23930 2004-08-20 13:14  jackson
23931
23932         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
23933           messages through the driver
23934
23935 2004-08-20 13:12  jackson
23936
23937         * XplatUIX11.cs: Lock before all X operations. Also added Async
23938           method functionality through XSendEvent
23939
23940 2004-08-20 13:11  jackson
23941
23942         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
23943           This will screw up on 64 bit systems)
23944
23945 2004-08-20 13:10  jackson
23946
23947         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
23948           Async messages through X/Win32
23949
23950 2004-08-19 19:39  pbartok
23951
23952         * XplatUIX11.cs:
23953           - Updated code to match new HandleData.DeviceContext type
23954
23955 2004-08-19 19:38  pbartok
23956
23957         * HandleData.cs:
23958           - Made DeviceContext a generic object to allow usage from various
23959           drivers
23960           - Added support for queueing Windows messages
23961
23962 2004-08-19 19:37  pbartok
23963
23964         * XplatUIWin32.cs:
23965           - Added generation of MouseEnter, MouseLeave and MouseHover events
23966           - Added cleanup on EndPaint
23967
23968 2004-08-19 19:17  pbartok
23969
23970         * Control.cs:
23971           - Added handling of WM_MOUSEHOVER
23972           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
23973           code
23974
23975 2004-08-19 18:55  jordi
23976
23977         * ThemeGtk.cs: fixes button order
23978
23979 2004-08-19 18:12  jordi
23980
23981         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
23982
23983 2004-08-19 17:09  pbartok
23984
23985         * Control.cs:
23986           - Added Right property
23987           - Added RightToLeft property
23988
23989 2004-08-19 16:27  jordi
23990
23991         * ThemeGtk.cs: experimental GTK theme support
23992
23993 2004-08-19 16:26  jordi
23994
23995         * ITheme.cs, Theme.cs: move themes from an interface to a class
23996
23997 2004-08-19 16:25  jordi
23998
23999         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
24000           theme enhancaments
24001
24002 2004-08-19 16:04  pbartok
24003
24004         * XplatUIX11.cs:
24005           - Added colormap basics
24006           - Added a way to re-initialize with a different display handle
24007           - Fixed setting of the window background color
24008           - Added various X11 imports related to colors and colormaps
24009
24010 2004-08-19 15:51  pbartok
24011
24012         * X11Structs.cs:
24013           - Removed packing hints (Paolo suggested this a while back)
24014           - fixed colormap type
24015           - Added default Atom types
24016           - Added Screen and color structs and enums
24017
24018 2004-08-19 15:39  pbartok
24019
24020         * ImageList.cs:
24021           - Added missing Draw() method
24022           - Added missing RecreateHandle event
24023
24024 2004-08-19 15:30  pbartok
24025
24026         * Form.cs:
24027           - Added handling of WM_CLOSE
24028
24029 2004-08-18 13:16  jordi
24030
24031         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
24032           a table
24033
24034 2004-08-18 09:56  jordi
24035
24036         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
24037
24038 2004-08-17 15:31  ravindra
24039
24040         * SWF.csproj: Updated project.
24041
24042 2004-08-17 15:25  pbartok
24043
24044         * Control.cs:
24045           - Drawing improvement; don't call UpdateBounds if we are not visible
24046             (or have been minimized)
24047
24048 2004-08-17 15:24  pbartok
24049
24050         * XplatUIWin32.cs:
24051           - Finished IsVisible
24052           - Added Win32GetWindowPlacement
24053
24054 2004-08-17 15:08  jackson
24055
24056         * Panel.cs: Initial checkin of the Panel
24057
24058 2004-08-17 14:25  pbartok
24059
24060         * Control.cs:
24061           - Fixed broken handling of default window sizes
24062
24063 2004-08-17 13:29  jackson
24064
24065         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
24066           has a large startup time.
24067
24068 2004-08-17 10:25  jackson
24069
24070         * HandleData.cs: union areas properly
24071
24072 2004-08-17 10:12  jackson
24073
24074         * HandleData.cs: union areas properly
24075
24076 2004-08-16 20:00  ravindra
24077
24078         * ToolBar.cs, ToolBarButton.cs: Added attributes.
24079
24080 2004-08-16 18:48  ravindra
24081
24082         * ToolBar.cs: Added attributes.
24083
24084 2004-08-16 17:17  ravindra
24085
24086         * SWF.csproj: Updated project.
24087
24088 2004-08-16 17:16  jackson
24089
24090         * XplatUIX11.cs: Check for more expose events before sending a
24091           WM_PAINT so they can all be grouped together. This makes dragging a
24092           window across another window redraw in a sane way.
24093
24094 2004-08-16 15:47  pbartok
24095
24096         * Control.cs:
24097           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
24098             support OnMouseEnter/Leave()
24099           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
24100             exposure handling
24101
24102 2004-08-16 15:46  pbartok
24103
24104         * XplatUIStructs.cs, XplatUIX11.cs:
24105           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
24106           OnMouseEnter/Leave()
24107
24108 2004-08-16 15:34  jackson
24109
24110         * XplatUIX11.cs: Group multiple expose events in HandleData, make
24111           sure messages get the message field set to WM_NULL if they are not
24112           handled.
24113
24114 2004-08-16 15:24  jackson
24115
24116         * HandleData.cs: HandleData is used for storing message information
24117           for window handles
24118
24119 2004-08-15 17:23  ravindra
24120
24121         * ColorDepth.cs: Added attribute.
24122
24123 2004-08-15 17:23  ravindra
24124
24125         * SWF.csproj: Updated project for ToolBar Control.
24126
24127 2004-08-15 17:20  ravindra
24128
24129         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
24130           control and also dos2unix format.
24131
24132 2004-08-15 17:13  ravindra
24133
24134         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
24135           ToolBarButtonClickEventArgs.cs,
24136           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
24137           ToolBarTextAlign.cs: First Implementation of ToolBar control.
24138
24139 2004-08-15 15:31  pbartok
24140
24141         * ButtonBase.cs:
24142           - First (mostly) working version
24143
24144 2004-08-13 16:15  pbartok
24145
24146         * Control.cs:
24147           - Fixed Anchor default
24148
24149 2004-08-13 15:43  pbartok
24150
24151         * Control.cs:
24152           - Changed GetCursorPos signature
24153
24154 2004-08-13 15:42  pbartok
24155
24156         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
24157           - Changed signature for GetCursorPos
24158
24159 2004-08-13 15:25  pbartok
24160
24161         * XplatUIX11.cs:
24162           - Cleanup
24163           - Fixed resizing/exposure handling
24164
24165 2004-08-13 15:22  jordi
24166
24167         * ThemeWin32Classic.cs: removes redundant code and fixes issues
24168           with tickposition
24169
24170 2004-08-13 14:55  jordi
24171
24172         * TrackBar.cs: change from wndproc to events
24173
24174 2004-08-13 13:00  jordi
24175
24176         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24177           XplatUIX11.cs: implements PointToClient (ScreenToClient)
24178
24179 2004-08-13 12:53  pbartok
24180
24181         * XplatUIWin32.cs:
24182           - Changed GetWindowPos to also provide client area size
24183           - Fixed broken prototypes for several win32 functions
24184
24185 2004-08-13 12:53  pbartok
24186
24187         * XplatUI.cs, XplatUIDriver.cs:
24188           - Changed GetWindowPos to also provide client area size
24189
24190 2004-08-13 12:52  pbartok
24191
24192         * XplatUIX11.cs:
24193           - Added generation of WM_POSCHANGED
24194           - Changed GetWindowPos to also provide client area size
24195
24196 2004-08-13 12:52  pbartok
24197
24198         * Control.cs:
24199           - Added Dispose() and destructor
24200           - Fixed resizing and bounds calculation
24201           - Fixed Layout
24202           - Added memory savings for invisible windows
24203
24204 2004-08-13 12:46  jordi
24205
24206         * TrackBar.cs: adds timer and grap window
24207
24208 2004-08-13 10:25  jackson
24209
24210         * Timer.cs: SWF Timer
24211
24212 2004-08-12 16:59  pbartok
24213
24214         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24215           - Implemented method to get current mouse position
24216
24217 2004-08-12 14:29  jordi
24218
24219         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
24220           enhancement, fix mouse problems, highli thumb, etc
24221
24222 2004-08-12 13:31  pbartok
24223
24224         * Control.cs:
24225           - Fixed Anchoring bugs
24226
24227 2004-08-12 13:01  jackson
24228
24229         * StatusBar.cs: Don't forget things
24230
24231 2004-08-12 12:54  jackson
24232
24233         * ThemeWin32Classic.cs: Handle owner draw status bars
24234
24235 2004-08-12 12:54  jackson
24236
24237         * StatusBar.cs: Implement missing properties, events, and methods.
24238           Handle mouse clicking
24239
24240 2004-08-12 10:19  jackson
24241
24242         * StatusBarPanelClickEventArgs.cs,
24243           StatusBarPanelClickEventHandler.cs: Classes for handling status
24244           bar panel click events
24245
24246 2004-08-12 10:10  jackson
24247
24248         * Control.cs: Add missing properties
24249
24250 2004-08-12 09:46  pbartok
24251
24252         * BindingsManagerBase.cs:
24253           - Name changed to BindingManagerBase.cs
24254
24255 2004-08-12 09:25  jordi
24256
24257         * ScrollableControl.cs: calls ctrlbase instead of exeception
24258
24259 2004-08-11 16:28  pbartok
24260
24261         * InputLanguageChangingEventArgs.cs:
24262           - Never check in before compiling. Fixes the last check-in
24263
24264 2004-08-11 16:26  pbartok
24265
24266         * InputLanguageChangingEventArgs.cs:
24267           - More signature fixes
24268
24269 2004-08-11 16:20  pbartok
24270
24271         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
24272           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
24273           ImageListStreamer.cs, InputLanguage.cs,
24274           InputLanguageChangedEventArgs.cs,
24275           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
24276           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
24277           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
24278           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24279           - Signature fixes
24280
24281 2004-08-11 16:16  pbartok
24282
24283         * Application.cs:
24284           - Fixed Signature
24285           - Added .Net 1.1 method
24286
24287 2004-08-11 15:25  pbartok
24288
24289         * SWF.csproj:
24290           - Fixed BindingManagerBase.cs filename
24291
24292 2004-08-11 15:22  pbartok
24293
24294         * BindingManagerBase.cs:
24295           - Was checked in with wrong filename
24296
24297 2004-08-11 14:50  pbartok
24298
24299         * SWF.csproj:
24300           - Updated
24301
24302 2004-08-11 13:41  jordi
24303
24304         * XplatUIWin32.cs: Fixes ClientRect
24305
24306 2004-08-11 13:19  pbartok
24307
24308         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24309           XplatUIX11.cs:
24310           - We had SetWindowPos and MoveWindow to set window positions and
24311             size, removed MoveWindow. We have GetWindowPos, so it made sense to
24312             keep SetWindowPos as matching counterpart
24313           - Added some X11 sanity checking
24314
24315 2004-08-11 12:59  pbartok
24316
24317         * Control.cs:
24318           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
24319             (It seems that SetBounds is just a front for SetBoundsCore and
24320              SetBoundsCore updates the underlying window system and
24321              UpdateBounds is responsible for updating the variables associated
24322              with the Control and sending the events)
24323           - Major cleanup of Size handling; we now have two sizes, client_size
24324             and bounds. Bounds defines the window with decorations, client_size
24325             without them.
24326
24327 2004-08-11 12:55  pbartok
24328
24329         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24330           - Added method to calculate difference between decorated window and
24331             raw client area
24332
24333 2004-08-11 12:54  pbartok
24334
24335         * Label.cs:
24336           - Forcing redraw on resize
24337
24338 2004-08-11 11:43  pbartok
24339
24340         * ImageList.cs:
24341           - Removed disposing of the actual images when the list is disposed
24342
24343 2004-08-11 09:13  pbartok
24344
24345         * Control.cs:
24346           - Now properly reparents windows
24347
24348 2004-08-11 08:37  pbartok
24349
24350         * Control.cs:
24351           - Duh!
24352
24353 2004-08-11 07:47  pbartok
24354
24355         * Control.cs:
24356           - Rewrote the collection stuff. Might not be as fast now, not
24357             keeping the number of children around and accessible directly, but
24358             it's more straightforward
24359
24360 2004-08-11 07:44  pbartok
24361
24362         * AccessibleObject.cs:
24363           - Fixed to match ControlCollection rewrite
24364
24365 2004-08-11 07:43  pbartok
24366
24367         * ImageList.cs:
24368           - Added missing creation of the collection list
24369
24370 2004-08-10 20:08  jackson
24371
24372         * StatusBar.cs: Get the paint message from WndProc
24373
24374 2004-08-10 19:31  jackson
24375
24376         * ThemeWin32Classic.cs: Create Brushes as little as possible
24377
24378 2004-08-10 19:20  jackson
24379
24380         * UICues.cs: Add Flags attribute
24381
24382 2004-08-10 19:19  jackson
24383
24384         * StatusBarPanel.cs: Signature cleanup
24385
24386 2004-08-10 19:10  jackson
24387
24388         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
24389           Initial implementation of status bar item drawing
24390
24391 2004-08-10 17:27  jordi
24392
24393         * TrackBar.cs: add missing methods, properties, and restructure to
24394           hide extra ones
24395
24396 2004-08-10 16:24  jackson
24397
24398         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
24399           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
24400           attribute
24401
24402 2004-08-10 13:21  jordi
24403
24404         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
24405           enhancements and standarize on win colors defaults
24406
24407 2004-08-10 12:52  jackson
24408
24409         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
24410           ThemeWin32Classic.cs: Implement DrawItem functionality
24411
24412 2004-08-10 12:47  jordi
24413
24414         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
24415
24416 2004-08-10 12:32  jordi
24417
24418         * Control.cs: throw ontextchange event
24419
24420 2004-08-10 11:43  pbartok
24421
24422         * Control.cs:
24423           - Added more to the still unfinished Dock/Anchor layout code
24424
24425 2004-08-10 11:39  pbartok
24426
24427         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
24428           - Added GetWindowPos method
24429
24430 2004-08-10 11:36  pbartok
24431
24432         * XplatUIWin32.cs:
24433           - Implemented several methods
24434
24435 2004-08-10 09:47  jackson
24436
24437         * TrackBar.cs: Allow control to handle buffering
24438
24439 2004-08-10 09:41  jackson
24440
24441         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
24442
24443 2004-08-10 09:24  jackson
24444
24445         * Label.cs, LinkLabel.cs: Let Control handle buffering.
24446
24447 2004-08-10 09:09  jackson
24448
24449         * StatusBar.cs: Let Control handle all the buffering.
24450
24451 2004-08-10 09:08  jackson
24452
24453         * Control.cs: Control will now handle the buffering code, so each
24454           control does not have to implement this.
24455
24456 2004-08-10 08:34  jackson
24457
24458         * XplatUIDriver.cs: Use default colors from the theme
24459
24460 2004-08-09 17:12  pbartok
24461
24462         * ImageList.cs:
24463           - Fixed several bugs Ravindra pointed out
24464
24465 2004-08-09 16:11  pbartok
24466
24467         * Control.cs:
24468           - Added incomplete dock layout code
24469           - Added support for mouse wheel
24470
24471 2004-08-09 16:09  pbartok
24472
24473         * XplatUIX11.cs:
24474           - Added handling for middle and right mousebutton
24475           - Added handling for mouse wheel
24476           - Added handling for key state and mouse state and position
24477           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
24478           messages
24479
24480 2004-08-09 15:40  jackson
24481
24482         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
24483           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
24484           checkin
24485
24486 2004-08-09 15:37  jackson
24487
24488         * StatusBar.cs: Initial implementation of StatusBar
24489
24490 2004-08-09 15:36  jackson
24491
24492         * ITheme.cs: Add support for drawing status bar and getting status
24493           bar item sizes
24494
24495 2004-08-09 15:35  pbartok
24496
24497         * MouseButtons.cs:
24498           - Fixed values
24499
24500 2004-08-09 15:34  jackson
24501
24502         * ThemeWin32Classic.cs: Add support for drawing status bar and get
24503           status bar item sizes
24504
24505 2004-08-09 15:21  jackson
24506
24507         * ThemeWin32Classic.cs: Use known colors for default control
24508           colours
24509
24510 2004-08-09 15:12  jackson
24511
24512         * ThemeWin32Classic.cs: Make the default font static, it is static
24513           in control so this doesn't change functionality and creating fonts
24514           is sloooooow.
24515
24516 2004-08-09 14:56  pbartok
24517
24518         * X11Structs.cs:
24519           - Added GrabMode enum
24520
24521 2004-08-09 14:55  pbartok
24522
24523         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24524           - Removed Run method, was only required for initial development
24525
24526 2004-08-09 14:51  pbartok
24527
24528         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
24529           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
24530           capture
24531
24532 2004-08-09 13:48  pbartok
24533
24534         * XplatUIX11.cs:
24535           - Fixed default sizing for child windows
24536
24537 2004-08-09 12:56  pbartok
24538
24539         * XplatUIX11.cs:
24540           - Added generation of WM_DESTROY message
24541           - Added handling of window manager induced shutdown
24542
24543 2004-08-09 11:31  jackson
24544
24545         * ThemeWin32Classic.cs: New names for control properties
24546
24547 2004-08-09 11:25  jackson
24548
24549         * Control.cs: Use new color names
24550
24551 2004-08-09 11:02  jackson
24552
24553         * XplatUI.cs: Get default window properties from the theme
24554
24555 2004-08-09 11:01  jackson
24556
24557         * ITheme.cs: The theme engine now controls default window
24558           properties
24559
24560 2004-08-09 11:00  jackson
24561
24562         * ThemeWin32Classic.cs: Add default window color properties
24563
24564 2004-08-09 10:17  jackson
24565
24566         * ThemeWin32Classic.cs: Use correct default back color
24567
24568 2004-08-09 10:05  jackson
24569
24570         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
24571           the theme now.
24572
24573 2004-08-09 09:56  jackson
24574
24575         * XplatUI.cs: Remove defaults, these are handled by the theme now.
24576
24577 2004-08-09 09:54  jackson
24578
24579         * Control.cs: Get default properties from the theme.
24580
24581 2004-08-09 09:53  jackson
24582
24583         * ITheme.cs: Themes now handle default control properties
24584
24585 2004-08-09 09:53  jackson
24586
24587         * ThemeWin32Classic.cs: Themes now handle default control
24588           properties so coloring will be consistent
24589
24590 2004-08-08 16:54  jordi
24591
24592         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
24593
24594 2004-08-08 15:08  jordi
24595
24596         * XplatUIX11.cs: fixes keyboard crash
24597
24598 2004-08-08 13:47  jordi
24599
24600         * Label.cs: add cvs header info
24601
24602 2004-08-08 12:09  jackson
24603
24604         * ThemeWin32Classic.cs: Add pen_buttonface
24605
24606 2004-08-08 11:52  jordi
24607
24608         * Label.cs, LinkLabel.cs: [no log message]
24609
24610 2004-08-08 11:34  jordi
24611
24612         * ThemeWin32Classic.cs: Use Windows Standard Colours
24613
24614 2004-08-07 17:32  jordi
24615
24616         * TrackBar.cs: throw exceptions of invalid enums values
24617
24618 2004-08-07 17:31  jordi
24619
24620         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
24621           draw method name
24622
24623 2004-08-07 16:56  jackson
24624
24625         * HorizontalAlignment.cs: Initial checkin
24626
24627 2004-08-07 13:16  jordi
24628
24629         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
24630           methods
24631
24632 2004-08-07 13:05  jordi
24633
24634         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
24635           GetSysColor defines
24636
24637 2004-08-06 18:01  pbartok
24638
24639         * ThemeWin32Classic.cs:
24640           - Fixed some rounding issues with float/int
24641
24642 2004-08-06 18:00  jackson
24643
24644         * DockStyle.cs, AnchorStyles.cs:
24645
24646                   Add flags and serializable attributes.
24647
24648 2004-08-06 17:46  pbartok
24649
24650         * XplatUIX11.cs:
24651           - Implemented GetParent
24652
24653 2004-08-06 17:18  pbartok
24654
24655         * TrackBar.cs:
24656           - Fixed some rounding issues with float/int
24657
24658 2004-08-06 17:17  pbartok
24659
24660         * X11Structs.cs, XplatUIX11.cs:
24661           - Fixed Refresh and Invalidate
24662
24663 2004-08-06 15:30  pbartok
24664
24665         * Control.cs, X11Structs.cs, XplatUIX11.cs:
24666           - Fixed recursive loop when resizing
24667           - Improved/fixed redrawing on expose messages
24668
24669 2004-08-06 09:53  jordi
24670
24671         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
24672           keyboard navigation
24673
24674 2004-08-06 08:02  pbartok
24675
24676         * X11Structs.cs, XplatUIX11.cs:
24677           - Fixed reparenting
24678           - Fixed window border creation
24679
24680 2004-08-05 15:38  pbartok
24681
24682         * XplatUIX11.cs:
24683           - Attempted fix for reparenting problems
24684
24685 2004-08-04 15:14  pbartok
24686
24687         * Control.cs:
24688           - Fixed Invalidation bug (calculated wrong client area)
24689           - Added ClientSize setter
24690
24691 2004-08-04 15:13  pbartok
24692
24693         * Form.cs:
24694           - Added AutoScale properties
24695
24696 2004-08-04 15:13  pbartok
24697
24698         * SWF.csproj:
24699           - Added latest files
24700
24701 2004-08-04 14:11  pbartok
24702
24703         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
24704           XplatUIX11.cs:
24705           - Added Invalidate handling
24706
24707 2004-08-03 17:09  jordi
24708
24709         * XplatUIDriver.cs: fixes spelling mistake
24710
24711 2004-07-27 09:53  jordi
24712
24713         * TrackBar.cs: fixes trackbar events, def classname, methods
24714           signature
24715
24716 2004-07-27 09:29  jordi
24717
24718         * ScrollBar.cs: fixes scrollbar events
24719
24720 2004-07-27 04:38  jordi
24721
24722         * Control.cs: changes to be able to run winforms samples
24723
24724 2004-07-26 11:42  jordi
24725
24726         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
24727           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
24728
24729 2004-07-26 05:41  jordi
24730
24731         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
24732           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
24733           implementation
24734
24735 2004-07-22 09:22  jordi
24736
24737         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
24738           check link overlapping, implement events, and fixes
24739
24740 2004-07-21 10:28  jordi
24741
24742         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
24743
24744 2004-07-21 10:19  jordi
24745
24746         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
24747           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
24748           LinkLabelLinkClickedEventArgs.cs,
24749           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
24750           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
24751           implementation
24752
24753 2004-07-19 13:09  jordi
24754
24755         * Control.cs, Label.cs: label control re-written: added missing
24756           functionlity, events, and properties
24757
24758 2004-07-19 10:49  jordi
24759
24760         * Control.cs: fixes SetBounds logic
24761
24762 2004-07-19 01:29  jordi
24763
24764         * Control.cs: Call RefreshWindow only if the window has created
24765
24766 2004-07-15 14:05  pbartok
24767
24768         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
24769           - Implemented ImageList and ImageList.ImageCollection classes
24770           - Added ColorDepth enumeration
24771           - Updated SWF VS.Net project
24772
24773 2004-07-15 11:06  jordi
24774
24775         * XplatUIStructs.cs: added MsgButons enum
24776
24777 2004-07-15 11:03  jordi
24778
24779         * Control.cs: added basic mouse handeling events
24780
24781 2004-07-15 03:38  jordi
24782
24783         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
24784           Vertical TrackBar control implementation
24785
24786 2004-07-13 09:33  jordi
24787
24788         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
24789
24790 2004-07-13 09:31  jordi
24791
24792         * Control.cs, Form.cs: commit: new properties and fixes form size
24793           problems
24794
24795 2004-07-09 14:13  miguel
24796
24797         * ProgressBar.cs: Spelling
24798
24799 2004-07-09 11:25  pbartok
24800
24801         * ProgressBar.cs:
24802           - Removed usage of Rectangle for drawing. Miguel pointed out it's
24803           faster
24804
24805 2004-07-09 11:17  miguel
24806
24807         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
24808
24809                 * ProgressBar.cs: Fixed spelling for `block'
24810
24811                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
24812                 style guidelines.
24813
24814                 Avoid using the += on rect.X, that exposed a bug in the compiler.
24815
24816 2004-07-08 23:21  pbartok
24817
24818         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
24819           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
24820           BaseCollection.cs, Binding.cs, BindingContext.cs,
24821           BindingMemberInfo.cs, BindingsCollection.cs,
24822           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
24823           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
24824           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
24825           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
24826           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
24827           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
24828           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
24829           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
24830           FrameStyle.cs, GiveFeedbackEventArgs.cs,
24831           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
24832           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
24833           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
24834           InputLanguageChangedEventArgs.cs,
24835           InputLanguageChangedEventHandler.cs,
24836           InputLanguageChangingEventArgs.cs,
24837           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
24838           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
24839           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
24840           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
24841           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
24842           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
24843           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
24844           QueryAccessibilityHelpEventArgs.cs,
24845           QueryAccessibilityHelpEventHandler.cs,
24846           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
24847           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
24848           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
24849           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
24850           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
24851           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
24852           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
24853           XplatUIX11.cs, lang.cs:
24854           - Initial check-in
24855