* FileDialog.cs: Use text of File name combobox to determine what
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
2
3         * FileDialog.cs: Use text of File name combobox to determine what
4         files the user selected. Added tokenizer to parse the file names.
5         Fixes bug #81123.
6
7 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
8
9         * Control.cs: We can't call SizeFromClientSize in the constructor,
10         but we still need to do the same work, so make an internal version.
11         [Fixes bug #80621]
12
13 2007-03-12  Jackson Harper  <jackson@ximian.com>
14
15         * TreeView.cs:
16         * TreeNode.cs:
17         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
18         IsExpanded.
19
20 2007-03-12  Jackson Harper  <jackson@ximian.com>
21
22         * TextBoxBase.cs: Now that the handles are being created a little
23         later, we need to make sure that the document is recalculated when
24         the handle is created.
25
26 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
27
28         * Theme.cs: GetLinkFont abstract method added.
29         
30         * LinkLabel.cs: 
31         - Remove CalcTrimRectangle, no longer needed.
32         - Factor also remove, position issues must be fixed in libgdiplus.
33         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
34         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
35         care about font used to draw links.
36         - Set TabStop to true when control is "Selectable", control is selectable
37         when have one or more links. Fixes #80501 (test case is also added).
38         - Set the LinkArea values after links change, LinkArea values must be
39         based in first link position and size, a test case was created.
40         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
41         the attribute must be true LinkArea.Length > 0. The same was applied to
42         TabStop.
43         
44         * ThemeWin32Classic.cs: 
45         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
46         in draw method.
47         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
48         color change.
49         - Draw focus rectangle for every parts focused, including parts that 
50         is on another line, its because regions returns various rectangles
51         and not only one. Needed to mimic W32 look.
52         - Uses Graphics.Clip to delimite region painted, it mean that now 
53         complete text is passed to DrawString, with this we solve layout
54         issues without create another text renderer.
55         - Uses Region.Intersect to fix some flickers problems, now only needed
56         parts will redrawed.
57         - This changes fixes #79614 and some other unreported issues, on Linux 
58         some layout problems still remain, the problem is under 
59         MeasureCharacterRanges but it is an libgdiplus bug.
60
61 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
62
63         * TextBox.cs: Set for foreground color.
64         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
65         this is already done in Control.
66
67 2007-03-10  Jackson Harper  <jackson@ximian.com>
68
69         * TextBox.cs: Set the background color, but reset the
70         backcolor_set flag which is just for the user setting the
71         background color.
72
73 2007-03-09  Chris Toshok  <toshok@ximian.com>
74
75         * Control.cs: really remove the call to XplatUI.SetVisible from
76         CreateHandle(), like I said I did when I merged the branch.
77
78         * BindingSource.cs: implement some more of this stuff.
79
80 2007-03-09  Jackson Harper  <jackson@ximian.com>
81
82         * TextBox.cs: Don't explicitly set our background colors.
83         * TextControl.cs:
84         * TextBoxBase.cs: Draw readonly text.
85         - Need to invalidate when backcolor or readonly are changed.
86         
87 2007-03-09  Jackson Harper  <jackson@ximian.com>
88
89         * TextBoxBase.cs: Don't set the forecolor until the handle is
90         created.
91         - Do not raise OnPaint, and removed some old debug code.
92
93 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
94
95         * ScrollableControl.cs: Fix mouse wheel scrolling.
96
97 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
98
99         * Control.cs: Wire up MouseDoubleClick event.
100
101 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
102
103         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
104         top or bottom.
105         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
106         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
107         item is added.  This logic was moved to ToolStrip.OnItemAdded.
108         [Fixes bug #81090]
109
110 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
111
112         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
113
114 2007-03-08  Jackson Harper  <jackson@ximian.com>
115
116         * TreeView.cs: Show the correct image for selected node (this used
117         to work, not sure how the code got deleted). Also implemented 2.0 feature
118         SelectedImageKey.
119
120 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
121
122         * ListView.cs:
123         * ListViewItem.cs: Cache index in items when retrieving them
124         in VirtualMode.
125
126 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
127
128         * ToolStripItem.cs: Don't return the explicit_size if we are using 
129         AutoSize.  Fixes invalidation issue when user has explicitly set a
130         size and has AutoSize = true.
131
132 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
133
134         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
135
136 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
137
138         * DataGridView.cs: Remove event handler from DataView when a
139         DataTable is used as DataSource.
140
141 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
142
143         * Control.cs: Create internal setter for client_size to allow it to be
144         set without triggering resizing code.
145         * Form.cs: Calculate client_size in constructor, only change client_size
146         in FormBorderStyle property if Handle has been created.
147         [Fixes #80574, #80791]
148
149 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
150
151         * SystemInformation.cs: Add TerminalServerSession.
152
153 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
154
155         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
156         TreeView code.
157
158 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
159
160         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
161         Handle before we were supposed to.  Now checks ActivateOnShow property
162         in Control.
163         * Control.cs: Add internal ActivateOnShow property.
164         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
165         for ActivateOnShow.
166         * Hwnd.cs Remove no longer needed no_activate field.
167
168 2007-03-07  Jackson Harper  <jackson@ximian.com>
169
170         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
171         2.0 properties
172         * DrawTreeNodeEventHandler.cs: Add
173         * DrawTreeNodeEventArgs.cs: Correct default value.
174         
175 2007-03-07  Chris Toshok  <toshok@ximian.com>
176
177         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
178         to be called before NativeWindow.WndProc.  Put the HwndCreating
179         magic there to hook up our Hwnd's to handles.
180
181 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
182
183         * DataGridView.cs: Comment out debug code.
184
185 2007-03-07  Chris Toshok  <toshok@ximian.com>
186
187         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
188         to make the rest of the world happy]
189
190         * Control.cs (CreateHandle): there's no need to call
191         XplatUI.SetVisible here, it's effectively done by
192         XplatUI.CreateWindow on X now, and always was on windows.
193
194         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
195         shortcircuit out of the loop if we have a message loop running on
196         this thread.
197
198         [Changelog from merge]
199
200         2007-03-05  Chris Toshok  <toshok@ximian.com>
201
202                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
203                 causes handle creation.
204
205         2007-02-28  Chris Toshok  <toshok@ximian.com>
206
207                 * ApplicationContext.cs: Add a flag to make sure we only raise the
208                 ThreadExit event once (ExitThreadCore can be indirectly called
209                 from a few places.)  I don't like the additional flag, but it
210                 makes the event ordering/count correct.
211
212                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
213                 without locking the collection.  An enumerator doesn't give us any
214                 protection from modification anyway.  Lock the thread hash and
215                 replace the complicated enumerator loop with a foreach.
216                 (Application.CloseForms): make internal so it can be called from
217                 ApplicationContext.  This should probably be moved to MWFThread.
218                 (Application.ExitThread): don't call MWFThread.Current.Exit()
219                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
220                 when the runloop exits (in response to WM_QUIT.)
221                 (Application.RunLoop): add a comment (and check) for
222                 context.MainForm being null after setting context.MainForm.Visible
223                 = true.  This is because you're perfectly free to dispose of a
224                 form in VisibilityChanged.  Chalk this up to another case where we
225                 need to synchronously generate WM_ACTIVATE from Control.Show.
226                 Also, add handling for WM_QUIT here so we'll exit the loop.
227                 
228                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
229                 fact that we don't wait if we're only unmapping the whole_window
230                 makes me a bit nervous, but it doesn't seem to cause any problems
231                 yet.
232
233                 also, add a comment about the stupid, broken and wrong resetting
234                 of PostQuitState to false in GetMessage().
235
236                 In PostQuitMessage, we need to add a WM_QUIT message to the
237                 thread's queue.  We use the FosterParent to get the right
238                 handle/hwnd/queue.
239
240                 Lastly, in SetVisible, we need to unmap both windows, since the
241                 waiting only happens when we're unmapping the client window.  So
242                 now, the *only* time we unmap just the whole_window is in the hack
243                 for resizing a control to 0,0.
244                 
245         2007-02-21  Chris Toshok  <toshok@ximian.com>
246
247                 * Application.cs (CloseForms): rewrite this so that we don't
248                 modify the list while we're traversing it.
249
250         2007-02-20  Chris Toshok  <toshok@ximian.com>
251
252                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
253                 of OnHandleCreated.
254                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
255                 handle is created.  otherwise we'll create it here.
256                 (VerticalScrollEvent): same here.
257
258                 * Application.cs (CloseForms): call Form.Dispose, don't post
259                 WM_CLOSE_INTERNAL.
260
261                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
262                 here. Application should Dispose() of the Form's.
263
264                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
265                 WM_DESTROY as well.
266                 (MapWindow,UnmapWindow): only actually do the waiting for
267                 SHOWWINDOW if the control we're dealing with is a Form.
268                 (CreateWindow): if the control isn't a form, SendMessage
269                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
270
271                 * Control.cs (SetVisibleCore): always use is_visible here, not
272                 value.  If we use value, we can end up re-setting something
273                 visible if, for instance, you do Control.Hide() in a delegate
274                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
275
276         2007-02-20  Chris Toshok  <toshok@ximian.com>
277
278                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
279                 the message we need.  PeekMessage returning false should not be a
280                 condition under which we exit the loop.
281
282         2007-02-15  Chris Toshok  <toshok@ximian.com>
283
284                 * Control.cs (Refresh): only refresh if we've got a handle and are
285                 visible.
286                 (CreateAccessibilityInstance): CreateControl() here.
287                 (UpdateChildrenZOrder): complicate the code loop even more by
288                 taking into account controls that haven't had their handle
289                 created, and those that aren't visible.  But on the flip side,
290                 simplify the code by splitting it into two loops.  one which
291                 builds up the list of child controls we're interested in, and the
292                 other that sets the z order of those children.
293
294         2007-02-14  Chris Toshok  <toshok@ximian.com>
295
296                 * Control.cs: Control.AccessibilityObject causes the control to be
297                 created, not just the handle.
298
299         2007-02-14  Chris Toshok  <toshok@ximian.com>
300
301                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
302                 problem on X where a window might have its handle created (and be
303                 visible) while the window is unmapped.  calling XConfigureWindow
304                 on an unmapped window is bad, and generates X errors.
305
306         2007-02-13  Chris Toshok  <toshok@ximian.com>
307
308                 * Control.cs (CreateHandle): don't loop over our children setting
309                 their parent here.  do it when in WndProc when we're shown.
310                 (UpdateChildrenZOrder): make this internal so we can call it from
311                 ScrollableControl.
312                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
313                 creating its handle.  Also, remove the calls to PerformLayout from
314                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
315                 OnVisibleChanged only seems to be called directly here for the
316                 toplevel control.  It's propagated down the window hierarchy by
317                 calls to child.OnParentVisibleChanged.
318                 (OnVisibleChanged): don't do layout here - it's done (oddly
319                 enough, according to a glance at stack traces on ms.net..) in
320                 ScrollableControl.
321                 
322                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
323                 z order of our children before calling PerformLayout.
324
325         2007-02-12  Chris Toshok  <toshok@ximian.com>
326
327                 [big change, fixes #80020]
328                 
329                 * AccessibleObject.cs: we need to make owner internal again to fix
330                 some of ControlAccessibleObject.
331
332                 * Control.cs: lots of changes here.  add support for WM_CREATE,
333                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
334                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
335                 we create child controls.  leave the MonoTODO's for the
336                 accessibility calls, but fix the exceptions so the tests pass.
337
338                 Add the InvalidOperationExceptions to Invoke methods, and remove a
339                 couple of InvokeInternal methods we aren't using.
340                 
341                 Also, add a couple of CreateHandle calls in places where we know
342                 the handles are being created but our code doesn't reference
343                 .Handle.
344
345                 Make SetVisibleCore call OnVisibleChange if the handle isn't
346                 created.  If the handle is created, we rely on XplatUI.SetVisible
347                 generating the event synchronously.
348                 
349                 Lastly, make sure we don't use this.Handle inside CreateHandle,
350                 because we can call back into client (and that code can dispose of
351                 the control).
352
353                 * XplatUIStructs.cs: misc/cleanup.
354
355                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
356                 although we don't populate the wParam properly.
357                 (CreateWindow): generate WM_CREATE.
358                 (MapWindow,UnmapWindow): make these calls synchronous, at great
359                 performance expense (particularly in the unmap case), to match
360                 win32 behavior.
361
362                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
363                 to call it.
364                 (set_MdiParent): don't recreate the handle unless it's been
365                 created already.
366                 
367                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
368                 it's created.
369
370                 * NativeWindow.cs: this is probably the weirdest part of the
371                 patch.  We need a way to link up the window being created to the
372                 WM_CREATE message.  Since we can only be creating one window at a
373                 time on a given thread, we keep track of a per-thread reference so
374                 we can dispatch it properly.  We also need to keep track of the
375                 Hwnd currently being created so that the win32 backend doesn't
376                 have problems.
377                 
378                 * XplatUIWin32.cs: a similar change to the one we made in
379                 NativeWindow.cs.
380
381 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
382
383         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
384         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
385         to draw the menu shortcut string.
386
387 2007-03-07  Jackson Harper  <jackson@ximian.com>
388
389         * TreeNode.cs: Add the 2.0 collapse method.
390
391 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
392
393         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
394
395 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
396
397         * DataGridView.cs: Change DataSource will clear column and row
398         lists. Call Invalidate() to reflect DataSource change.
399
400 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
401
402         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
403         and a new row is added to it.
404
405 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
406
407         * DataGridView.cs: Add columns when DataSource is en empty list but
408         is a System.Data.DataView (from a System.Data.DataTable).
409
410 2007-03-06  Andreia Gaita  <avidigal@novell.com>
411
412         * Label.cs: Implement AutoEllipsis (2.0)
413
414 2007-03-06  Jackson Harper  <jackson@ximian.com>
415
416         * TreeView.cs: Implement 2.0 TopNode setter property.
417         - Use a local var instead of the skipped_nodes field for computing
418         how many nodes to skip.  Otherwise we won't scroll because the
419         valuechanged handler checks if skipped_nodes is equal to the new
420         value.
421         - Implement 2.0 Sort method.
422         - Add useless 2.0 DoubleBuffer property
423         - Implement 2.0 LineColors property.  Lets you change the color of
424         the lines in the tree. Terribly useful for creating non cohesive
425         desktops.
426         - Implement 2.0 image key feature.
427
428 2007-03-06  Jackson Harper  <jackson@ximian.com>
429
430         * TreeView.cs: We can't get the bounds of the nodes before raising
431         the AfterSelect event, because that event could change the node's
432         bounds (scrolling, font change, etc).
433
434 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
435
436         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
437         * Form.cs: Don't recreate handle when creating FormWindowManager, just
438           update window styles. In CreateParams us VisibleInternal instead of
439           VIsible to get the actual visible flag set for this form.
440         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
441           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
442           handle the case when the form is already maximized, in which case
443           it should be restored. Fixes #81043.
444
445 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
446
447         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
448
449 2007-03-05  Jackson Harper  <jackson@ximian.com>
450
451         * TreeViewHitTestInfo.cs: implement.
452
453 2007-03-05  Jackson Harper  <jackson@ximian.com>
454
455         * InternalWindowManager.cs: class status fix.
456
457 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
458
459         * InternalWindowManager.cs: All windows that have a parent
460         are confined to their parent when they're being moved.
461         Fixes #80822.
462
463 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
464
465         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
466         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
467
468 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
469
470         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
471           buttons invisible before deciding which ones should be visible
472           (fixes minimize/maximize buttons showing up in toolwindows). Remove
473           an unused variable.
474         * InternalWindowManager.cs: Remove warning.
475
476 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
477
478         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
479         to throw an InvalidOperationException is virtual mode is being used.
480
481 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
482
483         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
484         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
485         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
486         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
487         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
488         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
489
490 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
491
492         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
493           driver.KeyboardDelay from XplatUI.KeyboardDelay 
494         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
495           (patch by Sergey Volk)
496
497 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
498
499         * ToolWindowManager.cs: Added, contains logic for
500           tool windows.
501         * CreateParams.cs: Add a few helper methods and an
502           internal variable to know which control the CreateParams belongs
503           to.
504         * Control.cs: Call Form.ChangingParent when the
505           parent is about to be changed.
506         * XplatUIX11.cs: DeriveStyles (): Set
507           caption_height for all windows that have captions and are children.
508           Update to use ToolWindowManager instead of InternalWindowManager
509           for ToolWindows.
510         * XplatUIWin32.cs: Set fake window styles for all
511           windows that have window managers.
512         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
513           now duplicated for mdi windows when they are
514           maximized, first for the buttons the window itself has, then for
515           the buttons that appear in the menu bar. Makes things a little
516           easier). Updated UpdateWindowDecorations, SetWindowState and the
517           mouse eventhandlers accordingly.
518         * Form.cs: Add ChangingParent (), contains the
519           logic of what should happen when the parent changes. In MdiParent
520           don't set things that ChangingParent () is doing. When handling
521           WM_CLOSE, we can close the form if there are any other modal forms
522           and the current form is a descendent of the modal form.
523         * InternalWindowManager.cs: A lot of refactoring,
524           the title buttons are now extracted to a separate container class
525           that takes care of all button code (clicks, tooltips, etc). Moved
526           Iconic|Maximized|Normal Bounds properties to this class from
527           MdiWindowManager, so that the window state logic can succeed for
528           other than mdi wm's. Implemented general window state change logic.
529           Moved CreateButtons to ThemeWin32Classic, since the theme might
530           override which buttons are available when as well as the exact
531           location.
532         * FormWindowManager.cs: Added, contains logic for
533           normal forms.
534         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
535           which buttons go where (and if they are at all visible). 
536           Removed special handling of maximized windows, since they aren't special. 
537           In DrawManagedWindowDecorations don't try to draw the text if it is
538           empty.
539         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
540           use whatever the wm gives us.
541
542 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
543
544         * ButtonBase.cs: Add 2.0 properties.
545         * Button.cs: Override Draw for 2.0.
546         * Control.cs: Add Entered and Selected properties.
547         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
548         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
549         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
550         buttons.
551         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
552
553 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
554
555         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
556
557 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
558
559         * XplatUIWin32.cs: Register a new class with Windows each time we get
560         a new ClassStyle.  [Fixes bugs #79432, #80817]
561         * Controls.cs: Set the correct ClassStyle in CreateParams.
562         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
563
564 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
565
566         * ListView.cs: Add fireEvent argument to ReorderColumn since the
567         ColumnReordered event must not be signaled when modifying DisplayIndex
568         of a ColumnHeader. Added internal ReorderColumns method which takes
569         care of drawing, and updating the internal DisplayIndex of the
570         ColumnHeader. Added AddColumn method which is invoked from
571         ColumnHeaderCollection when adding or inserting columns, and which
572         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
573         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
574         Recalculated dispay indices after removing a ColumnHeader.
575         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
576         match MS. Allows last display index to be returned after ListView
577         is disposed. Update actual location of ColumnHeader when DisplayIndex
578         is modified.
579
580 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
581
582         * LinkLabel.cs: Improve CalcTrimRectangle.
583         
584         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
585
586 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
587
588         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
589         get rectangle as a result value.
590
591 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
592
593         * LinkLabel.cs: Theres some diferences between rectangle return from 
594         MeasureCharacterRanges and the area used for DrawString to fix this 
595         CalcMeasurementFactor method was created, it calcules the diferences
596         to be use later to adjust rectangle in draw operations. Fixes #80473.
597         
598         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
599         to adjust draw rectangle.
600
601 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
602
603         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
604         text and some other changes to reduce and optimize source code.
605
606 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
607
608         * RadioButton.cs: Implement 2.0 event.
609         * RelatedImageListAttribute.cs: Implement new class.
610
611 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
612
613         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
614
615 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
616
617         * CheckBox.cs: Implement 2.0 functionality.
618
619 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
620
621         * ListView.cs: Refactor Add and AddRange methods of
622         ListViewItemCollection, to not update the ListView
623         everytime an item is added in AddRange. Also move the update
624         code to a new CollectionChanged method, and call it
625         from other methods that need it as well (this should also fix some
626         bugs when Sorting is used).
627
628 2007-02-27  Jackson Harper  <jackson@ximian.com>
629
630         * TextControl.cs: Try to never let the caret stay in a non-text
631         tag.
632         * TextBoxBase.cs: Update the caret.
633
634 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
635
636         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
637         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
638         delete POINT structure, duplicate of one in XplatUIStructs.
639         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
640
641 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
642
643         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
644         edit box since otherwise the Label would immediately be set (even if
645         the user did not modify the label). In OnKeyDown set Handled to true
646         if Return or Escape was pressed. In ColumnHeaderCollection unlink
647         columns that are to be removed. In ListViewItemCollection unlink items
648         that are to be removed.
649
650 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
651
652         * TextRenderer.cs: If we set a GDI clip region, we need to clear
653         it when we are done.  [Fixes bug #80949]
654
655 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
656
657         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
658
659 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
660
661         * ListView.cs: I forgot to commit the changes for ListView 
662         in my previous patch.
663
664 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
665
666         * Clipboard.cs: Partially implement an overload of SetDataObject.
667         * Form.cs: Implement ShowWithoutActivation.
668         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
669
670 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
671
672         This is a first set of changes to make the Virtual mode works,
673         by avoiding the retrieval of ListViewItem instances until
674         draw time.
675
676         * ListView.cs: Store item position in the ListView instead of the
677         ListViewItem, this way we don't request the Bounds property of
678         ListViewItem inside the ListView calculations, as well as cache the item
679         size in item_size field. Store indexes instead of ListViewItem
680         instances in the matrix used by icon view. Add a ItemMatrixLocation
681         struct to hold the row and col info of the matrix info.
682
683         * ListViewItem.cs: Don't store the location anymore, and only cache
684         the rectangles for GetBounds. Use the ListView.GetItemLocation
685         method to retrieve the actual location.
686
687 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
688
689         * TextRenderer.cs: Add clipping support, thanks to George.
690         [Fixes bug #80949]
691
692 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
693
694         * ListViewItem.cs: Cancel label edit when item is removed from 
695         ListView.
696         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
697         event before the edit textbox is displayed.  Added CancelEdit method
698         which is used end to editing while ignoring the value set by the
699         user. In EndEdit, set focus to ListView to avoid losing focus to
700         other controls. In ListViewItemCollection.Clear, cancel editing of
701         any of the items.  In Remove, cancel editing of item being removed.
702         Avoid udplicate code by modifing RemoveAt to invoke Remove.
703
704 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
705
706         * FileDialog.cs: Update FSEntry when move is successful. Fixes
707         bug #80948.  
708
709 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
710
711         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
712         compatible with non X11 systems. Fixes #80901.
713
714 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
715
716         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
717         whether the item should be unselected and reselect. We do no want this
718         when we're starting to edit the label. Do not fire the 
719         SelectedIndexChanged event from ListView when its already been fired
720         by modifying ListViewItem.Selected. Fixes bug #80943.
721
722 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
723
724         * TextRenderer.cs: Previos commit logic was backwards.
725
726 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
727
728         * TextRenderer.cs: Don't add padding on MeasureText if we were
729         sent the NoPadding flag.
730
731 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
732
733         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
734         after DrawButton. To prevent image overlaps button borders SetClip and 
735         ResetClip added before and after draw image. Fixes #79129.
736
737 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
738
739         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
740         window size, it fix problem when you run under win32 that theres
741         Size diferent than ClientSize. Also fix controls size and positions
742         to mimic Win32. Fixes #80837.
743
744 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
745
746         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
747         menu area to fix some problems for non X11 systems. Fixes #80613.
748
749 2007-02-22  Jackson Harper  <jackson@ximian.com>
750
751         * TreeNode.cs: When a node is expanded, set its is_expanded flag
752         even if it doesn't have any children.
753
754 2007-02-22  Jackson Harper  <jackson@ximian.com>
755
756         * TreeView.cs: Calculate the top node 'on the fly', this
757         eliminates issues where you need to click on the tree before
758         scrolling it to get the top node computed correctly.
759         * TreeNodeCollection.cs: We don't need to mess with the top node
760         anymore.
761
762 2007-02-22  Jackson Harper  <jackson@ximian.com>
763
764         * DataGridViewRow.cs: Fix typo so height can actually be set.
765         Patch by Peter Grimm.
766
767 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
768
769         * FileDialog.cs: Fixed support for renaming files and directories.
770         * ListView.cs: Do not lose focus when edit is canceled. Process
771         Escape as regular key (to prevent closing of dialogs).
772
773 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
774
775         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
776         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
777
778 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
779
780         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
781         did not modify label.
782         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
783         modified the text. Reset Label when user presses Escape in edit mode.
784         Move focus to ListView after having cancelled or finished editing the
785         label.
786
787 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
788
789         * ComboBox.cs: Removed unnecessary initializations. Marked items field
790         private. Clear textbox when Text is set to null and SelectedIndex is
791         already -1.
792         * FileDialog.cs: Removed unnecessary initializations. Removed 
793         workarounds for ComboBox bugs that are now fixed. Modified
794         DefaultExt, InitialDirectory and Title property to change null to
795         zero-length string in getters. Avoid directly accessing fields.
796
797 2007-02-20  Jackson Harper  <jackson@ximian.com>
798
799         * TextControl.cs: Remove RecalAlignments call, that was some
800         debugging leftovers.
801         - Don't use the line indent when we shouldn't.
802         * RichTextBox.cs: Add support for paragraph left indents.
803
804 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
805
806         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
807         Seems like the class status pages doesn't catch params differences.
808
809 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
810
811         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
812
813 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
814
815         * ComboBox.cs: Setting Text should have no effect if item text of
816         selected item exactly matches value. First lookup text using
817         case-sensitive comparison, and fallback to case-insensitive comparison.
818         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
819         allow startIndex to be last index. Changed ArgumentOutOfRangeException
820         paramname to match MS. Restart from first item if string is not found
821         after startIndex. Fixed paramname of ArgumentNullException that is
822         thrown for null value in ObjectCollection.Contains.
823
824 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
825
826         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
827
828 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
829
830         * ListControl.cs: In SelectedValue use value.Equals to compare for
831         equality instead of ==, otherwise it will fail for strings.
832         Fixes #80794.
833
834 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
835         
836         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
837         since the caret won't show up unless ShowSelection is true. 
838         Fixes #80795.
839
840 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
841
842         * Application.cs: When disabling all forms but the main form, do not
843           disable any descendants of the main form (such as mdi children or
844           other parented forms). Fixes #80822 on Windows.
845         * Form.cs: If we have a parent, set the WS_CHILD style.
846         * Control.cs: Update the window styles if the control whose parent has
847           changed is a form (the WS_CHILD style has to be switched).
848
849 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
850
851         * XplatUIStructs.cs: MsgUIState structure added.
852
853 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
854
855         * FileDialog.cs: Removed need for separate fileName field. On 2.0
856         profile, do not check filename(s) for illegal character if filename(s)
857         were set non-interactively but always check on 1.0 profile. Fixed NRE
858          in DefaultExt and only strip off first leading dot. Improve exception
859         message when invalid Filter is set. Do not ignore InitialDirectory if
860         it does no exist. Store specified Title, and if empty use default
861         title (depending on type of dialog). Added an internal DialogTitle 
862         property for retrieving dialog title. Fixed logic of displayed dir to
863         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
864         string as its buggy.
865         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
866         FileName is a zero-length string (it can never be null). Override 
867         DialogTitle property to set default title of dialog box.
868         * SaveFileDialog.cs: Override DialogTitle property to set default
869         title of dialog box.
870
871 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
872
873         * FileDialog.cs: Modify default text of filename and filetype labels
874         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
875         after we've updated the SelectedIndex. Fixes part of bug #80887.
876         * SaveFileDialog.cs: Set text of filetype label.
877
878 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
879
880         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
881         label field. Needed by latest Jackson's fixes for ListView.
882
883 2007-02-16  Andreia Gaita  <avidigal@novell.com>
884
885         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
886         print preview images.
887
888 2007-02-16  Jackson Harper  <jackson@ximian.com>
889
890         * ListView.cs: Make AfterLabelEdit work correctly.
891         * FileDialog.cs: After changing the name of the folder, we have to
892         make sure that it is created, or that we pop up an error because
893         it already exists.
894
895 2007-02-16  Jackson Harper  <jackson@ximian.com>
896
897         * X11Dnd.cs: Implement aliases on mime handlers, so things like
898         System.String are mapped to text.
899         - Handle dataobjects, getting all the possible formats out of them
900         - We dont need the drag event args before we give feedback. This
901         allows feedback cursors to be immediate before selections have
902         been converted.
903
904 2007-02-16  Jackson Harper  <jackson@ximian.com>
905
906         * TextBoxBase.cs: Modified the method for inserting images to
907         taking a line and position instead of tag and position.
908         * RichTextBox.cs: Handle PngBlip data by inserting the png image
909         into the RTF file.
910         * TextControl.cs: Allow images to be inserted as the first tag of
911         a line.
912         - Fix some off by one issues when we assume the first tag is a
913         text tag, not an image tag.
914
915 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
916
917         * ListView.cs: Set focus to ListView when ItemControl gets a
918         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
919         Fixes part of #80467.
920
921 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
922
923         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
924           validate Text input (if null or empty string reset Value to default
925           value). Fixes #80830.
926
927 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
928
929         * ListView.cs: Set owner as null for columns and items when
930         Dispose is invoked. Fixes #80607.
931
932 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
933
934         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
935         showing DropDowns, don't show a Grip when doing Flow layout.
936         [This fixes the toolbox in PDN 2.72.]
937         * ToolStripItem.cs: Add Anchor property and some internal properties to
938         reduces needed changes to FlowLayout.
939         * ToolStripOverflow.cs: Remove unused variable.
940         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
941         use it in the layout calculations.
942
943 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
944
945         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
946         reported in #79640.
947         
948         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
949         size calculation.
950
951 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
952
953         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
954         MeasureString format, it can make button very large in some cases, it is
955         strange but is what win32 do.
956
957 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
958
959         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
960         size calculation.
961
962         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
963         rendering, the value is based on MenuAccessKeysUnderlined.
964
965 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
966
967         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
968         for most themes.
969         
970         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
971         
972         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
973         and use MenuAccessKeysUnderlined instead.
974
975 2007-02-13  Andreia Gaita  <avidigal@novell.com>
976
977         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
978         A selected control would not get a Focus call if:
979                 - the default active control of the container is the same as
980                   the one that was selected
981                 - we are switching from one container to another
982         Under these conditions, the container being selected already has
983         an active_control, which is the same as the one being activated, 
984         so set_ActiveControl would always return and not send the Focus
985         call. Fix to check if the currently active control of the container
986         is actually focused.
987
988 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
989
990         * StatusStrip.cs: Implement the spring layout.
991         * ToolStripControlHost.cs: Make sure the hosted control's visibility
992         always matches the host.
993         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
994         and TextAfterImage.
995
996 2007-02-13  Andreia Gaita  <avidigal@novell.com>
997
998         * Control.cs: Code reorganization only.
999           - Reorganize the WndProc cases so that each case has it's own handling method, 
1000           to help with the no-line-numbering stack traces.
1001           - Formatting changes (it's vstudio's fault, really :p)
1002
1003 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1004
1005         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
1006           Thread.CurrentUICulture to match DateTimePicker's (and MS)
1007           behaviour.
1008
1009 2007-02-12  Jackson Harper  <jackson@ximian.com>
1010
1011         * RichTextBox.cs:
1012         * TextBox.cs: By default we have a non multiline document
1013         - use the multiline property instead of the internal variable
1014         * TextBoxBase.cs: Treat multiline and non multiline the same in
1015         most places.
1016         - Use the documents multiline flag instead of tracking it ourself
1017         * TextControl.cs: Attempt at getting multiline to match MS
1018         behavior.  Lines now track an offset, which is either their X or Y
1019         offset depending on whether or not we are in multiline mode.
1020         - Update all the methods to understand that lines have an X value.
1021         - Fix crash in Undo::Duplicate when empty lines are deleted.
1022
1023 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1024
1025         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
1026         code moved to properties PreferredHeight and PreferredWidth. It solve the
1027         all problems when preferred sizes must be recalculated. Fixes #80801.
1028
1029 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
1030
1031         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
1032         font height when compatible_text_rendering is false. Partially fix #80801.
1033
1034 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1035
1036         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
1037
1038 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1039
1040         * Form.cs: Improved exception messages in ShowDialog.
1041
1042 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
1043
1044         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
1045         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
1046         if not set. Fixes bug #80764. Avoid accessing current_settings field
1047         directly.
1048
1049 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
1050
1051         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
1052         false.
1053
1054         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
1055         public in 2.0 and for easy maintenance and dont break compatibility it is 
1056         internal in 1.1.
1057         
1058 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1059
1060         * ToolStripItem.cs: Implement using images from ImageList.
1061
1062 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1063
1064         * DateTimePicker.cs: Change default date-formatting culture from
1065           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
1066           seems to be the way MS does it.
1067
1068 2007-02-08  Andreia Gaita  <avidigal@novell.com>
1069
1070         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
1071         (the 6 was cut off on the right side)
1072
1073 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1074
1075         * Form.cs: Tell MenuStrips to close when the form is clicked.
1076         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
1077         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
1078         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
1079         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
1080         support for Overflow, where items that do not fit are automatically
1081         reparented to a drop down menu.
1082         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
1083         Also: fixes bug #80747.
1084
1085 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1086
1087         * ComboBox.cs: Remove warning (unused code).
1088         * ScrollableControl.cs: Remove warning for 1.1 profile.
1089
1090 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1091
1092         * Form.cs: Remove a warning.
1093
1094 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1095
1096         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
1097           'g' specifier, not documented anywhere, but seems to always show up
1098           as a single space (might have something to do with the DateTime 'g'
1099           specifier, which is the era format, but since DateTimePicker can't
1100           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
1101           won't crash if the format has an unmatched quote. Now shows
1102           single-character formats correctly. Fixes #80744.
1103
1104 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
1105
1106         * StatusStrip.cs: Stretch property needs to call base.Stretch,
1107         not this.Stretch to fix stack overflow. [Fixes bug #80760]
1108
1109 2007-02-07  Chris Toshok  <toshok@ximian.com>
1110
1111         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
1112         background color.  it overwrites the background image we've
1113         already painted.  Fixes #80599.
1114
1115 2007-02-07  Chris Toshok  <toshok@ximian.com>
1116
1117         * DataGrid.cs: return immediately from Edit() when there are no
1118         columns.  Fixes #80662.
1119
1120 2007-02-07  Chris Toshok  <toshok@ximian.com>
1121
1122         * MessageBox.cs: fix #80625.  don't always show the Help button in
1123         2.0.  use the displayHelpButton parameter to determine if we
1124         should show it. Also, make the internal show_help field private.
1125
1126 2007-02-07  Chris Toshok  <toshok@ximian.com>
1127
1128         * Control.cs (SetVisibleCore): check in the proposed patch for
1129         80604, and set is_visible before calling CreateControl.
1130
1131 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
1132
1133         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
1134         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
1135         on it.
1136
1137 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
1138
1139         * MenuAPI.cs: hotkey_active internal field added, it is required because
1140         we need to know when hotkeys must be draw, before this change a keystate
1141         Navigating was used but we can have menu in navigating state without
1142         hotkeys. Fixes #80694.
1143         
1144         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
1145
1146 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1147
1148         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
1149           corresponding events and methods to be internal for 1.1 profile and
1150           public for 2.0 profile (required by SizeGrip).
1151         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
1152           implicit control list). Don't set the size nor the location of the
1153           SizeGrip anymore as it's not needed.
1154         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
1155           draw directly on the captured control (fixes #80656). Removed
1156           ShowGrip (it wasn't used anywhere), redraw (always true), added
1157           GetDefaultSize and GetDefaultRectangle to calculate defaults.
1158         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
1159           be called from SizeGrip.
1160
1161 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1162
1163         * Timer.cs: Throw ArgumentException if Interval <= 0.
1164
1165 2007-02-05  Jackson Harper  <jackson@ximian.com>
1166
1167         * TreeView.cs: We need to check scrollbar visibility when window
1168         visibility is updated, because non visible trees don't ever add
1169         scrollbars.
1170         * Cursor.cs: We want the override cursor to be reset to NULL when
1171         we set current cursor to the default cursor.
1172
1173 2007-02-05  Jackson Harper  <jackson@ximian.com>
1174
1175         * TextControl.cs: Don't have crlfs when we are non multiline.
1176         - Consolidate the line position.
1177
1178 2007-02-05  Jackson Harper  <jackson@ximian.com>
1179
1180         * X11Keyboard.cs: BACK+CTRL gets a special char code.
1181
1182 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1183
1184         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
1185           handling LeaveNotify->NotifyUngrab in order to send
1186           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
1187           after calling XUngrabPointer, so we call WindowUngrabbed directly
1188           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
1189         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
1190           MouseCaptureChanged correctly. Also create handles if changing
1191           Capture (matches MS behaviour).
1192
1193 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1194
1195         * SizeGrip.cs: Make the last change 2.0 only.
1196
1197 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1198
1199         * SizeGrip.cs: If resizing and the capture is lost, revert any size
1200           changes to initial size (fixes #80597).
1201
1202 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1203
1204         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
1205
1206 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1207
1208         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
1209           background) and only allow dragging if enabled. This way the
1210           sizegrip can be used to fill the open square that otherwise would
1211           have been shown in the bottom right corner of ScrollableControl
1212           when ScrollableControl is not suppose to support sizing.
1213         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
1214           sizegrip is shown and enabled, and hook up with necessary events.
1215
1216 2007-02-01  Chris Toshok  <toshok@ximian.com>
1217
1218         * DataGridTextBoxColumn.cs: clean up the
1219         GetFormattedString/GetColumnValueAtRow combination of functions.
1220         Also fix UpdateUI, and the initial state of
1221         IsInEditOrNavigateMode.
1222
1223         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
1224         aren't supposed to scroll the textbox here, we're supposed to
1225         scroll the datagrid.
1226
1227 2007-02-01  Chris Toshok  <toshok@ximian.com>
1228
1229         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
1230         setting the position.
1231
1232 2007-02-01  Chris Toshok  <toshok@ximian.com>
1233
1234         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
1235         here, since the most recent focus fixes keep us from generating
1236         the Leave event when our textbox gets focus.
1237         (Edit): we should be passing null for the column style's
1238         instantText parameter.
1239         
1240 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
1241
1242         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
1243         raised.  Fixes menu text/icons not showing up in PDN.
1244
1245 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1246
1247         * Control.cs: Remove code in constructor that makes every
1248         control with WS_CHILD set have initial location -1, -1.
1249
1250 2007-01-31  Jackson Harper  <jackson@ximian.com>
1251
1252         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
1253         XplatUIX11.
1254         * XplatUIX11.cs: Give teh keyboard to teh dnd.
1255
1256 2007-01-31  Jackson Harper  <jackson@ximian.com>
1257
1258         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
1259         - Remove some debug code.
1260
1261 2007-01-31  Jackson Harper  <jackson@ximian.com>
1262
1263         * XplatUIX11.cs: If you set the override cursor during a grab, it
1264         should actually override the grab cursor.  This comes into play
1265         when you are setting custom cursors in a DND feedback method.
1266
1267 2007-01-31  Jackson Harper  <jackson@ximian.com>
1268
1269         * X11Dnd.cs: Add support for handling the QueryContinue and
1270         GiveFeedback events.
1271         - Cancel drag and drop actions when the escape key is clicked.
1272         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
1273         can handle the ESCAPE key.
1274         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
1275         done when dnd events are continued after the button is released.
1276         - Add a new helper method so that dnd can translate key events.
1277
1278 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
1279
1280         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
1281         make it more obvious what is happening.
1282
1283 2007-01-30  Jackson Harper  <jackson@ximian.com>
1284
1285         * XplatUIX11.cs: Don't break when handling button release in drag
1286         and drop operations. We need that BUTTONUP message to get through
1287         so capture is released.
1288         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
1289         this is handled automatically when the mouse is down.
1290
1291 2007-01-30  Jackson Harper  <jackson@ximian.com>
1292
1293         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
1294         is closed, so we need to make sure that we aren't changing the
1295         dialog result when the OK (Open or Save) button has been clicked
1296         and we are closing the window ourselves.  Note we don't need to
1297         worry about the cache being written in this case, because it was
1298         already done in the previous FilOk call.
1299
1300 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1301         
1302         * DateTimePicker.cs: Remove a warning.
1303         * ComboBox.cs: Remove a couple of warnings.
1304
1305 2007-01-29  Chris Toshok  <toshok@ximian.com>
1306
1307         * XplatUIX11.cs: don't crash, and remove the icon if the user has
1308         set one, if SetIcon is passed a null icon.
1309
1310 2007-01-29  Andreia Gaita  <avidigal@novell.com>
1311
1312         * TextBox.cs: Redraw when the password characters changes
1313         * TextControl.cs: Check if textbox has a password char and draw 
1314         a line of password chars instead of the text in the line. LineTag gets 
1315         an extra Draw() method which allows document.Draw to override the text 
1316         that will be drawn. Removes 1024 char limitation on length of passworded 
1317         lines.
1318
1319 2007-01-29  Jackson Harper  <jackson@ximian.com>
1320
1321         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
1322         single chars is not.
1323
1324 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
1325
1326         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
1327         one pixel.  Fix a StackOverflowException caused by an overload wrongly
1328         calling itself.
1329
1330 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
1331
1332         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
1333         also remove ProcessArrowKey and put the code inside ProcessKeys.
1334
1335 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
1336
1337         * PaddingConverter.cs: Added.
1338
1339 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1340         
1341         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
1342         ShowPanels is false (fixes #80600). Only draw up to 127 characters
1343         of text (fixes #80601). For panels clip the text to draw to the
1344         panel (fixes #80603).
1345
1346 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1347
1348         * ComboBox.cs: Fixed implementation of ResetText.
1349
1350 2007-01-25  Jackson Harper  <jackson@ximian.com>
1351
1352         * TextControl.cs: For the last char of a line we need to use the
1353         line size, not that chars width, since it won't actually be
1354         computed since the right side of a char is based on the start of
1355         the left side of the next char, and the next char does not exist.
1356
1357 2007-01-25  Chris Toshok  <toshok@ximian.com>
1358
1359         * Splitter.cs: fix the new unit tests, and reindent some switch
1360         statements.
1361
1362 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1363
1364         * ComboBox.cs: Implemented 2.0 methods and events.
1365         * TextBoxBase.cs: Added OnTextUpdate, so that
1366         ComboBox.ComboTextBox can inform ComboBox of it.
1367
1368 2007-01-25  Jackson Harper  <jackson@ximian.com>
1369
1370         * TextControl.cs: Respect ShowSelection when deciding whether or
1371         not to display the caret, this allows comboboxes to have carets
1372         when the combotextbox does not have focus.
1373
1374 2007-01-25  Jackson Harper  <jackson@ximian.com>
1375
1376         * TextControl.cs: Add a Suspend/Resume for updating, basically the
1377         same as the Suspend/Resume for recalc, except this will do actual
1378         Invalidates.
1379         - New Undo manager, works much like the MS version.
1380         - Implemented Redo
1381         * TextBoxBase.cs: The Cut operation is undoable.
1382
1383 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1384         
1385         * TextBoxBase.cs: Don't antialias text. Makes it look way better
1386         on Windows (no difference on Linux).    
1387
1388 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1389
1390         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
1391         we don't want to activate any windows. Fixes #79433.
1392
1393 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
1394
1395         - ButtonBase.cs: Fix capitalization of parameter: disposing.
1396         [Fixes bug #80609]
1397
1398 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
1399
1400         * FileDialog.cs:
1401         - Move to using System.ComponentModel.EventHandlerList
1402         - Replace Refresh with Invalidate
1403         - Clear the mime filecache on closing
1404         - Some other memory reducing work. After beeing closed FD now uses
1405           only about 300 KB for the fdo mime stuff plus the memory of the
1406           cached icons.
1407         * Mime.cs: Changed coding style and removed unnecessary commented
1408         code. Some more memory memory reducing work.
1409
1410 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1411
1412         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
1413         a few other missing 2.0 properties.
1414         * Theme.cs: Added DrawFlatStyleComboBox.
1415         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
1416
1417 2007-01-24  Chris Toshok  <toshok@ximian.com>
1418
1419         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
1420         wake_waiting flag, not just when there's data to be read.  if we
1421         don't, then future wakeup's won't reach us and we'll be doomed to
1422         wait for the entire 1 second timeout forever (unless there are X
1423         events to be had).
1424
1425 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
1426
1427         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
1428         until you pass Items.Count, not Items.Count - 1 like 1.1.
1429
1430 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
1431
1432         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
1433
1434 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
1435
1436         * ToolStripContainer.cs: The recent Dock fix exposed that I was
1437         adding the panels in the wrong order.
1438
1439 2007-01-24  Jackson Harper  <jackson@ximian.com>
1440
1441         * TextBoxBase.cs: When we move the caret we also need to move the
1442         selection, this fixes some random crashing after doing select
1443         text, unselect, delete a char, paste.
1444
1445 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1446
1447         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
1448
1449 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1450
1451         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
1452         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
1453         * ToolBar.cs: Force redraw in BackgroundImageChanged.
1454
1455 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1456
1457         * ToolBar.cs:
1458         - Implement support for vertical toolbars. Fixes #80539;
1459         - Call LayoutToolBar when resize, it fix some other problems in layout.
1460         - Rename requested_height to requested_size, as we can have width on it
1461         when toolbar is vertical.
1462         - Create a private property "Vertical" that uses Dock to verify when 
1463         toolbar is vertical or not.
1464         - Set ControlStyles when change Dock property.
1465         - Refactory in LayoutToolBar to have better variables names and to support
1466         vertical toolbars.
1467         - Fixes default value for ButtonSize when button count is equal zero, size
1468         must be (39, 36) test case writed.
1469
1470 2007-01-23  Chris Toshok  <toshok@ximian.com>
1471
1472         * Control.cs: fix the checks so that they work correctly for mdi
1473         parents/children.
1474
1475 2007-01-23  Chris Toshok  <toshok@ximian.com>
1476
1477         * Control.cs: ControlCollection seems to have super-secret
1478         abstraction breaking knowledge of Mdi containers.  allow MdiClient
1479         to add toplevel controls.
1480
1481 2007-01-23  Chris Toshok  <toshok@ximian.com>
1482
1483         * Control.cs: throw an ArgumentException if a toplevel control is
1484         added to our control collection from ControlCollection.Add, as
1485         well as from ControlCollection.IList.Add.  This fixes the
1486         ControlSetTopLevelTest.TestTopLevelAdd unit test.
1487
1488         Also, in ControlCollection.IList.Add, don't through an
1489         ArgumentNullException, throw an ArgumentException, when value ==
1490         null.  This matches MS.
1491
1492 2007-01-23  Chris Toshok  <toshok@ximian.com>
1493
1494         * BindingSource.cs: initial, incomplete, implementation of
1495         BindingSource.
1496
1497 2007-01-23  Jackson Harper  <jackson@ximian.com>
1498
1499         * TextControl.cs:
1500         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
1501         that I can fix a broken unit test (TextBoxTest::ClearUndo)
1502         
1503 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
1504
1505         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
1506
1507 2007-01-23  Andreia Gaita  <avidigal@novell.com>
1508
1509         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
1510         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
1511         IndexOfKey() for 2.0
1512
1513 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1514
1515         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
1516         to prevent it from changing z-order.
1517         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
1518         leave UI updates in MdiWindowManager.
1519         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
1520         1 sized (NC handling goes weird on Linux otherwise).
1521         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
1522         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
1523         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
1524         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
1525         and SetWindowState(s) to allow for changing the size of an activated child
1526         before activating it (reduces a lot of flicker).
1527
1528 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
1529
1530         * Form.cs: Changing FormBorderStyle has different semantics based
1531         on whether the Form is visible or not.  If not visible, don't change
1532         the Size.  But InvalidateNC needs to be called to force the window
1533         to pick up the changes and redraw itself.  [Fixes bug #80574]
1534
1535 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
1536
1537         [Moma work]
1538         * ContainerControl.cs: ProcessCmdKey.
1539         * ErrorProvider.cs: new constructor.
1540         * Form.cs: fix AutoValidateEvent compiler warning.
1541         * Label.cs: fix OnAutoSizeChanged compiler warning.
1542         * MenuStrip.cs: fix CanOverflow compiler warning.
1543         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
1544         * TextBox.cs: Dispose.
1545         * ToolStrip.cs: CanOverflow, re-enable double buffering.
1546         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
1547         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
1548         * ToolStripItem.cs: Overflow, RightToLeft properties.
1549
1550 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1551
1552         * Form.cs: Move the layout of the main form to MdiWindowManager.
1553         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
1554         do a layout of the main window to update MdiClient's client area to
1555         the right area. Fixes #80533. Remove the calculation of nc size, 
1556         it was just wrong and the correct one is the same as for 
1557         InternalWindowManager. 
1558
1559 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
1560
1561         * Control.cs: Setting Anchor or Dock needs to reset the other
1562         to its default.  [Fixes bug #80556]
1563
1564 2007-01-20  Chris Toshok  <toshok@ximian.com>
1565
1566         * CheckedListBox.cs: class status changes.
1567
1568         * ScrollableControl.cs: same.
1569
1570         * RichTextBox.cs: same.
1571
1572         * ContainerControl.cs: same.
1573
1574         * ListView.cs: same.
1575
1576         * NotifyIcon.cs: same.
1577
1578         * MenuStrip.cs: same.
1579
1580         * RadioButton.cs: same.
1581
1582         * CheckBox.cs: same.
1583
1584         * PrintPreviewDialog.cs: same.
1585
1586         * Form.cs: same.
1587
1588 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
1589
1590         * TreeNode.cs: Apply Alan's patch for Name property.
1591
1592 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1593         
1594         * Form.cs: Implemented SizeGripStyle.
1595         * SizeGrip.cs: Check for minimum and maximum size for the
1596         control being resized and only resize if size has actually
1597         changed.
1598
1599 2007-01-19  Chris Toshok  <toshok@ximian.com>
1600
1601         * DataGridColumnStyle.cs: stop setting _readonly in the
1602         PropertyDescriptor setter.  fixes a unit test failure.
1603
1604         also, rename ParentReadOnly to TableStyleReadOnly, and have it
1605         just consult our table style (if we have one).  We don't need to
1606         consult the datagrid readonly attribute because that's passed in
1607         as the _ro arg to Edit.  this simplifies things a little.
1608         
1609         * DataGrid.cs: use CurrentColumn instead of
1610         current_cell.ColumnNumber just to simplify some of the code.
1611
1612         switch the order of some things in the CurrentCell setter to keep
1613         the previous cell from getting a textbox again -
1614         EnsureCellVisibility causes scrolling to happen, which calls Edit.
1615         So we need to set the new cell before calling it.
1616         
1617         call Edit in OnEnter, as does Microsoft.
1618         
1619         also, make sure the current table style isn't the one we create
1620         initially when checking to see if it's different than the one
1621         we're setting it to in BindColumns (this fixes #80421).
1622
1623         * GridTableStylesCollection.cs: table styles can have "" for a
1624         mapping name.  part of the fix for #80421.
1625
1626         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
1627         Edit significantly.
1628
1629 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1630
1631         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
1632         and less GDI object leaky-er.
1633
1634 2007-01-18  Andreia Gaita  <avidigal@novell.com>
1635
1636         * LinkLabel.cs: Add opaque control style
1637
1638 2007-01-18  Jackson Harper  <jackson@ximian.com>
1639
1640         * TextControl.cs: Calculate width properly.
1641         - Don't store the tag's X offset, this can be figured out very
1642         easily.
1643         - When getting the caret tag make sure to get the last empty tag.
1644
1645 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1646
1647         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
1648         [Fixes bug #79959]
1649
1650         * Control.cs: Color.Empty shouldn't count for previous transparent
1651         redraw changes.
1652
1653 2007-01-18  Jackson Harper  <jackson@ximian.com>
1654
1655         * TextBox.cs:
1656         * RichTextBox.cs:
1657         * TextControl.cs: Starting to merge in some pieces of my older
1658         undo work.  Basically just some slight cleanup of the undo API.
1659
1660 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1661
1662         * TrackBar.cs: Fix signature of RightToLeftLayout.
1663         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
1664         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
1665         * Application.cs: Implemented UseWaitCursor.
1666
1667 2007-01-18  Jackson Harper  <jackson@ximian.com>
1668
1669         * TextControl.cs: We can't skip tags if any part of the tag is
1670         visible.
1671
1672 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1673
1674         * ContainerControl.cs: Override OnLayout.
1675
1676 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1677
1678         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
1679
1680         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
1681         everything else.
1682
1683 2007-01-18  Chris Toshok  <toshok@ximian.com>
1684
1685         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
1686         (leftover from the container_selected days, I'd wager).  fixes bug
1687         #80546.
1688
1689 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1690
1691         * Control.cs: Apply patch from George to fix the new testcase on
1692         bug #80451.  We can't just check for Color.Transparent, we need 
1693         to check if the back color's alpha channel is < 255.
1694
1695 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
1696
1697         * Form.cs: Move setting show_icon = true to before the constructor
1698         so that the base constructor has that information when it calculates
1699         the form's size.  Was causing forms to be (6, 6) bigger than they
1700         were supposed to be.  Thanks for catching this Rolf!
1701
1702 2007-01-18  Jackson Harper  <jackson@ximian.com>
1703
1704         * TextControl.cs: When replacing a selection we need to invalidate
1705         from the initial selection start, because selection start is moved
1706         to the end of the replacement.
1707
1708 2007-01-18  Andreia Gaita  <avidigal@novell.com>
1709
1710         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
1711
1712 2007-01-18  Chris Toshok  <toshok@ximian.com>
1713
1714         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
1715         I just added.
1716
1717 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
1718
1719         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
1720         layout methods and properties from ToolBarButton must be available
1721         into ToolBarButtonInfo.
1722
1723 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1724
1725         * Control.cs: If the control has a transparent background, we
1726         need to refresh it when it moves and when it's parent's background
1727         image changes.  [Fixes bug #80451]
1728
1729 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1730
1731         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
1732
1733 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
1734
1735         * XplatUIWin32.cs: Implement proper double buffering for Windows.
1736         [Fixes bug #80447, and probably speeds up things as well]
1737
1738 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1739
1740         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
1741         * XplatUIWin32.cs: We need to recalculate NC size after changing 
1742         window style to toolwindow (otherwise the client rectangle will be
1743         3 pixels to small for some reason).
1744         * MdiWindowManager.cs: Revert NC size calculations to match how
1745         they are calculated only based on window styles (to match
1746         Win32AdjustWindowRectEx, since otherwise when setting size or 
1747         location, Control will call Win32AdjustWindowRectEx to update client 
1748         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
1749         calculate a different value of client size causing another paint 
1750         (and flickering))
1751         * InternalWindowManager.cs: When moving or resizing a window only
1752         update size or location if they actually changed.
1753         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
1754         (seems to match Windows behaviour better). Cleaned up 
1755         ManagedWindowDecorations to draw what's needed and nothing else
1756         (was drawing borders and lines where they shouldn't be)
1757         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
1758         (style = 0xFFFF) and takes into account caption height when 
1759         calculating window rectangle.   
1760
1761 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1762
1763         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
1764         can be added to toolbar multiple times, we need to maintain a list of 
1765         button information for each positions.
1766
1767 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
1768
1769         * ToolBar.cs: Some small stetic changes.
1770
1771 2007-01-16  Jackson Harper  <jackson@ximian.com>
1772
1773         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
1774         that allow us to have nested recalc = false blocks.
1775         - Add paste support for images in the RichTextBox
1776         * RichTextBox.cs: flush the text after the color is changed, so
1777         the change takes effect.
1778         - Use SuspendRecalc
1779         - Some extra debugging info
1780         * TextControl.cs: Tags no longer track their length, it is just
1781         computed from the next tags length, this makes things a little
1782         simpler and reduces places that we have to track length changes.
1783         - Refactored the linetag class a little so we could make it
1784         a base class for different kinds of tags
1785         - Created a image tag, a tag that can have a single image inserted
1786         into it
1787         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
1788         that we can call suspend multiple times.
1789         - Add some debugging methods
1790
1791 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1792
1793         * MdiClient.cs: Add ActivatePreviousChild for 
1794         mdi child window navigation.
1795         * Form.cs: Use MdiClient.ActivateNextChild/
1796         ActivatePreviousChild instead of Form.SelectNextControl
1797         to select the next/previous child since 
1798         SelectNextControl doesn't do it in the same order
1799         as mdi children should do it.
1800
1801 2007-01-16  Chris Toshok  <toshok@ximian.com>
1802
1803         * Control.cs: remove container_selected field.
1804
1805 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1806
1807         * MdiClient.cs: Update main form's ActiveChild when
1808         updating keyboard focus for the mdi child.
1809
1810 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
1811
1812         * Control.cs: PreferredSize fix.
1813
1814         * Form.cs: Add several 2.0 events, properties, and methods.
1815
1816 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
1817
1818         * Form.cs: Provide meaningful message when MdiParent is assigned a
1819         Form that is not an MdiContainer.
1820
1821 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1822
1823         * MdiClient.cs: Update main form's ActiveChild when
1824         activating a mdi child.
1825
1826 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1827
1828         * MdiWindowManager.cs: Fix NRE when merging menus and main form
1829         doesn't have a menu.
1830
1831         * Form.cs: Request NCRecalc after creating a mdi child window.
1832         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
1833         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
1834         
1835         * MdiClient.cs: Add new method SendFocusToActiveChild that either
1836         sends keyboard focus to the active child, or to the MdiClient
1837         if there are no child forms.
1838         
1839 2007-01-15  Chris Toshok  <toshok@ximian.com>
1840
1841         * ListView.cs: drop the *Internal overrides, just do our work in
1842         ItemControl's WndProc instead.
1843
1844         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
1845         of the various controls, and forward the events properly (in the
1846         same manner as MS) from the textbox to the UpDown.  Also the
1847         ActiveControl of the UpDownBase gets set properly now.  Finally,
1848         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
1849
1850         * NumericUpDown.cs: set Text in the ctor.
1851
1852         * DomainUpDown.cs: call UpdateEditText in the ctor.
1853         
1854         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
1855         so even a Selectable = false textbox can be focused if you click
1856         in it.  Go figure.
1857
1858         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
1859         just add their handling in their respective WndProc's.  Also add
1860         an explicit FocusInternal method that doesn't consult CanFocus
1861         before calling Select(this).
1862
1863         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
1864         do our work in WndProc instead.
1865
1866         * TabControl.cs: same.
1867
1868         * ComboBox.cs: same.
1869
1870 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1871
1872         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
1873         Fixes #80006.
1874
1875 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
1876
1877         * ListViewItem.cs:
1878         * ThemeWin32Classic.cs: Don't draw the item text outside
1879         item bounds in Details view, as well as use trimming.
1880         Fixes bug #80376.
1881
1882 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1883
1884         * Form.cs: Implement Form.ShowIcon.
1885         
1886         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
1887         null, which when combined with the DlgModalFrame window style removes
1888         the icon from the title bar.
1889
1890 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1891
1892         * Control.cs: Call OnMouseClick after OnClick. (2.0)
1893
1894 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1895
1896         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
1897         menu when mdi child windows theres a menu, uses insert to get icon
1898         at first position. Partially fix #80006.
1899
1900 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
1901
1902         * Clipboard.cs: Implement 2.0 methods.
1903
1904 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
1905
1906         * Menu.cs: Implement Insert method of MenuItemCollection class
1907         to fix MenuMerge.
1908
1909 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1910
1911         * ListView.cs: Implement 2.0 FindItemWithText method.
1912
1913 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
1914
1915         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
1916         to calculate menu bar size. Fixes #80290.
1917
1918 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
1919
1920         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
1921
1922 2007-01-11  Chris Toshok  <toshok@ximian.com>
1923
1924         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
1925         initial form.
1926
1927 2007-01-11  Chris Toshok  <toshok@ximian.com>
1928
1929         * LinkLabel.cs: make sure to call base.Select in our Select method
1930         if it turns out we're going to be selected (i.e. if we have a link
1931         that is going to receive focus).  That way our container's
1932         ActiveControl is updated properly.
1933
1934 2007-01-11  Chris Toshok  <toshok@ximian.com>
1935
1936         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
1937         they have 1 or more links.  this fixes the crash gert reported.
1938
1939 2007-01-11  Andreia Gaita  <avidigal@novell.com>
1940
1941         * ContainerControl.cs: Remove ContainerSelected flag, not needed
1942         anymore.
1943
1944         * Control.cs (Controls.Add): Check if control to be added to the collection
1945         is a top level control, and throw an ArgumentException if it is.
1946         Remove ContainerSelectedFlag, not needed anymore.
1947
1948         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
1949         top most control doesn't activate the form. This fixes a problem in the
1950         MessageBox, where the default button wouldn't get focus because the form
1951         was activated before being Loaded - when the Owner is set, SetTopMost is
1952         called, and it would activate it.
1953
1954 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
1955
1956         * Button.cs: When clicked and setting the parent form's DialogResult,
1957         use FindForm instead of Parent, since parent could be a container
1958         control and not the Form.  Fixes bug #80495.
1959
1960 2007-01-10  Chris Toshok  <toshok@ximian.com>
1961
1962         * Form.cs: move the call to SendControlFocus into the same
1963         is_loaded check.
1964
1965 2007-01-10  Chris Toshok  <toshok@ximian.com>
1966
1967         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
1968         It breaks in the face of the new ActiveControl stuff, and should
1969         be unnecessary.
1970
1971         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
1972         activecontrol's focus if it's not already set, after we set
1973         ActiveControl, but before we call OnActivated.  Re-fixes #79667
1974         after the previous focus/active control fixes regressed it.
1975
1976         * Control.cs: reindent some code.
1977         
1978 2007-01-10  Chris Toshok  <toshok@ximian.com>
1979
1980         * Splitter.cs: clearing some outstanding changes from my tree.
1981         Replace all accesses (not writes) to the internal dock_style field
1982         with the Dock property.
1983
1984 2007-01-10  Chris Toshok  <toshok@ximian.com>
1985
1986         * Control.cs: make FireEnter, FireLeave, FireValidating, and
1987         FireValidated virtual.
1988
1989         * Form.cs: override and don't chain up calls to FireEnter and
1990         FireLeave.
1991
1992 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1993
1994         * ListView.cs: Add more text padding space when using
1995         auto resize for columns (the previous value didn't work fine).
1996
1997         * ThemeWin32Classic.cs: Update text position inside columns,
1998         to match the appeareance of .Net.
1999
2000         * ColumnHeader.cs: When using auto resize, only the Width should
2001         depend on the sub items, not the Height. Also, set width after
2002         auto resizing (the value of Width should never remain as -1 or -2).
2003
2004 2007-01-10  Chris Toshok  <toshok@ximian.com>
2005
2006         * Application.cs: fix compilation errors when debug is enabled.
2007
2008 2007-01-10  Chris Toshok  <toshok@ximian.com>
2009
2010         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
2011         add some nice ascii art pictures and explanation of the process).
2012         (GetMostDeeplyNestedActiveControl): new utility function we need
2013         because our ActiveControl can refer to a child container with its
2014         own ActiveControl.
2015
2016         * Form.cs (OnActivated): remove the call to SelectActiveControl
2017         from here, since you can override this method and not chain up,
2018         and winforms still sets the active control.
2019         (OnCreateControl): also remove the unnecessary SelectActiveControl
2020         call from here.
2021         (WndProc): it's actually called from the WM_ACTIVATE block, just
2022         before calling OnActivated.
2023
2024         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
2025         inside the else.  the ActiveControl setter will end up setting
2026         focus on @control.  This keeps us from setting it again (and
2027         generating an extra LostFocus/GotFocus pair).
2028         (Select (bool, bool)): reindent.
2029
2030 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
2031
2032         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
2033         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
2034         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
2035         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
2036         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
2037         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
2038         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
2039         ToolStripTextBox.cs: Another wave of corcompare work.
2040
2041 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2042
2043         * ColumnHeader.cs: Implement 2.0 AutoResize method using
2044         the Width property.
2045
2046         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
2047         methods by callling Column.AutoResize method on columns.
2048
2049 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2050
2051         * Control.cs: Provide proper implementations of PreferredSize
2052         and GetPreferredSize (2.0).
2053
2054 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
2055
2056         * Form.cs: Remove one character (!) to make my previous OnClosing
2057         stuff work for modal windows like MessageBox.
2058
2059 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2060
2061         * ListView.cs:
2062         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
2063         ListView.Columns to get the last displayed column. Fixes #80452.
2064
2065 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
2066
2067         * Label.cs, LinkLabel.cs: Source code identation fixes.
2068
2069 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
2070
2071         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
2072         we dont need to invalidate only borders because when we invalidate four
2073         border lines the invalidate's generates a complete redraw of button, 
2074         because it now invalidate a complete rect some other redraws operations
2075         are fixed. Fixes #80196.
2076         
2077         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
2078         Remove ToolBarInvalidateEntireButton as it is not used.
2079
2080 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2081         
2082         * Form.cs: Make sure that both OnClosing and OnFormClosing are
2083         called for 2.0 profile.
2084         * CloseReason.cs: Make class internal for 1.1.
2085
2086 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
2087
2088         * ToolStripManager.cs: Implement FindToolStrip functionality.
2089         * ToolStrip.cs: Register and unregister with ToolStripManager.
2090
2091 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2092
2093         * Control.cs: This was messy.  2.0 moves much of ControlCollection
2094         to ArrangedElementCollection.  Implemented this with as few #if's as 
2095         possible (which is still too many).
2096
2097 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
2098
2099         * Control.cs: Implement SizeFromClientSize() [2.0].
2100
2101 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
2102
2103         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
2104         use Theme.BorderSize to calculate area instead of static value 1, 
2105         by the way use new BorderStaticSize instead     Border3DSize when 
2106         border_static is true. Fixes #79537.
2107         
2108         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
2109         
2110         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
2111         it is not needed.
2112
2113 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2114
2115         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
2116
2117 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
2118
2119         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
2120         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
2121         
2122         * Hwnd.cs: 
2123         - border_static field added, it will used to define when a control 
2124         theres 3D border but it must be static (thin).
2125         - In GetWindowRectangle use Theme.BorderSize to calculate area 
2126         instead of static value 1, by the way use new BorderStaticSize instead
2127         Border3DSize when border_static is true.
2128
2129         * XplatUIX11.cs, XplatUIOSX.cs: 
2130         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
2131         
2132         * Theme.cs: BorderStaticSize field added.
2133
2134 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2135
2136         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
2137
2138 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
2139
2140         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
2141         mimic same behavior than win32 that set border only in CreateParams,
2142         it fix problems under CreateParams overrides. Fix #79442 and partial
2143         fix #79537.
2144         
2145         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
2146         of thi control you must call recreate handle. 
2147         
2148         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
2149         need to do anything as RecreateHangle will take care about borders.
2150
2151 2007-01-05  Mike Kestner  <mkestner@novell.com>
2152
2153         * ListView.cs: hack to eliminate Lost/Got focus notifications on
2154         cycles between the ItemControl and parent.  Fixes #80388.
2155
2156 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
2157
2158         * Control.cs: Lazy init layout engine. Do not directly use 
2159         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
2160
2161 2007-01-05  Chris Toshok  <toshok@ximian.com>
2162
2163         * DataGrid.cs: don't forceably rebind columns in SetDataSource
2164         unless our list manager has changed (i.e. unless we have reason to
2165         believe our columns have changed).  Fixes #80422.
2166         
2167         also, disable the call do BindColumns in
2168         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
2169         1.1 the event isn't raised in response to a column addition on a
2170         table.)
2171
2172 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
2173
2174         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
2175         that inheritors can not call it if they choose.  Fixes bug #80456.
2176
2177 2007-01-05  Andreia Gaita  <avidigal@novell.com>
2178
2179         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
2180         doesn't blow up with a null exception on marshalling.
2181         
2182 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
2183
2184         * Control.cs: Implement several 2.0 protected properties and methods.
2185         Ensure that all necessary events are being called when properties
2186         are set.
2187
2188 2007-01-05  Mike Kestner  <mkestner@novell.com>
2189
2190         * ListView.cs: implement PgUp/PgDn for Details view.  Also
2191         fixes First/LastVisibleIndex to use the item_control.ClientRect 
2192         instead of the parent control.  Fixes #80378.
2193
2194 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2195
2196         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
2197           determine whether to use yard-pound or not (bug #78399).
2198
2199 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
2200
2201         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
2202         problems. So it is time to bring back the old popupbutton colors.
2203
2204 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2205
2206         * ColumnHeader.cs:
2207         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
2208         property by using the internal information of the
2209         columns order in ListView.
2210
2211 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
2212
2213         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
2214         Add 2.0 Tag properties.
2215
2216         * LinkArea.cs: Add 2.0 ToString method.
2217
2218 2007-01-03  Chris Toshok  <toshok@ximian.com>
2219
2220         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
2221         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
2222         when we're editing, which fixes #80047.
2223
2224 2007-01-03  Chris Toshok  <toshok@ximian.com>
2225
2226         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
2227         #80404.
2228
2229 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
2230
2231         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
2232         property and implementation.
2233
2234         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
2235         for MdiWindowListItem property.
2236
2237         * ToolStripDropDown.cs: Don't consider hidden menu items while
2238         laying out the menu.
2239
2240 2007-01-03  Andreia Gaita  <avidigal@novell.com>
2241
2242         * SendKeys.cs: window handle is not needed in win32, so just
2243         get the active window for X after parsing keys and don't use
2244         it when building the message; it is passed by parameter to the 
2245         Xplat method and used there to build the message instead. Also,
2246         wait for events to be processed on SendWait, as opposed to Send,
2247         which doesn't wait :) Playing with threads and Send() completely 
2248         hangs on ms.net, only SendWait() works.
2249         
2250         XplatUIX11.cs
2251         X11Display.cs: Check for valid window handle.
2252
2253 2007-01-03  Jackson Harper  <jackson@ximian.com>
2254
2255         * TextControl.cs: Need to prevent wrap calculations when replacing
2256         text (this was there before i removed it accidently).
2257         - Don't update the cursor during the positioning, just set it to
2258         selection_start at the end of the operaion.
2259
2260 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2261
2262         * Control.cs:
2263         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
2264         
2265 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2266
2267         * MonthCalendar.cs: Added Click and DoubleClick events again,
2268         but this time they only hide Control's Click and DoubleClick.
2269         
2270 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
2271
2272         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
2273         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
2274
2275 2007-01-02  Jackson Harper  <jackson@ximian.com>
2276
2277         * TextBoxBase.cs: We move the caret with the split now, so we
2278         don't need to explicitly move the caret after splitting.  This
2279         fixes the caret bumping down an extra line on Enter.
2280
2281 2007-01-02  Miguel de Icaza  <miguel@novell.com>
2282
2283         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
2284         2.72). 
2285
2286         * ScrollableControl.cs: Add Scroll event.
2287
2288 2007-01-02  Mike Kestner  <mkestner@novell.com>
2289
2290         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
2291         to fix all hdr height padding codepaths.  Fixes #80207.
2292
2293 2007-01-02  Chris Toshok  <toshok@ximian.com>
2294
2295         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
2296         setting it to the Control defaults anyway, and it being after the
2297         Dock set was screwing up layout.
2298         (set_Dock): don't short circuit out of setting base.Dock.  Also,
2299         no need to call UpdateStatusBar here, as it'll be re-layed out if
2300         it needs to be.
2301
2302 2007-01-02  Mike Kestner  <mkestner@novell.com>
2303
2304         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
2305         to header height for width == -1. Fixes the rest of #80207.
2306
2307 2007-01-02  Mike Kestner  <mkestner@novell.com>
2308
2309         * ListView.cs: rework the mouse event forwarding everaldo added
2310         to translate the coordinates to the parent control not
2311         raise the parent events until after we've done our work. Hover
2312         needs more work, in the case where HoverSelection is on, because
2313         the item control receives more than one MouseHover per Enter
2314         event, so we need to ensure only the "first" hover gets forwarded.
2315         Opening a minor bug for that.
2316
2317 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
2318
2319         * CheckedListBox.cs: Fixed SelectionMode to match MS.
2320         * ListControl.cs: Implemented AllowSelection property. Removed extra
2321         tabs.
2322         * ListBox.cs: Implemented AllowSelection property.
2323
2324 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2325
2326         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
2327         SelectedItem, it prevent for errors when you must disable item
2328         before perform click. Fixes #80409.
2329
2330 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2331
2332         * MenuAPI.cs: Prevent second level and beyond submenus to close
2333         until first level when move out side of popup.
2334         
2335 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2336
2337         * MenuAPI.cs:
2338         - Down submenu positin in three pixels.
2339         - Closes sub menu when mouse leaves from menu. Fixes #80402.
2340
2341 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
2342
2343         * ThemeWin32Classic.cs:
2344         - Fix popup menu size adding one pixel on the top.
2345         - Down menu item border from two to one to mimic Win32.
2346         - Some source identation fixes. 
2347
2348 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
2349
2350         * ThemeWin32Classic.cs: Use float numbers to calculate size and
2351         position of menu arrows, it fix wrong arrow size.
2352
2353 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
2354
2355         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
2356         instead of line, it simplify draw operation and fix it using 3D
2357         borders to mimic Win32.
2358
2359 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
2360
2361         * StatusStrip.cs: Add implementation of the sizing grip.
2362
2363         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
2364         StatusStrip rendering.
2365
2366 2006-12-31  Chris Toshok  <toshok@ximian.com>
2367
2368         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
2369         override the layout style (anchor/dock) of the control.  assign to
2370         Dock instead.  Fixes bug #80416.
2371
2372         * ToolStrip.cs: same.
2373
2374 2006-12-31  Andreia Gaita  <avidigal@novell.com>
2375
2376         * ContainerControl.cs: Use ContainerSelected flag to check if 
2377         a Container is directly selected, or if Select is called on a 
2378         non-container. If a container is directly selected, focus events 
2379         should not be raised.
2380         Apply #80411 patch to throw exception on set_ActiveControl if 
2381         control is the same as the current one.
2382         
2383         * Control.cs: Use ContainerSelected flag (see above).
2384         Add invalidation check to raise event but not invalidate if 
2385         dimensions are 0.       
2386         Apply #80411 patch.
2387         
2388
2389 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
2390
2391         * MenuAPI.cs: After click, dont close popup menu when menu is
2392         ContextMenu. Fixes #80399.
2393
2394 2006-12-30  Chris Toshok  <toshok@ximian.com>
2395
2396         * ContainerControl.cs: make sure we throw the exception if the
2397         container control doesn't contain the control we're setting
2398         ActiveControl to.
2399
2400 2006-12-30  Chris Toshok  <toshok@ximian.com>
2401
2402         * Control.cs (SetTopLevel): fix the exception raised by
2403         SetTopLevel for child controls.
2404         (set_Anchor): call UpdateDistances when setting the anchor type.
2405         This fixes bug #80336.
2406
2407 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2408
2409         * Theme.cs: For now, revert back to 8pt font.
2410
2411 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
2412
2413         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
2414         Fixes #80395.
2415
2416 2006-12-29  Chris Toshok  <toshok@ximian.com>
2417
2418         * Control.cs: reorder the code in OnResize to give the same event
2419         ordering as MS.
2420
2421 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2422
2423         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
2424         TileHorizontally and TileVertically.
2425         
2426 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
2427
2428         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
2429         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
2430         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
2431         Corrected copyright and email adress.
2432
2433 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2434
2435         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
2436         of Exception in FullPath property if no TreeView is associated with
2437         the TreeNode.
2438
2439 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
2440
2441         * Theme.cs: Marked default_font as private, and initialize it in ctor
2442         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
2443         on 2.0 profile.
2444         * ThemeGtk.cs: Removed default_font intialization.
2445         * ThemeWin32Classic.cs: Removed default_font initialization.
2446
2447 2006-12-28  Chris Toshok  <toshok@ximian.com>
2448
2449         * Control.cs: fix a couple of place where we were creating handles
2450         more aggressively than we should be.  Fixes ControlRefresh unit
2451         tests.
2452
2453 2006-12-28  Chris Toshok  <toshok@ximian.com>
2454
2455         * Control.cs: contrary to what the comment said, Control.Dock does
2456         not supercede Control.Anchor - the last one you assign to decides
2457         the layout behavior.  so we need to keep track of which was the
2458         last set.  Also, fix some of the affected property arguments in
2459         PerformLayout calls, and remove an redundant parent.PerformLayout
2460         call in OnResized.
2461
2462         Add a VisibleInternal property, which returns is_visible.  We
2463         can/should get rid of all the usage of this field elsewhere.
2464
2465 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2466         
2467         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
2468         control style, not DoubleBuffer. Added UseDoubleBuffering property
2469         that indicates whether doublebuffering is enabled and supported.
2470         (comment from and code based on Gert Driesen's patch in #80324).
2471         Fixes #80324.
2472
2473 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2474         
2475         * Control.cs: Fixed a NRE.
2476
2477 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2478
2479         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
2480         for 2.0.
2481
2482 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2483
2484         * Control.cs: Rewrote double buffering, now a seperate
2485         class handles all the buffering, no Graphics is disposed of
2486         until the painting is finished (earlier implementation 
2487         would crash if the control was resized in the OnPaint, 
2488         since it would cause the double buffer to be recreated
2489         and the old one disposed), a separate Graphics is 
2490         created for every paint (MS behaviour and anyways the state
2491         of the Graphics would have to be saved and restored otherwise)
2492         
2493         * XplatUIDriver.cs: 
2494         * XplatUIX11.cs:
2495         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
2496         so that we can get the graphics for the back buffer without
2497         having to create a new one and remove the offscreen_dc parameter
2498         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
2499         
2500 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2501
2502         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
2503         Also make virtual all the key-related methods.
2504
2505         * ListViewItem.cs: Make virtual the key related methods for
2506         ListViewSubItemCollection.
2507
2508 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2509
2510         * ListView.cs:
2511         * ListViewItem.cs:
2512         * ThemeWin32Classic.cs:
2513         * Theme.cs: Initial support for Tile view in ListView,
2514         as well as the implementation of the required bits for it (Item
2515         and Subitem).
2516
2517 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2518
2519         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
2520         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
2521         Provide useful exception messages.
2522
2523 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2524
2525         * TrackBar.cs: Remove a warning.
2526         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
2527         when used by DateTimePicker, fixes #80287. This also requires that 
2528         MonthCalendar implements it's own drawing for the yearly updown control,
2529         otherwise the Capture tracking would be too complicated. Removed the Click 
2530         and DoubleClick events (according to comments they were hiding the base class
2531         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
2532         raise these events, not that they cannot be raised. It is possible to raise 
2533         them by calling OnClick and OnDoubleClick). Added two internal fields in 
2534         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
2535         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
2536         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
2537         event, no longer needed.
2538         
2539 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2540
2541         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
2542         true if new value differs from current value.
2543
2544 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2545
2546         * Control.cs: ControlCollection.Count must be public. Fixed build of
2547         unit tests.
2548
2549 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2550
2551         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
2552
2553 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
2554
2555         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
2556
2557 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
2558
2559         * Control.cs: Invalidates control including when Width and Height is 
2560         equal zero or is not visible, only Paint event must be care about 
2561         this. Fixes #79913.
2562
2563 2006-12-26  Chris Toshok  <toshok@ximian.com>
2564
2565         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
2566         more corcompare work.
2567
2568         * DataGridView.cs: fix compiler warning.
2569
2570         * ColumnHeader.cs: some corcompare work, and also take the
2571         opportunity to make the internal fields private.
2572
2573         * ListView.cs: fix the fallout from the above field change.
2574
2575 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
2576
2577         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
2578         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
2579         ToolStripTextBox.cs: Fixes to events and corcompare.
2580
2581 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
2582
2583         * ListView.cs: Call owner.OnMousexx event to propagate events from
2584         item to ListView. Fixes #80367.
2585
2586 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2587
2588         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
2589         if value is less than one. ItemHeight should not be set to a value
2590         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
2591         Removed extra tabs.
2592
2593 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
2594
2595         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
2596         * ToolStripStatusLabel.cs: Add Spring for Moma.
2597
2598 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2599
2600         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
2601         Fixed code formatting. Removed debug code.
2602         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
2603
2604 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
2605
2606         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
2607         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
2608         ArgumentOutOfRangeException if ColumnCount is negative. In 
2609         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
2610         less than 4 or higher than 32768.
2611         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
2612         Fixed FormatProvider to return CurrentCulture unless explicitly set.
2613         Fixed IsFormatProviderDefault to return true if FormatProvider has
2614         not been explicitly set.
2615
2616 2006-12-25  Chris Toshok  <toshok@ximian.com>
2617
2618         * Application.cs: add a couple of 2.0 events.
2619
2620 2006-12-25  Chris Toshok  <toshok@ximian.com>
2621
2622         * Control.cs: fix compiler warning.
2623
2624         * AxHost.cs: corcompare fixes.
2625
2626         * ApplicationContext.cs: corcompare fixes.
2627
2628 2006-12-25  Chris Toshok  <toshok@ximian.com>
2629
2630         * Control.cs: only update dist_right/dist_bottom if the
2631         width/height is > 0.  this fixes anchored controls being resized
2632         smaller until they disappear and then resized larger again.
2633
2634 2006-12-25  Chris Toshok  <toshok@ximian.com>
2635
2636         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
2637         since they're nothing more than X/Left and Y/Top, respectively.
2638
2639         Also, move back to a per-control Bitmap/Graphics for
2640         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
2641         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
2642         Height.
2643
2644 2006-12-25  Miguel de Icaza  <miguel@novell.com>
2645
2646         * MessageBox.cs: Implemented overload that takes a new "bool
2647         displayHelpButton" by adding a new internal field "show_help".
2648         When clicked this will raise the HelpRequested on the owner or the
2649         main form. 
2650
2651         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
2652         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
2653
2654         * ListView.cs: Add support ColumnWidthChanged and
2655         ColumnWidthChanging. 
2656
2657         Add support for ColumnReordered event.
2658         (ReorderColumn): Add NET_2_0 specific support for cancelling the
2659         reorder.
2660
2661         Very nice codebase!
2662
2663         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
2664
2665         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
2666
2667 2006-12-24  Chris Toshok  <toshok@ximian.com>
2668
2669         * GridTablesFactory.cs: 2.0 corcompare work.
2670
2671         * ToolStripContainer.cs: add "override" to
2672         ContextMenuStripChanged, and remove the local event object.
2673
2674         * ToolStripDropDown.cs: same with a couple properties.
2675
2676         * ToolStripPanel.cs: same with AutoSizeChanged event.
2677
2678         * TextBoxBase.cs: add "override" to AutoSizeChanged.
2679
2680         * Form.cs: add the remaining 2.0 events, and do some corcompare
2681         attribute work.
2682
2683         * DateTimePicker.cs: add "new" to padding.
2684
2685         * ButtonBase.cs: use Control's use_compatible_text_rendering.
2686
2687         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
2688
2689         * DataGridView.cs: PaddingChanged is overridden.
2690
2691 2006-12-24  Chris Toshok  <toshok@ximian.com>
2692
2693         * Control.cs: corecompare work here too.
2694
2695         * DataGridViewElement.cs, DataGridView.cs,
2696         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
2697         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
2698         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
2699         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
2700         work.
2701
2702 2006-12-24  Miguel de Icaza  <miguel@novell.com>
2703
2704         * Control.cs: Switched the error message on the console for a
2705         todo.  A review of the code will have to cope with this anyways
2706         (since its a large feature, it is in our radar) and it was
2707         producing too much output when running PDN.
2708
2709         * ToolStripComboBox.cs: Set the text when the SelectedIndex
2710         changes.  Applications depend on this (PDN 2.72)
2711
2712 2006-12-23  Chris Toshok  <toshok@ximian.com>
2713
2714         * TableLayoutSettings.cs: finish up the corcompare work for this
2715         class.
2716
2717 2006-12-23  Chris Toshok  <toshok@ximian.com>
2718
2719         * Control.cs: make SetImplicitBounds internal, do some futzing
2720         with LayoutEngine so that it's available in 1.1, and remove the
2721         entire duplicated code mess from PerformLayout.  Use
2722         System.Windows.Forms.Layout.DefaultLayout instead.
2723
2724         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
2725
2726 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2727
2728         * Form.cs: Add MainMenuStrip property.
2729
2730 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
2731
2732         * Control.cs: Add ContextMenuStrip property and implementation.
2733         Fix ContextMenu implementation to show menu centered on control when
2734         activated using the keyboard instead of showing at screen (0,0).
2735
2736         * ToolStripDropDown.cs: Fix needed overload of Show ().
2737
2738 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2739
2740         * Menu.cs: Name property added for 2.0 profile.
2741         
2742 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2743
2744         * Menu.cs: Update information about FindMenuItem, method to be
2745         implemented soon.
2746
2747 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2748
2749         * MenuAPI.cs: When deselect items deselect also selected subitems.
2750         
2751 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
2752
2753         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
2754         FindSubItemByCoord to found itens that is not active, also an
2755         cheking added to FindSubItemByCoord to search for items only 
2756         in visible popup windows. Fixes #80274.
2757
2758 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
2759
2760         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
2761         internal property, it be care about change ExStyle. 
2762
2763 2006-12-22  Andreia Gaita  <avidigal@novell.com>
2764
2765         * ContainerControl.cs: set activeControl for parent forms up the 
2766         tree when the new activecontrol is a container.
2767         When validating the active control, if it is a container, also
2768         raise up the validation for it's active control. Fixes #80280
2769         
2770         * Control.cs: Add internal property flag and check to prevent
2771         Focus events from getting raised when Select() is called for
2772         a ContainerControl. There are still too many focus events being
2773         raised at the moment though.
2774         Cleaned up the code a bit.
2775
2776 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2777
2778         * Control.cs: Added all missing 2.0 events.and
2779         fixed a couple of corcompare issues.
2780         * TrackBar.cs: Implemented missing 2.0 bits.
2781         * MonthCalendar.cs, 
2782         * DateTimePicker.cs, 
2783         * MdiClient.cs: Fixed some corcompare issues.
2784
2785 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2786
2787         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
2788         SplitterPanel.cs: corecompare work.
2789
2790 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2791
2792         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
2793         Clean up warnings for BackgroundImageChanged and PaddingChanged
2794         events now that they are implemented in Control.cs.
2795
2796 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
2797
2798         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
2799         
2800         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
2801         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
2802         of TableLayoutPanel and supporting cast.
2803
2804 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2805
2806         * XplatUIWin32.cs: 
2807         - GrabWindow now confines the mouse pointer to the confine window.
2808         - Added Win32ClipCursor and Win32GetClipCursor.
2809
2810         * Control.cs: 
2811         - Added CaptureWithConfine to be able to capture and confine 
2812         mouse pointer.
2813         
2814         * InternalWindowManager.cs: 
2815         - Call CaptureWithConfine instead of Capture if we're an
2816         MdiChild (fixes #79982).
2817
2818 2006-12-21  Chris Toshok  <toshok@ximian.com>
2819
2820         * DataGrid.cs: guard against the initial state of selection, where
2821         selection_start == -1.  make sure we only select from index >= 0.
2822         Fixes bug #80291.
2823
2824 2006-12-21  Chris Toshok  <toshok@ximian.com>
2825
2826         * Control.cs: we don't need to be so draconian with
2827         UpdateDistances, and we thusly don't need to call it before
2828         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
2829
2830 2006-12-21  Daniel Nauck  <dna@mono-project.de>
2831
2832         * ComboBox.cs,
2833         TextBox.cs: Implemented AutoComplete properties.
2834
2835 2006-12-20  Chris Toshok  <toshok@ximian.com>
2836
2837         * DataGridView*.cs: some corecompare work.
2838
2839 2006-12-20  Jackson Harper  <jackson@ximian.com>
2840
2841         * XplatUIX11.cs: We need to hide the caret when deleting it,
2842         otherwise you get carets left lying around everywhere.
2843         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
2844         prevents getting some weird half drawn caret tracers when
2845         scrolling.
2846         * TextControl.cs: Attempt to reduce the number of times we need to
2847         recreate the caret.
2848
2849 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
2850
2851         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
2852
2853 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2854
2855         * DateTimePicker.cs:
2856         - Implemented missing 2.0 bits.
2857         - Changed some default values to match MS.
2858         
2859 2006-12-20  Jackson Harper  <jackson@ximian.com>
2860
2861         * TextBoxBase.cs: When changing the font across the document we
2862         can't recalculate after changing each line, since that will cahnge
2863         the line count.
2864         - PreferredHeight is a little different than i thought.
2865         - When backspacing, move the caret before we do the actual char
2866         delete, because when that delete crosses a wrap boundary the
2867         positional information will change.
2868
2869 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2870
2871         * Control.cs: Added some missing 2.0 bits: 
2872         BackgroundImageLayout, BackgroundImageLayoutChanged, 
2873         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
2874         add IBindableComponent and IDropTarget implementation.
2875         
2876         * MonthCalendar.cs: 
2877         - Added all missing 2.0 features:
2878         BackgroundImageLayout, RightToLeftLayout, 
2879         OnHandleDestroyed, RightToLeftLayoutChanged, 
2880         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
2881         PaddingChanged.
2882         - Rewrote all the BoldDate code, it was completely broken.
2883         - Fixed all the tests (the tests can now be re-enabled, the
2884         problems were not with the tests, but with the control, it was
2885         mostly broken).
2886         
2887         * DateTimePicker.cs: Changed the location where the 
2888         MonthCalendar is shown.
2889         
2890 2006-12-19  Chris Toshok  <toshok@ximian.com>
2891
2892         * DataGridView.cs: add IDropTarget implementation.
2893
2894         * ToolStripPanel.cs: add IDropTarget implementation.
2895
2896 2006-12-19  Jackson Harper  <jackson@ximian.com>
2897
2898         * TextControl.cs: soft now means something different than what it
2899         used to mean, we want to move the caret regardless of whether or
2900         not this break was soft (would we really have wanted the caret
2901         to not move with the break in the old context?)
2902         * TreeView.cs: Make sure we factor in the vert scrollbar when
2903         calculating the horizontal scrollbar's maximum.
2904
2905 2006-12-19  Andreia Gaita  <avidigal@novell.org>
2906
2907         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
2908         check for keywords in alternate casing, close bug #80049.
2909
2910 2006-12-19  Chris Toshok  <toshok@ximian.com>
2911
2912         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
2913         methods (which all do nothing).
2914
2915         * IDropTarget.cs: add the 4 missing methods.
2916
2917 2006-12-19  Chris Toshok  <toshok@ximian.com>
2918
2919         * TableLayoutRowStyleCollection.cs: corcompare work.
2920         
2921         * TableLayoutSettings.cs: same.
2922
2923         * TableLayoutStyle.cs: same.
2924
2925         * TableLayoutColumnStyleCollection.cs: same.
2926
2927 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
2928
2929         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
2930         TableLayoutPanel I've had in my local tree for way too long.
2931
2932 2006-12-19  Miguel de Icaza  <miguel@novell.com>
2933
2934         * TableLayoutSettings.cs: Finish the public API (still needs all
2935         the logic to update on changes). 
2936
2937         * TableLayoutPanelCellPosition.cs: new file.
2938         
2939         * TableLayoutRowStyleCollection.cs,
2940         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
2941         TableLayoutSettings.cs: Track the final 2.0 table api.
2942
2943 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2944
2945         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
2946         and Image List 2.0 members for ColummnHeader.
2947         * ListView.cs: Add key-related 2.0 methods for
2948         ColumnHeaderCollection.
2949
2950 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
2951
2952         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
2953         ArgumentNullException if items argument is null. Ignore null item in
2954         arrays. Removed extra tabs.
2955
2956 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
2957
2958         * MonthCalendar.cs: Fixed InvalidCastException.
2959
2960 2006-12-19  Jackson Harper  <jackson@ximian.com>
2961
2962         * TextControl.cs: Don't increment the position here.
2963         - When calculating char positions only add in the line break size
2964         for hard line breaks.
2965
2966 2006-12-19  Andreia Gaita  <avidigal@novell.org>
2967
2968         * SendKeys.cs: Changed some things to match ms.net behaviour
2969         when parsing shifted capital letters.
2970         
2971         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
2972         Add window handle as parameter to SendInput. X11 needs the 
2973         window handle, and the handle being passed      to it in the keys 
2974         queue is the active control handle (which windows needs), not 
2975         the window handle.
2976         
2977         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
2978         to support SendKeys on X.       
2979         
2980         * X11Keyboard: Implement helper method to lookup a linux keycode
2981         given the virtual keycode. Added table of keycode-2-virtualkey
2982         values to support this.
2983
2984 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2985
2986         * ListView.cs: Add support for SelectedIndexCollection
2987         and SelectedItemCollection 2.0 methods. Implement support
2988         for ImageKey too.
2989         * ListViewItem.cs: Add support for ListViewSubItemCollection
2990         2.0 methods. Also, fix an incorrect behavior of AddRange method
2991         (it shouldn't call Clear).
2992         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
2993
2994 2006-12-19  Jackson Harper  <jackson@ximian.com>
2995
2996         * RichTextBox.cs: 
2997         * TextBoxBase.cs: New args for FormatText
2998         * TextControl.cs: Rewrote the main drawing method, this version
2999         feels a little easier to understand and debug to me.  Hopefully it
3000         does to others also
3001         - Fix FormatText to OR in the new formating values.  Added
3002         FormatSpecified param, basically this works in the same way as
3003         BoundsSpecified in Control.
3004         - Set the caret properties when the caret is positioned.
3005         - When wrapping text make sure that we calculate the width of the
3006         last character
3007         - when calculating alignments we might have wrapped down to the
3008         next line, so don't search for an individual tag, search for the
3009         end of the line
3010         - We need to invalidate the selection area when we replace the
3011         selection.
3012         
3013 2006-12-19  Daniel Nauck  <dna@mono-project.de>
3014
3015         * Application.cs: add Restart () 2.0 support
3016
3017 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3018
3019         * MenuItem.cs: Invalidate menu item rectangle after change Enable
3020         property. Fixes #80268.
3021         
3022 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3023
3024         * MenuAPI.cs: Dont trigger select event when closes top menu
3025         item. Fixes #80270.
3026
3027 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3028
3029         * MenuAPI.cs: When you click on menuitem only trigger onselect
3030         event for top menu itens. Fixes #80271.
3031         
3032 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3033
3034         * MdiWindowManager.cs: Make IconicBounds depend on
3035         the bottom of MdiClient, not the top (fixes #80267)
3036         
3037 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3038
3039         * MdiClient.cs: Added missing 2.0 attribute
3040
3041 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3042
3043         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
3044         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
3045
3046 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
3047
3048         * MenuAPI.cs: Fix click when menuitem is not popup,
3049         this regression was caused by last commit (#80272).
3050
3051 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
3052
3053         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
3054         fire click event or close menu. Fixes #80272.
3055
3056 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3057
3058         * ListViewHitTestInfo.cs: add
3059
3060 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3061
3062         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
3063         * FlatButtonAppearance.cs: add
3064         * DockingAttribute.cs: add
3065
3066 2006-12-17  Chris Toshok  <toshok@ximian.com>
3067
3068         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
3069         and rebind our columns when it does - this way, if you make
3070         changes to the DataTable (or set the Table attribute on a DataView
3071         after setting it as the DataGrid's DataSource, the changes are
3072         made visible.)  Fixes bug #80107.
3073
3074 2006-12-17  Daniel Nauck  <dna@mono-project.de>
3075
3076         * ListViewGroup.cs: add internal Location property for layouting.
3077         * Theme.cs: add abstract ListViewGroupHeight function.
3078         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
3079
3080 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3081
3082         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
3083         Added reset of selected index to 0 when adding first tab page.
3084         Fixes #80264
3085         
3086         * NumericUpDown.cs: Fix NET_2_0 check
3087
3088 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3089
3090         * ListViewGroup.cs: fixed DefaultValueAttribute value
3091
3092 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3093
3094         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
3095
3096 2006-12-15  Miguel de Icaza  <miguel@novell.com>
3097
3098         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
3099         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
3100         ScrollableControl.cs: Add a handful of methods that are
3101         overwritten in 2.0 
3102
3103 2006-12-15  Chris Toshok  <toshok@ximian.com>
3104
3105         * XplatUIWin32.cs: initial implementation of the Reversible
3106         drawing functions.  there are some problems.  DrawReversibleFrame
3107         doesn't seem to work at all for Dashed FrameStyle, and in the
3108         Thick case there are drawing errors at the corners (we probably
3109         need to bind Rectangle instead of doing moveto/lineto's.)
3110
3111 2006-12-16  Andreia Gaita  <avidigal@novell.com>
3112         
3113         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
3114         to send blocks of key messages. Send accumulates keys to send with Flush, 
3115         while SendWait sends all keys immediately.
3116                 
3117         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
3118         XplatUIX11.cs,  XplatUIX11-new.cs:
3119         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
3120         to Win32 SendInput.
3121         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
3122         
3123         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
3124         testing for ms.net on this class is very tricky, as the tests run too fast 
3125         to allow the hook to release, essentially freezing the keyboard and the 
3126         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
3127         category :p
3128
3129 2006-12-16  Daniel Nauck  <dna@mono-project.de>
3130
3131         * Padding.cs: fixed serialization compability to MS ("_var" field names),
3132                         added missing attributes.
3133  
3134 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3135
3136         * ListViewGroup.cs: Added missing attributes.
3137         * ListViewGroupCollection.cs: Added missing attributes.
3138
3139 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3140
3141         * ListViewItem.cs: fixed ListViewSubItem text property.
3142
3143 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3144         
3145         * Control.cs: Added missing 2.0 attributes
3146         
3147 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3148         
3149         * MdiClient.cs: Added missing 2.0 attribute.
3150         * MonthCalendar.cs: Added some missing 2.0 attributes 
3151         and properties.
3152         
3153 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3154
3155         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
3156
3157 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
3158
3159         * MainMenu.cs: Add the new 2.0 constructor to help out people
3160         using the MainMenu in VS2005.
3161
3162 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3163         
3164         * MdiChildContext.cs: Removed it, no longer used.
3165         * MdiClient.cs: Added missing 2.0 attributes.
3166         
3167 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3168         
3169         * InternalWindowManager.cs: Fix a NullRef with previous 
3170         changes for toolwindows.
3171         
3172 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3173
3174         * Control.cs: 
3175         - Added AfterTopMostControl to allow for certain controls 
3176         to always stay on top when normal controls are brought to 
3177         front.
3178         
3179         * XplatUIWin32.cs: 
3180         - (DrawInversibleRectangle): Get window rectangle from Win32 
3181         in stead of from control, since Win32 doesn't calculate
3182         screen coords correctly from control's Location if it 
3183         have docked siblings.
3184         
3185         * MdiWindowManager.cs:
3186         - Correct the control menu popup location when clicked on
3187         the maximized form icon. (fixes #80223.1)
3188         - Don't show moving rectangle if mouse hasn't moved from
3189         the original clicked point.
3190         - Removed FormGotFocus handler (not used).
3191         - Calculate the control buttons location from the main
3192         window's size and not client size (fixes #79770).
3193         - Form is now closed when the form icon is double-clicked
3194         (fixes #79775). 
3195         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
3196         
3197         * InternalWindowManager.cs:
3198         - Moved some MDI-only methods to MdiWindowManager.
3199         - Removed unused properties and methods.
3200         - Unified method naming for methods handling wm messages.
3201         - Moved all message handling to seperate methods for
3202         each message.
3203         
3204         * ThemeWin32Classic.cs:
3205         - DrawManagedWindowDecorations now draws the title bar 
3206         with a gradient brush.
3207         - Add a CPDrawButtonInternal that allows us to specify
3208         light, normal and dark colors for the buttons (control 
3209         buttons for MDI children were drawn with the same light
3210         color as the background, therefore loosing the 3D effect).
3211         
3212         * SizeGrip.cs:
3213         - Add a CapturedControl property that is used to 
3214         determine the control to resize (defaults to parent). 
3215         Needed for MdiClient, since its SizeGrip's parent is
3216         MdiClient, but the control to resize is the main form.
3217         
3218         * MdiClient.cs:
3219         - Set SizeGrip's CapturedControl to the main form in order
3220         to resize the main form and not the MdiClient.
3221         - Override AfterTopMostControl to leave the scrollbars 
3222         always on top.
3223
3224 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3225
3226         * ListView.cs: fixed ListViewItemCollection AddRange and
3227                         implemented ListViewItemCollection AddRange 2.0 support.
3228
3229 2006-12-15  Daniel Nauck  <dna@mono-project.de>
3230
3231         * ListViewGroup.cs: Add.
3232         * ListViewGroupCollection.cs: Add
3233         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
3234         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
3235                                 stub for ImageKey 2.0 support.
3236
3237 2006-12-14  Mike Kestner  <mkestner@novell.com>
3238
3239         * ListView.cs: add text padding to the autocalculation for columns
3240         of width -2.  Fixes #80207.
3241  
3242 2006-12-14  Mike Kestner  <mkestner@novell.com>
3243
3244         * ListView.cs: add some index guarding for partial row navigation 
3245         logic.  Fixes #80250.
3246
3247 2006-12-14  Mike Kestner  <mkestner@novell.com>
3248
3249         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
3250         are added or inserted to the collection.  Fixes #81099.
3251
3252 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
3253
3254         * MenuAPI.cs: Closes menu when right click out side of popup
3255         it fix problem in ContextMenu and MainMenu. Fixes #80252.
3256
3257 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3258
3259         * ListViewItem.cs: Fix dumb error.
3260
3261         * ListView.cs: Add Find and ContainsKey methods in 
3262         ListViewItemCollection, and also return true for IsReadOnly
3263         and IsFixedSize (changes for 2.0). 
3264
3265 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
3266
3267         * Control.cs: Allow Region to be set to null.
3268
3269 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3270
3271         * MdiWindowManager.cs: Remove unused (commented out) code.
3272         * Form.cs: When the MdiChild is maximized, the form needs 
3273         WM_NCMOUSELEAVE, so request it.
3274         * InternalWindowManager.cs: 
3275         - Added tooltips to control buttons.
3276         - Removed duplicated control button handling code.
3277         - Removed unused (commented out) code.
3278         
3279 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
3280
3281         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
3282         was used because we must set cursor without trigger ChangeCursor event
3283         and without change Cursor control property. Fixes #79963.
3284
3285 2006-12-12  Andreia Gaita  <avidigal@novell.com>
3286         
3287         * Control.cs: Check if Region setter value is null, and ignore
3288
3289 2006-12-12  Jackson Harper  <jackson@ximian.com>
3290
3291         * TextControl.cs: We were almost always drawing one more line then
3292         needed, since the GetLineByPixel will return the last line found
3293         at that pixel. In most cases though, we were invalidating up to
3294         the junction between two lines.
3295         - Improve debug code.
3296
3297 2006-12-12  Chris Toshok  <toshok@ximian.com>
3298
3299         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
3300         and FillReversibleRectangle.
3301
3302         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
3303         and FillReversibleRectangle.
3304
3305         * XplatUIWin32.cs: add stubs which do nothing for
3306         DrawReversibleFrame, DrawReversibleLine, and
3307         FillReversibleRectangle.
3308
3309         * XplatUIOSX.cs: add stubs which raise NIE for
3310         DrawReversibleFrame, DrawReversibleLine, and
3311         FillReversibleRectangle.
3312
3313         * XplatUIX11.cs: add working implementation for
3314         DrawReversibleFrame, DrawReversibleLine, and
3315         FillReversibleRectangle.
3316         
3317         * ControlPaint.cs: implement DrawReversibleFrame,
3318         DrawReversibleLine, and FillReversibleRectangle, by calling into
3319         the appropriate XplatUI method.
3320
3321 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3322
3323         * Form.cs: Make MdiClient have the focus even if it's
3324         not selectable, since it should receive WM_KEY* and WM_MOUSE 
3325         messages. Fixes #79907.
3326         
3327 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3328
3329         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
3330         queried after the window is created.
3331         
3332         * XplatUIX11.cs: Added SendParentNotify to implement 
3333         WM_PARENTNOTIFY logic. Fixes #79965.
3334         
3335         * Control.cs: Added MakeParam.
3336         
3337 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3338
3339         * MdiClient.cs: Resume Layout before setting window
3340         states (fixes #80201).
3341
3342 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3343
3344         * MenuAPI.cs: Deselect a menu item after performing
3345         the click (fixes #80197).
3346
3347 2006-12-11  Jackson Harper  <jackson@ximian.com>
3348
3349         * TextBoxBase.cs: We need to cap this value, since Maximum -
3350         ViewPortHeight can be less than zero.
3351         - Only do selection with the left mouse button.
3352         * TextBox.cs: Don't tell the world that we have a context menu.
3353         * Control.cs: New method so that we can control whether or not the
3354         context menu is visible outside MWF.
3355
3356 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
3357
3358         * ToolBarButton.cs: Fix text positon. 
3359
3360 2006-12-11  Miguel de Icaza  <miguel@novell.com>
3361
3362         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
3363
3364         * Control.cs (DoubleBuffered): Add implementation.
3365
3366         * Application.cs (OpenForms): Add.
3367
3368 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
3369
3370         * Form.cs: Use opacity instead of Opactiy to determine if we need
3371         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
3372
3373 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
3374
3375         * Control.cs: Fix NRE if Control.Site was set to null.
3376
3377 2006-12-11  Chris Toshok  <toshok@ximian.com>
3378
3379         * Control.cs: ControlCollection.Remove should return if the arg is
3380         null, and ControlCollection.SetChildIndex should raise a ANE.
3381
3382 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
3383
3384         * Control.cs: Verify value set for Dock property. Code formatting
3385         updates.
3386
3387 2006-12-11  Jackson Harper  <jackson@ximian.com>
3388
3389         * TextControl.cs: Draw the caret and the selection when a flag is
3390         set on the owner.
3391         * TextBoxBase.cs: We want to draw the caret and the selection for
3392         TextBox but not for TextBoxBase.
3393         - If the window is resized and scrolling is no longer needed (the
3394         whole doc is visible) set the scroll position to zero.
3395         - The default SelectWord (the one TextBox uses) should move the
3396         caret to the end of the word.
3397         - SelectAll moves the caret to the end of the selection.
3398         * TextBox.cs: We don't selectall on focus, we just do it when the
3399         control is created.
3400         
3401 2006-12-11  Mike Kestner  <mkestner@novell.com>
3402
3403         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
3404
3405 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3406
3407         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
3408         2.0 support.
3409         * ListViewItem.cs: Add Name 2.0 property.
3410
3411 2006-12-11  Andreia Gaita  <avidigal@novell.com>
3412
3413         * TabControl.cs: Set visibility on selected or default tab 
3414         when tabcontrol handle is created, so that it's contents
3415         actually show up (duh). Fixes #80193
3416         Don't redraw the control if there is no handle created, as
3417         the selected index might be completely invalid. Added some tests
3418         to check for this.
3419
3420 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
3421
3422         * ToolBar.cs: Uses maximun width and height of all buttons as 
3423         button rectangle when ButtonSize specified, it looks strange but
3424         is what happens in Win32. Fixes #80189.
3425
3426 2006-12-11  Jackson Harper  <jackson@ximian.com>
3427
3428         * TextControl.cs: Need to track undo levels ourself, since
3429         compound actions will mess them up.
3430
3431 2006-12-10  Andreia Gaita  <avidigal@novell.com>
3432
3433         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
3434         SelectedIndex value is changed (even if it's not valid).
3435         Reset SelectedIndex to 0 when the handle is created and if
3436         the current index is invalid.
3437         Fixes SelectdeIndex unit tests and #80128
3438
3439 2006-12-08  Chris Toshok  <toshok@ximian.com>
3440
3441         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
3442         calls EndEdit, it needs to be called before we set current_cell to
3443         its new value.  Otherwise, we end up committing the value in the
3444         textbox to the new cell as well.  Fixes bug #80160.
3445
3446 2006-12-08  Chris Toshok  <toshok@ximian.com>
3447
3448         * Form.cs (set_CancelButton): if the button's DialogResult is
3449         None, set it to Cancel.  Fixes bug 80180.
3450
3451 2006-12-08  Jackson Harper  <jackson@ximian.com>
3452
3453         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
3454         to watch ourselves when setting the canvas size and setting the
3455         scrollbar values.
3456
3457 2006-12-08  Chris Toshok  <toshok@ximian.com>
3458
3459         * DataGrid.cs: comment out the two MakeTransparent calls for the
3460         time being so people using trunk (and not 1.2.2) on windows can
3461         actually use the datagrid.  This deals with bug #80151.
3462
3463 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
3464
3465         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
3466         Graphics.DrawImage (image, int, int, int, int) overload instead
3467         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
3468         the dpi difference and was blurring images it drew.
3469         [Fixes bug #79960]
3470
3471 2006-12-08  Chris Toshok  <toshok@ximian.com>
3472
3473         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
3474         rowcnt is 0 (such as with an empty datasource), and make sure we
3475         initialize not_usedarea.Y to cells.Y, so we don't draw over the
3476         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
3477
3478 2006-12-08  Chris Toshok  <toshok@ximian.com>
3479
3480         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
3481         grid.
3482
3483 2006-12-08  Chris Toshok  <toshok@ximian.com>
3484
3485         [ Fixes bug #80167 ]
3486         
3487         * ThemeWin32Classic.cs: don't draw the image if the button's flat
3488         style is FlatStyle.System.
3489
3490         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
3491         ButtonBase.flat_style private, and switch uses of it to the public
3492         property.
3493         
3494 2006-12-08  Chris Toshok  <toshok@ximian.com>
3495
3496         [ Fixes bug #80121 ]
3497         
3498         * ThemeWin32Classic.cs: center the caption text in the datagrid
3499         when we draw it.
3500
3501         * DataGrid.cs: lessen the amount we add to the caption height from
3502         6 to 2.  6 was making it huge.
3503
3504 2006-12-08  Andreia Gaita  <avidigal@novell.com>
3505
3506         * UpDownBase: Handle MouseWheel call directly instead of capturing
3507         the inner textbox's OnMouseWheel. Fixes #80166
3508
3509 2006-12-08  Jackson Harper  <jackson@ximian.com>
3510
3511         * TextControl.cs: We need to invalidate the textbox when we empty
3512         it (how had this not been discovered before?)
3513
3514 2006-12-08  Jackson Harper  <jackson@ximian.com>
3515
3516         * TextBoxBase.cs: Reworked the mouse down code so I could get it
3517         to behave like MS, we now ignore the eventargs.Click and just
3518         track state ourself, which we were already doing anyways.
3519         - Constrain the double click handler to the double click size.
3520         
3521 2006-12-08  Chris Toshok  <toshok@ximian.com>
3522
3523         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
3524         direction if that scrollbar isn't shown.  fixes bug #80158.
3525
3526 2006-12-08  Andreia Gaita  <avidigal@novell.com>
3527
3528         * NumericUpDown.cs: Update value on getter. Fixes #79950
3529
3530 2006-12-08  Chris Toshok  <toshok@ximian.com>
3531
3532         * MenuItem.cs: add back in the event cloning code.  I didn't know
3533         how to do it in the face of the EventHandlerList work i'd done
3534         last week.  Fixes bug #80183.
3535
3536 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
3537
3538         * Control.cs: Add an invalidate to the BackgroundImage setter.
3539         [Fixes 80184]
3540
3541 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
3542
3543         * ToolStrip*: Add some small properties reported by MoMA, fix event
3544         firing and default properties based off of unit tests, and add some
3545         attributes based off of the class status page.
3546
3547 2006-12-07  Jackson Harper  <jackson@ximian.com>
3548
3549         * TextBoxBase.cs: Take HideSelection into account when determining
3550         whether or not to show the selection.
3551         * RichTextBox.cs: After inserting the RTF into the document move
3552         the cursor to the beginning of the document.
3553
3554 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
3555
3556         * Control.cs: Remove static ArrayList "controls" which maintained
3557         a reference to every control created.
3558         * Application.cs: Create a static FormCollection to maintain a reference
3559         to every form created.  Use it in places that formerly enumerated through
3560         the controls one looking for forms.
3561         * Form.cs: Add and remove self from above FormCollection.
3562
3563 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
3564
3565         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
3566           not libgdk (though it makes me wonder why I didn't have any
3567           problems)
3568
3569 2006-12-07  Chris Toshok  <toshok@ximian.com>
3570
3571         [ you had to know this was coming after that last commit...]
3572         
3573         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
3574         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
3575         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
3576         XCopyArea).
3577
3578 2006-12-07  Chris Toshok  <toshok@ximian.com>
3579
3580         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
3581         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
3582         all the behavior we need for double buffering.
3583
3584         * XplatUIDriver.cs: implement the 3 double buffer methods using a
3585         client side Bitmap, just like the old Control-based double buffer
3586         code did.  The methods are virtual, so each XplatUI driver
3587         subclass can replace the implementation to use a faster, platform
3588         specific approach.
3589
3590         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
3591         double buffer code, and clean things up a bit in the process.
3592
3593 2006-12-06  Chris Toshok  <toshok@ximian.com>
3594
3595         * Control.cs: reindent WndProc.
3596
3597 2006-12-06  Chris Toshok  <toshok@ximian.com>
3598
3599         [ I wanna be like BenM when I grow up ]
3600         
3601         * Hwnd.cs: create a single static Graphics object on the static
3602         Bitmap we create.  use this for our text measurements.
3603
3604         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
3605         This was causing us to allocate a backbuffer for every control,
3606         even when it wasn't flagged as double buffered.  Instead use the
3607         single graphics instance.  This might have implications for
3608         multithreaded applications.  If we run into problems we can switch
3609         to creating 1 Graphics per control, on the static Hwnd bitmap.
3610
3611         this change nets us a 7M savings in private dirty mappings when
3612         running FormsTest.exe.
3613
3614 2006-12-06  Chris Toshok  <toshok@ximian.com>
3615
3616         * ListView.cs: the BackgroundImage override is just to set
3617         attributes.  chain up to base.BackgroundImage.
3618
3619         * RichTextBox.cs: same.
3620
3621         * ToolBar.cs: same, but we need to also redraw the toolbar when it
3622         changes, so instead a handler for BackgroundImageChanged.
3623         
3624         * Control.cs: make background_image private.
3625
3626 2006-12-06  Chris Toshok  <toshok@ximian.com>
3627
3628         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
3629         sure we even need this assignment, but roll with it for now.
3630
3631         * Control.cs: make the cursor field private.
3632
3633 2006-12-06  Chris Toshok  <toshok@ximian.com>
3634
3635         * Form.cs: we don't need to explicitly set ImeMode to
3636         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
3637         behavior in the face of ImeMode.Inherit.
3638
3639         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
3640         change the ctor's assignment to use ImeMode instead of ime_mode.
3641
3642         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
3643         ImeModeInherit.  Only check for the parent's imemode (and return
3644         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
3645         This fixes the button unit test, which sets both ImeMode and
3646         DefaultImeMode to ImeMode.Disable.
3647
3648         also make the ime_mode field private.
3649
3650 2006-12-06  Chris Toshok  <toshok@ximian.com>
3651
3652         * Control.cs: make control_style private.
3653
3654         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
3655         setting the styles to true, then setting them to false instead of
3656         reverting to their previous values.
3657
3658         also, call SetStyle on the scrollbars instead of using
3659         control_style directly.
3660
3661 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
3662
3663         * FormCollection.cs: Implement. [2.0]
3664
3665 2006-12-06  Chris Toshok  <toshok@ximian.com>
3666
3667         * Control.cs: make tab_stop private.
3668
3669         * Label.cs: set TabStop, not tab_stop.  reformat some event
3670         add/remove methods to make them more compact.
3671
3672 2006-12-06  Chris Toshok  <toshok@ximian.com>
3673
3674         * RadioButton.cs: fix TabStop handling.
3675
3676 2006-12-06  Chris Toshok  <toshok@ximian.com>
3677
3678         * TextBox.cs: remove the explicit assignments to has_focus.
3679         Control does that.
3680
3681         * ButtonBase.cs: remove the assignment to has_focus.  Control will
3682         manage that.
3683         
3684 2006-12-06  Chris Toshok  <toshok@ximian.com>
3685
3686         * ButtonBase.cs: remove all uses of is_enabled from this code.
3687         it's always true when any of the code containing the checks is
3688         executed.
3689
3690 2006-12-06  Chris Toshok  <toshok@ximian.com>
3691
3692         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
3693         with different semantics (some are present in both 1.1 and 2.0
3694         profiles) so that we match MS's behavior in our unit tests.
3695
3696 2006-12-06  Jackson Harper  <jackson@ximian.com>
3697
3698         * TextControl.cs: Make this operation undoable.
3699         * TextBoxBase.cs: Factor the border width into the preferred
3700         height.
3701         - implement Modified as per the spec.
3702
3703 2006-12-06  Chris Toshok  <toshok@ximian.com>
3704
3705         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
3706
3707 2006-12-06  Chris Toshok  <toshok@ximian.com>
3708
3709         * Control.cs: make right_to_left and context_menu fields private.
3710
3711 2006-12-06  Chris Toshok  <toshok@ximian.com>
3712
3713         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
3714         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
3715         Control.child_controls private.  switch all uses over to
3716         Control.Controls.
3717
3718 2006-12-06  Chris Toshok  <toshok@ximian.com>
3719
3720         * System.Windows.Forms/GroupBox.cs,
3721         System.Windows.Forms/AccessibleObject.cs,
3722         System.Windows.Forms/ErrorProvider.cs,
3723         System.Windows.Forms/Control.cs,
3724         System.Windows.Forms/UpDownBase.cs,
3725         System.Windows.Forms/ScrollBar.cs,
3726         System.Windows.Forms/DateTimePicker.cs,
3727         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
3728         System.Windows.Forms/ToolTip.cs,
3729         System.Windows.Forms/RadioButton.cs,
3730         System.Windows.Forms/LinkLabel.cs,
3731         System.Windows.Forms/Splitter.cs,
3732         System.Windows.Forms/TextBoxBase.cs,
3733         System.Windows.Forms/ToolStripTextBox.cs,
3734         System.Windows.Forms/ContainerControl.cs,
3735         System.Windows.Forms/ThemeWin32Classic.cs,
3736         System.Windows.Forms/SizeGrip.cs,
3737         System.Windows.Forms/ToolStripDropDown.cs,
3738         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
3739         private.  switch all uses over to Control.Parent.
3740
3741 2006-12-06  Chris Toshok  <toshok@ximian.com>
3742
3743         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
3744         Control does this before calling emitting these events.
3745
3746         * TabControl.cs: same.
3747
3748         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
3749         Control.client_rect.
3750
3751         * ButtonBase.cs: use the ClientSize property instead of the
3752         client_size field.
3753
3754         * ScrollableControl.cs: same.
3755
3756         * Control.cs: another pass at making properties private.  also,
3757         move the initialization of tab_stop to the ctor.
3758
3759 2006-12-05  Andreia Gaita <avidigal@novell.com>
3760
3761         * TabControl.cs: Let the selected index be set freely if the 
3762         control handle is not yet created.
3763
3764 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
3765
3766         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
3767         internal until I can rewrite DefaultLayout.
3768         * ToolStrip.cs: Fix build error and some general cleaning.
3769         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
3770         Fix build errors caused by making some of Control's fields private.
3771
3772 2006-12-05  Jackson Harper  <jackson@ximian.com>
3773
3774         * TextControl.cs: Redo Insert a little so that it use IndexOf
3775         instead of Split, this prevents it from messing up on things like
3776         \n\n\n. Also more effecient since the split array doesn't need to
3777         be created.
3778         * TextBoxBase.cs: AppendText doesnt handle multiline and non
3779         multiline text differently, this is the first of many fixes that
3780         will make multiline/non-multiline the same thing as far as the
3781         TextBoxBase is concerned.
3782         - Don't split the text and insert lines, this can lose some line
3783         endings (like is the last line a soft or hard break). Instead use
3784         the new Insert.
3785         - Fix an off by one when combining all the lines in the Text
3786         getter.
3787         - Remove separate multiline handling from the Text getter/setter.
3788
3789 2006-12-05  Chris Toshok  <toshok@ximian.com>
3790
3791         * ButtonBase.cs: a few changes:
3792
3793         - don't reinitialize internal Control fields in the ctor when they
3794         have the same values as Control sets them.
3795
3796         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
3797         this before calling those methods.
3798
3799         - we don't need to call Refresh for anything.  use Invalidate
3800         instead.
3801
3802         - OnEnabledChanged doesn't need to redraw at all - Control.cs
3803         calls Refresh in its OnEnabledChanged.
3804         
3805         - several of the events we were registered for in the ctor to
3806         redraw ourselves already include calls to Invalidate in the
3807         property setters that raise the events.  remove the extra
3808         invalidation.
3809
3810         - reformat a switch statement that was 83274658 columns wide.
3811         
3812 2006-12-05  Mike Kestner  <mkestner@novell.com>
3813
3814         * ComboBox.cs: fix a unit test regression from a TextBox
3815         SelectionLength return of -1 when there's no selection.  
3816
3817 2006-12-05  Chris Toshok  <toshok@ximian.com>
3818
3819         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
3820         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
3821         cleaning up some of the internal Control fields being used by
3822         subclasses.
3823
3824 2006-12-05  Mike Kestner  <mkestner@novell.com>
3825
3826         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
3827         listbox after AddImplicit calls since it defaults to hidden. Add a 
3828         hack to preserve requested heights across DropDownStyle changes.
3829
3830 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
3831
3832         * PropertyGrid.cs: Hide FindFirstItem method from public API.
3833
3834 2006-12-05  Chris Toshok  <toshok@ximian.com>
3835
3836         * DataGridView.cs: fix compiler warnings.
3837
3838         * PrintControllerWithStatusDialog.cs: same.
3839
3840         * ToolBar.cs: same.
3841
3842         * FolderBrowserDialog.cs: same.
3843
3844         * Splitter.cs: same.
3845
3846         * DataGridViewComboBoxCell.cs: same.
3847
3848         * XplatUIWin32.cs: same.
3849
3850         * PictureBox.cs: same.
3851
3852         * Win32DnD.cs: same.
3853
3854         * PageSetupDialog.cs: same.
3855
3856         * FileDialog.cs: same.
3857
3858         * PrintDialog.cs: same.
3859
3860         * DataGridTextBoxColumn.cs: same.
3861
3862         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
3863
3864 2006-12-05  Chris Toshok  <toshok@ximian.com>
3865
3866         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
3867         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
3868         System.ComponentModel.EventHandlerList work.
3869
3870 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
3871
3872         * DrawTreeNodeEventArgs.cs: Added.
3873
3874 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3875         
3876         * InternalWindowManager.cs: Remove an unused field.
3877         
3878 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3879
3880         * InternalWindowManager.cs:
3881         - Save the point where the title bar is clicked.
3882         
3883         * MdiWindowManager.cs:
3884         - Only allow moving of the window as long as the 
3885         clicked point on the title bar does not get out of
3886         MdiClient's rectangle. Fixes #79982.
3887         
3888         * MdiClient.cs:
3889         - Added Horizontal/VerticalScrollbarVisible.
3890         - Simplified the scrollbar sizing algorithm.
3891         - Cache the difference in scrolled value in
3892         H/VBarValueChanged and move the calculation out
3893         of the for loop.
3894
3895 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3896
3897         * Control.cs: Make the Console.WriteLine in WndProc 
3898         write more info.
3899
3900 2006-12-05  Chris Toshok  <toshok@ximian.com>
3901
3902         * ToolStripManager.cs, ToolStripButton.cs,
3903         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
3904         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
3905         ToolStripSplitButton.cs, ToolStripSeparator.cs,
3906         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
3907         ToolStripProgressBar.cs, ToolStripContainer.cs,
3908         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
3909         to using System.ComponentModel.EventHandlerList.
3910
3911 2006-12-04  Chris Toshok  <toshok@ximian.com>
3912
3913         * LinkLabel.cs: fix up compiler warnings.
3914
3915         * TableLayoutSettings.cs: same.
3916
3917         * TreeView.cs: same.
3918
3919         * ToolBar.cs: same.
3920
3921         * TabControl.cs: same.
3922
3923         * RichTextBox.cs: same.
3924
3925         * ListViewItem.cs: same.
3926
3927         * PropertyGrid.cs: same.
3928
3929         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
3930
3931         * ToolTip.cs same.
3932
3933         * TextRenderer.cs: fix up compiler warnings.
3934
3935         * Label.cs: same.
3936
3937         * Form.cs: corcompare fixes.
3938
3939         * PictureBox.cs: fix up compiler warnings.
3940
3941         * ImageListStreamer.cs: same.
3942
3943         * TrackBar.cs: corcompare fix.
3944
3945         * Control.cs: fix up compiler warnings.
3946
3947         * SplitterPanel.cs: same.
3948
3949         * NumericTextBox.cs: same.
3950
3951         * ImageList.cs: same.
3952
3953         * StatusStrip.cs: same.
3954
3955         * ProgressBar.cs: corcompare fix.
3956
3957         * ToolStripButton.cs: fix up compiler warnings.
3958
3959         * ToolStripStatusLabel.cs: same.
3960
3961         * ToolStripSplitButton.cs: same.
3962
3963         * ToolStripSeparator.cs: same.
3964
3965         * ToolStripProgressBar.cs: same.
3966
3967         * ToolStripDropDownMenu.cs: same
3968
3969         * ToolStripDropDown.cs: same.
3970
3971         * ToolStripDropDownButton.cs: same.
3972
3973         * ToolStrip.cs: same.
3974
3975         * ToolStripControlHost.cs: same.
3976
3977         * ToolStripContentPanel.cs: same.
3978
3979         * ToolStripDropDown.cs: same.
3980
3981         * ToolStripContainer.cs: same.
3982
3983         * ToolStripPanel.cs: same, and add "new" where we need it to work
3984         with the new ArrangedElementCollection.
3985
3986         * ToolStripItemCollection.cs: add "new" where we need it to work
3987         with the new ArrangedElementCollection.
3988
3989 2006-12-04  Andreia Gaita <avidigal@novell.com>
3990
3991         * TabControl.cs: Fix default tab selection to after TabControl
3992         gets focus and not before. Fixes #80128
3993
3994 2006-12-04  Chris Toshok  <toshok@ximian.com>
3995
3996         * DataGridTableStyle.cs: remove the gross calling of
3997         datagrid.Refresh from here.  It's a broken idea and it doesn't
3998         work anyway.
3999
4000         * DataGrid.cs: instead, just register/unregister from the
4001         DataGridTableStyle events in CurrentTableStyle.  we play it
4002         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
4003         even though some would most likely not require it.  Fixes bug
4004         #80115 (and one portion of #80117 as a side effect).
4005
4006 2006-12-04  Chris Toshok  <toshok@ximian.com>
4007
4008         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
4009         so the textbox (if any) goes away.  Fixes bug #80117.
4010
4011 2006-12-04  Chris Toshok  <toshok@ximian.com>
4012
4013         * DataGridColumnStyle.cs: set the column's readonly property
4014         initially based on the property descriptor's IsReadOnly.  Fixes
4015         bug #80044.
4016
4017 2006-12-04  Chris Toshok  <toshok@ximian.com>
4018
4019         * ComboBox.cs: wrap the dropdown style changing work in
4020         SuspendLayout/ResumeLayout.  Fixes bug #79968.
4021
4022 2006-12-04  Jackson Harper  <jackson@ximian.com>
4023
4024         * TextBoxBase.cs: Fix off by one, since these are one-based.
4025         * TextBox.cs: Select all the text when we get focus.  The TextBox
4026         does this but the RTB does not.
4027
4028 2006-12-04  Chris Toshok  <toshok@ximian.com>
4029
4030         * DataGridTextBoxColumn.cs: remove some spew.
4031
4032         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
4033         but some part of me is saying "it shouldn't be here.."  At any
4034         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
4035         setting the value.
4036
4037 2006-12-04  Chris Toshok  <toshok@ximian.com>
4038
4039         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
4040         to reassign the propertydescriptor.
4041
4042 2006-12-04  Jackson Harper  <jackson@ximian.com>
4043
4044         * TextBoxBase.cs:
4045         * TextControl.cs: Remove some unused variables.  Maybe this will
4046         patch things up between mike and I.
4047         - don't split lines less then one char wide, if the viewport is
4048         that small text won't be visible anyways.
4049         
4050 2006-12-04  Jackson Harper  <jackson@ximian.com>
4051
4052         * TextBoxBase.cs: Default selection length is -1, need to do some
4053         more testing on windows to see when this is used for the property.
4054         - Redid the Lines [] property to that we properly remove soft line
4055         breaks
4056         - added support for preserving carriage returns
4057         -  CanUndo is not a variable like 'is undo enabled' it just returns
4058         true if there is undo operations available.
4059         - AppendText doesn't need to grab the last tag itself anymore,
4060         this happens automatically when we move the cursor.
4061         * TextControl.cs: Add CompoundActions to the undo class. This
4062         allows combining the other operations into one big option.  ie a
4063         paste will combine { delete old, insert new, move cursor }
4064         - Add InsertString undo operation
4065         - New method for deleting multiline text
4066         - Add carriage returns to lines. So we can preserve carriage
4067         returns when text is 'roundtripped'
4068
4069 2006-12-04  Chris Toshok  <toshok@ximian.com>
4070
4071         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
4072         minimum 0.  Fixes the scrollbar exception in bug #80136.
4073
4074 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4075
4076         * MdiClient.cs: 
4077         * MdiWindowManager: Removed unused fields and methods.
4078         
4079 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4080         
4081         * StatusBar.cs: Update all panels when a AutoSize=Contents
4082         panel needs updating.
4083         
4084         * StatusBarPanel.cs: Remove twidth and only use initialize.
4085         Fixes #80031.
4086                 
4087 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4088
4089         * Form.cs: When a form's MdiParent is set add it directly
4090         on top of the z-order in stead of relying on MdiClient's
4091         ActivateChild to do it. Fixes #80135.
4092         
4093         * MdiClient.cs: 
4094         - Remove original_order, mdi_child_list is already doing
4095         the same thing.
4096         - Create mdi_child_list on construction in
4097         stead of first use (avoids a few null checks).
4098
4099         * MenuItem.cs: Use an already existing list of mdi children
4100         to get the correct order of children and remove the other
4101         redundant list.
4102
4103 2006-12-04  Chris Toshok  <toshok@ximian.com>
4104
4105         * PropertyGridView.cs: cached_splitter_location is only used in
4106         !DOUBLEBUFFER code.
4107
4108         * PropertyGrid.cs: implement the ComComponentNameChanged event
4109         using Events, hoping that would fix the warning.  Looks like a
4110         compiler bug instead (#80144).
4111
4112         * PropertyManager.cs: remove unused method.
4113
4114 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
4115
4116         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
4117         include parentesis to fix expression evaluation. Fixes #79634.
4118
4119 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
4120         
4121         * MenuAPI.cs:
4122         - Changes to fix behavior in Menu control, some reported in #80097
4123         and other detected during behavior refactory like a select event
4124         problems.
4125         - Remove unneded "if's" conditions.
4126         - Created an internal to flag when popup is active in control, we need 
4127         it because in .NET you can have menu active but without popup active
4128         when you active menu using popup without visible items.
4129         - Mimic win32 behavior for Select and Popup events.  
4130         - Dont open popup menu when you dont have visible subitems.
4131         - Do nothing when click on disabled menu item.
4132         - Some small changes to follow the coding style guidelines.
4133         - Unselect menu only when another control gives focus. Fixes #80097.
4134         - Remove unused code.
4135         
4136         * MenuItem.cs: internal VisibleItems method to check if menu
4137         theres visible subitems, it will be usefull to fix some 
4138         behavior in Menu control.
4139         
4140 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
4141         
4142         * Timer.cs: Tag property for 2.0 profile.
4143         
4144 2006-12-01  Chris Toshok  <toshok@ximian.com>
4145
4146         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
4147         
4148         * Win32DnD.cs: comment out some unused fields.
4149
4150         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
4151         some unused properties/methods.
4152
4153         * XplatUIX11.cs: fix MousePosition so we override the base class's
4154         property instead of conflicting with it.
4155
4156         * PictureBox.cs: comment out some unused fields
4157
4158         * OSXStructs.cs: make some struct fields public.
4159
4160         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
4161         MousePosition so we override the base class's property instead of
4162         conflicting with it.
4163
4164         * X11Dnd.cs: comment out some unused fields
4165
4166         * X11DesktopColors.cs: fix some struct field visibility to quiet
4167         the compiler.
4168
4169         * X11Dnd.cs: remove some debug code.
4170
4171         * ThemeClearlooks.cs: comment out unused field.
4172
4173         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
4174
4175         * ThemeGtk.cs: comment out some unused pinvokes.
4176
4177         * Timer.cs: remove some unused fields.
4178
4179         * ThemeClearlooks.cs: comment out unused field.
4180
4181         * UpDownBase.cs: comment out unused field.
4182
4183         * DataObject.cs: comment out unused field.
4184
4185         * DataGridBoolColumn.cs: reomve unused field.
4186
4187         * DataGrid.cs: remove unused field.
4188
4189         * Cursor.cs: remove old ToBitmap code.
4190
4191         * ControlPaint.cs: remove unused method.
4192
4193         * ScrollBar.cs: remove unused fields.
4194
4195         * ComboBox.cs: remove unused field, and chain up to
4196         AccessibleObject ctor.
4197
4198         * ListBox.cs: remove unused field.
4199
4200         * ButtonBase.cs: wrap a couple fields in NET_2_0.
4201
4202         * GridEntry.cs: remove unused fields.
4203
4204         * Binding.cs: remove unused fields.
4205
4206         * AxHost.cs: remove unused method.
4207
4208         * ContainerControl.cs: remove unused field.
4209
4210         * ScrollableControl.cs: remove unused fields.
4211
4212 2006-12-01  Chris Toshok  <toshok@ximian.com>
4213
4214         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
4215         the Where/WhereString stuff.  it's easy enough to CWL
4216         Environment.StackTrace.
4217
4218         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
4219         unused private fields.
4220
4221 2006-12-01  Jackson Harper  <jackson@ximian.com>
4222
4223         * TextControl.cs: Do not update the view while inserting multiline
4224         text. If we update the view we might wrap lines, before entering
4225         the new lines, which causes the new line insertion calculations to
4226         be totally fubared.
4227         - Remove an old TODO
4228         - Make debug output a little nicer
4229         
4230 2006-12-01  Chris Toshok  <toshok@ximian.com>
4231
4232         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
4233
4234 2006-12-01  Chris Toshok  <toshok@ximian.com>
4235
4236         [ fix the majority of the CS0108 warnings we've been suppressing ]
4237         
4238         * TreeView.cs: mark BackgroundImageChanged as 'new'.
4239
4240         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
4241         to "LayoutToolBar" to quiet mcs.
4242         
4243         * TabControl.cs: mark our ControlCollection class as 'new'.
4244
4245         * TextBoxBase.cs: mark some events as 'new'.
4246
4247         * Splitter.cs: TabStop is 'new'.
4248
4249         * ControlBindingsCollection.cs: mark a few methods as new since
4250         they change the visibility from protected to public.
4251
4252         * RadioButton.cs: DoubleClick -> base class, and remove unused
4253         HaveDoubleClick.
4254
4255         * MonthCalendar.cs: ImeMode property -> base class, and mark many
4256         events as new.
4257
4258         * NumericUpDown.cs: TextChanged -> base class.
4259
4260         * CheckedListBox.cs: mark our ObjectCollection class as new to
4261         quiet mcs.
4262
4263         * FolderBrowserDialog.cs: make HelpRequest event new and have it
4264         muck with the base class.
4265
4266         * StatusBar.cs: fix some mcs warnings about Update being the same
4267         name as a base class method.
4268
4269         * RichTextBox.cs: mark some events as new, and make them do things
4270         to the base class impl.
4271
4272         * UserControl.cs: mark TextChanged as new, and have it manipulate
4273         base.TextChanged.
4274
4275         * UpDownBase.cs: mark some things new.
4276
4277         * CheckBox.cs: mark DoubleClick "new", and add some text about
4278         what we need to look at.
4279
4280         * Panel.cs: make the events "new", and manipulate the base
4281         version.  these are just here for attributes.
4282
4283         * AccessibleObject.cs: make owner private.
4284
4285         * Control.cs: deal with AccessibleObject.owner being private.
4286         cache our own copy if we need it.
4287
4288         * Button.cs: add "new" to the DoubleClickEvent.
4289
4290         * ListBox.cs: no need to track our own has_focus here.  let
4291         Control.has_focus do it for us.  Also some other work to clear up
4292         warnings about not overriding base class methods of the same name.
4293         
4294         * ComboBox.cs: clear up some warnings about not override base
4295         class methods of the same name.
4296
4297 2006-12-01  Chris Toshok  <toshok@ximian.com>
4298
4299         * Form.cs: flag a few things as "new" to quiet some of the mcs
4300         warnings.
4301
4302         * AxHost.cs: same.
4303
4304         * PrintPreviewDialog.cs: same.
4305
4306         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
4307         now DGV isn't so horrible on the class status page.  also, move
4308         all events to using System.ComponentModel.EventHandlerList.  my
4309         wrists hurt.
4310
4311 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4312
4313         * MdiWindowManager.cs:
4314         - Set form to active mdi child if shown,
4315         and update the active mdi child to the next 
4316         remaining child in the z-order if the form is hidden.
4317
4318         * Form.cs: 
4319         - Track if the form has been visible and if its 
4320         visibility is beeing changed, so that the MdiClient
4321         can properly decide the ActiveMdiChild. The MdiClient 
4322         cannot track this since the form can change visibility 
4323         before MdiClient is created.
4324
4325         * MdiClient.cs:
4326         - Don't activate anything of the parent form is changing
4327         its visibility.
4328         - Rework ActiveMdiChild to only return visible mdi 
4329         children and take into account several other corner 
4330         cases.
4331
4332 2006-12-01  Chris Toshok  <toshok@ximian.com>
4333
4334         * IBindableComponent.cs: new 2.0 interface.
4335
4336 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
4337
4338         * DataGrid.cs: Font for caption area is bold by default.
4339
4340 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
4341
4342         * Menu.cs: Tag property for 2.0.
4343         
4344 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
4345
4346         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
4347         
4348 2006-12-01  Chris Toshok  <toshok@ximian.com>
4349
4350         * TreeView.cs: doh, the Begin* events should be
4351         TreeViewCancelEventHandler.
4352
4353 2006-12-01  Chris Toshok  <toshok@ximian.com>
4354
4355         * Form.cs: Form.ControlCollection already stores off the
4356         form_owner field.  don't access the base class's internal "owner"
4357         field.
4358
4359         * Control.cs: make all the fields in Control.ControlCollection
4360         private.  there's no need for any internal fields here.
4361
4362 2006-12-01  Chris Toshok  <toshok@ximian.com>
4363
4364         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
4365         OnHandleCreated.  Fixes bug #80109.
4366
4367 2006-12-01  Chris Toshok  <toshok@ximian.com>
4368
4369         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
4370         SplitContainer.cs, Control.cs, StatusStrip.cs,
4371         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
4372         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
4373         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
4374         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
4375         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
4376         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
4377         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
4378         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
4379         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
4380         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
4381
4382         do most of the work to convert our code over to use
4383         System.ComponentModel.Component.Events for
4384         adding/removing/dispatching events.
4385
4386
4387 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
4388
4389         * DataGridView.cs: Fix an ArgumentNullException reported 
4390         twice today in IRC.
4391
4392 2006-11-30  Mike Kestner  <mkestner@novell.com>
4393
4394         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
4395         grabbed listbox.  Fixes #80036 and #80101.
4396
4397 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
4398
4399         * Message.cs: Changed ToString() to match MS.
4400         
4401 2006-11-30  Jackson Harper  <jackson@ximian.com>
4402
4403         * TextBoxBase.cs: You can still change the selected text on a read
4404         only textbox.
4405         * TextControl.cs: Lower magic number for wrap calculations. This
4406         lets text get closer to the right (far) edge.
4407
4408 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
4409
4410         * Control.cs: Tweak 2.0 layout properties.
4411         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
4412         * TextRenderer.cs: Add a new overload.
4413         * ToolStrip*: Huge amount of changes and new features.
4414
4415 2006-11-30  Mike Kestner  <mkestner@novell.com>
4416
4417         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
4418         scroll range correct.  Fixes #79994.
4419
4420 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
4421
4422         * MdiWindowManager.cs: Update main form's text when
4423         a form is closed. (fixes #80038)
4424         
4425 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
4426
4427         * ToolBar.cs:
4428         - Fix an regression in ButtonSize.
4429         - Get ImeMode default value change to "Disable".
4430         - Get ShowTooltips default value change to true, default value is 
4431         "false" but after make a test in .NET we get "true" result as default.
4432         
4433 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
4434
4435         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
4436
4437 2006-11-29  Chris Toshok  <toshok@ximian.com>
4438
4439         * XplatUIWin32.cs (GetWindowTransparency): check return value of
4440         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
4441         SetWindowTransparency hasn't been called.
4442
4443 2006-11-29  Chris Toshok  <toshok@ximian.com>
4444
4445         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
4446         if it's supported.
4447         (set_AllowTransparency): reorder things a little so that the
4448         WS_EX_LAYERED style is removed properly.
4449
4450 2006-11-29  Chris Toshok  <toshok@ximian.com>
4451
4452         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
4453         
4454         * Form.cs: only call the XplatUI transparency method (get/set) if
4455         SupportsTransparency says it's supported. Otherwise fallback to
4456         doing nothing (in the set case) or returning the instance field we
4457         cache (in the get case).
4458
4459         * XplatUIStructs.cs: add TransparencySupport flag enum.
4460         
4461         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
4462         change to SupportsTransparency.
4463
4464         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
4465         TransparencySupport.None from SupportsTransparency.
4466
4467         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
4468         TransparencySupport.Set from SupportsTransparency.
4469
4470         * XplatUIWin32.cs: implement GetWindowTransparency calling
4471         GetLayeredWindowAttributes, and implement SupportsTransparency by
4472         checking whether or not both
4473         GetWindowTransparency/SetWindowTransparency are available
4474         entrypoints.  We need to do this since SetWindowTransparency is
4475         available as of win2k, but GetWindowTransparency requires winxp.
4476         yay win32 api.
4477
4478         * XplatUI.cs: Add GetWindowTransparency, and change
4479         SupportsTransparency to allow for either/both Get/Set.
4480
4481 2006-11-29  Chris Toshok  <toshok@ximian.com>
4482
4483         * DataGrid.cs: keep from going into an infinite loop redrawing a
4484         datagrid that has no datasource.  Fixes bug #80033.
4485
4486 2006-11-29  Chris Toshok  <toshok@ximian.com>
4487
4488         * MenuItem.cs: fix the NRE when we assign text (and therefore call
4489         Invalidate) before the mainmenu has been assigned to a control.
4490
4491 2006-11-29  Chris Toshok  <toshok@ximian.com>
4492
4493         * DataGrid.cs: detect when we should be double the double click
4494         row/column autosize stuff, although that codepath has yet to be
4495         written.  part of the work for bug #79891.
4496
4497 2006-11-29  Chris Toshok  <toshok@ximian.com>
4498
4499         * Binding.cs (SetControl): fix unit test.
4500
4501 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4502
4503         * PageSetupDialog.cs: Validate the margins and set them in
4504         PageSettings. 
4505         * NumericTextBox.cs: New class to mimic the behavior of the
4506         textboxes used in the printing dialogs.
4507
4508 2006-11-29  Andreia Gaita  <avidigal@novell.com>
4509         
4510         * Form.cs: Revert previous change (remove call UpdateBounds
4511         from form constructor), because it messes with the handle creation
4512         order, and that one needs lots and lots of love.
4513         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
4514         for valid printer and throw InvalidPrinterException if document
4515         is set but printer not valid), adding a MonoTODO. Once 
4516         handle creation is done properly, we can put this back in.
4517
4518 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4519
4520         * MenuItem.cs: Create a invalidate method for menu item, to be
4521         calling from set text, it make text changes to imadiate update
4522         on screen. Fixes #80013. 
4523         
4524 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4525
4526         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
4527         fixes bug #80070 and some other problem on toolbar buttons
4528         layout.
4529
4530 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
4531
4532         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
4533         with dotted brush.      Fixes #79564
4534         
4535 2006-11-28  Andreia Gaita  <avidigal@novell.com>
4536
4537         * Form.cs: Removed call to UpdateBounds on Form
4538         constructor, it was causing a call to CreateHandle
4539         before it was supposed to.
4540         * PrintControllerWithStatusDialog: Applied patch
4541         by Chris Toshok to hide controller when there are
4542         no printers available.
4543         PrintDialog.cs: initialize printer settings to 
4544         null - correct DefaultValues test #5
4545         * PrintPreviewControl.cs: Move PrintController
4546         initialization to GeneratePreview
4547         * PrintPreviewDialog.cs: 
4548         - Remove Preview generation     from Document_set(). It is 
4549         called on OnPaint
4550         - Throw InvalidPrinterException on CreateHandle if
4551         a Document is set but there are no printers or 
4552         printer is not valid.
4553         * ThemeWin32Classic: don't paint PrintPreviewControl
4554         if there is nothing to paint    
4555
4556 2006-11-28  Miguel de Icaza  <miguel@novell.com>
4557
4558         * Form.cs: Add another popular method.
4559
4560         * TabPage.cs: ditto.
4561
4562 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4563
4564         * MenuItem.cs: Fixed a warning.
4565         * InternalWindowManager: Fixed a warning.
4566
4567 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4568
4569         * MenuItem.cs:
4570         - When cloning a menu also clone MdiList and clone the 
4571           window menu items properly (as the forms and menuitems
4572           are kept in an internal hashtable, these need updating 
4573           as well)
4574         - Rewrote the window menu code, menu items are added in the
4575           order the forms were added to their parent, and they are
4576           updated every time the window menu is shown (before the
4577           list was only generated once, in the current order of the
4578           forms, and would never be updated). A checkmark is shown
4579           next to the item corresponding to the active mdi child.
4580
4581 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4582
4583         * XplatUIStructs.cs: 
4584         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
4585         
4586         * XplatUIWin32.cs: 
4587         - Added TME_NONCLIENT to TMEFlags.
4588         - Handles WM_NCMOUSEMOVE in GetMessage to 
4589           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
4590
4591         * MdiWindowManager:
4592         - Now merges mdi child menu to parent menu when maximized.
4593         - Recalculate NC areas of both mdi child and mdi parent. 
4594           Fixes #79757 (4).
4595           on window state and size changes.Fixes #79844 (3).
4596         - Handle WM_NCCALCSIZE to properly calculate borders.
4597
4598         * Form.cs:
4599         - Add/remove to the mdi containers list of mdi children 
4600           in the order they are added.
4601         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
4602           to the maximized mdi child.
4603         
4604         * InternalWindowManager.cs:
4605         - Only execute a click on the control buttons on the mouse up,
4606           not on the mouse down. Show the state of the button 
4607           (was only showing Normal state, never Pressed state). The
4608           pressed button now follows the mouse (if you click the Close 
4609           button and move the mouse over the Maximize button, the 
4610           Maximize button will be shown as pressed). Since Win32 does
4611           not generate WM_NCLBUTTONUP if you release the button outside
4612           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
4613           it as a mouse up.
4614         
4615         * ThemeWin32Classic.cs:
4616         - Draw a missing border around mdi child forms. Fixes #79844 (2).
4617
4618         * MdiClient.cs:
4619         - Added a list of forms which contains the order the forms are
4620           added to the mdi parent.
4621         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
4622         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
4623         - If the active form changes set the scrollbars to the top
4624           of the Z order, otherwise the form could hide them.
4625         - Scrollbars are now sized according to ClientSize, not 
4626           to Size, and they take into account the other scrollbar
4627           to determine maximum.
4628         
4629 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
4630         
4631         * XplatUI.cs:
4632         * XplatUIDriver.cs:
4633         * XplatUIX11.cs:
4634         * XplatUIWin32.cs:
4635         * XplatUIOSX.cs:
4636         - Added RequestAdditionalWM_NCMessages for windows to 
4637           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
4638           Currently only implemented in XplatUIWin32.
4639
4640 2006-11-27  Chris Toshok  <toshok@ximian.com>
4641
4642         * Hwnd.cs: only add the hwnd to the windows hash in
4643         set_WholeWindow and set_ClientWindow if whole_window/client_window
4644         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
4645
4646 2006-11-27  Mike Kestner  <mkestner@novell.com>
4647
4648         * ComboBox.cs: remove redundant OnDropDown call.  It is called
4649         from the ComboListBox.ShowWindow code. Fixes #79969.
4650
4651 2006-11-27  Chris Toshok  <toshok@ximian.com>
4652
4653         * Hwnd.cs: remove the setters for ExposePending and
4654         NCExposePending - noone uses them.
4655
4656 2006-11-27  Jackson Harper  <jackson@ximian.com>
4657
4658         * TextControl.cs: new param for ReplaceSelection which determines
4659         whether we select the new selection, or set the cursor to the end
4660         of the new selection.
4661         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
4662         pasting, select the new text.
4663         * RichTextBox.cs: Use new param for ReplaceSelection.
4664
4665 2006-11-27  Jackson Harper  <jackson@ximian.com>
4666
4667         * TextBoxBase.cs: Set the selection to the caret after the caret
4668         is moved, otherwise they get out of sync.
4669
4670 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4671
4672         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
4673         it fixes #80015
4674
4675 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
4676
4677         * ThemeWin32Classic.cs: 
4678         - Fix toolbar drop down arrow position.
4679         - Fix drop down appearance when ToolBar.Appearance is normal,
4680         it fixes #80018.
4681         
4682 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
4683
4684         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
4685         * Control.cs: Same.
4686         * UpDownBase.cs: Same.
4687         * ButtonBase.cs: Same.
4688         * ScrollBar.cs: Same.
4689         * TrackBar.cs: Same.
4690         * PictureBox.cs: Same.
4691         * UserControl.cs: Same.
4692         * Label.cs: Same.
4693         * ListControl.cs: Same.
4694         * TextBoxBase.cs: Same.
4695         * ListView.cs: Same.
4696         * RichTextBox.cs: Same.
4697         * TreeView.cs: Same.
4698
4699 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
4700
4701         * PrintDialog.cs:
4702         - Text label for where 
4703         - Text label comment was not shown
4704
4705 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
4706
4707         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
4708
4709 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4710
4711         * InternalWindowManager.cs: 
4712         - Handle WM_PARENTNOTIFY to activate the form
4713         if any child control is clicked.
4714         - The form is only sizable if not minimized.
4715
4716         * MdiWindowManager.cs:
4717         - Save the IconicBounds if the form is moved.
4718         - Rework SetWindowState, now the window bounds 
4719         are stored only if the old window state is Normal.
4720         
4721         * MdiClient.cs:
4722         - In SetWindowStates store the old window state if 
4723         the window is maximized and restore window state if
4724         the window looses focus.
4725         - Don't handle any scrollbar value changes if 
4726         initializing the scroll bars. Fixes #79771.
4727         - Reworked ArrangeIconicWindows. Current algorithm
4728         tests bounds agains all other minimized windows, if
4729         any intersections create new bounds (going left to 
4730         right, bottom to top) and then test again. When 
4731         successful the bounds are saved and never computed
4732         again. Fixes #79774.
4733
4734 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4735
4736         * InternalWindowManager.cs: Added HandleTitleBarUp.
4737
4738 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4739
4740         * NumericUpDown.cs: In .NET 1.1, user entered text is still
4741         hexadecimal in ParseUserEdit.
4742
4743         
4744 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
4745
4746         * MdiWindowManager.cs: 
4747         - Handle a click on the form's icon to show the 
4748         system menu (when maximized). Fixes #79775.
4749         - Change the existing click handler for the form's
4750         icon when not maximized to show on MouseUp.
4751         Fixes #79776.
4752
4753         * Form.cs: In OnResize only layout the mdi child's
4754         parent if it actually has a parent. Might not if
4755         the window is closing.
4756
4757
4758 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4759
4760         * MdiClient.cs: Ignore active MDI client for text of parent, if
4761         child has no text set.
4762
4763 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
4764
4765         * ToolBar.cs: Fixed ToString to match MS.
4766
4767 2006-11-22  Andreia Gaita  <avidigal@novell.com>
4768
4769         * NumericUpDown: 
4770         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
4771         update inner values on set. Fixes #79966.
4772         - Override OnLostFocus to update value on NET 2. Fixes #79950.
4773         - Fix hexadecimal parsing.
4774         
4775         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
4776         parent. Fixes #79957
4777
4778 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4779
4780         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
4781         the actual size has to be queried, since if height /
4782         width is negative Win32 changes it to 0. 
4783         Fixes #79999 on Windows.
4784         
4785         * XplatUIX11.cs: Set height / width to 0 if negative
4786         in SetWindowPos. Fixes #79999 on Linux.
4787         
4788 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4789
4790         * ThemeWin32Classic.cs: Fix text redenring when button is
4791         pressed.
4792
4793 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
4794
4795         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
4796         and later navigate by mouse. Fixes #79528.
4797
4798 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4799
4800         * ToolBar.cs: Set default value for TabStop to false in
4801         constructor, it fixes remaining behavior of bug #79863.
4802
4803 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4804
4805         * MdiWindowManager.cs:
4806         * InternalWindowManager.cs:
4807         - Moved a few methods specific to Mdi from 
4808         InternalWindowManager to MdiWindowManager.
4809         Fixes #79996.
4810         
4811 2006-11-21  Chris Toshok  <toshok@ximian.com>
4812
4813         * XplatUIOSX.cs: stub out InvalidateNC.
4814
4815         * XplatUIWin32.cs: implement InvalidateNC using the call I found
4816         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
4817
4818         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
4819
4820         * XplatUIDriver.cs: add InvalidateNC abstract method.
4821
4822         * XplatUI.cs: add InvalidateNC.
4823
4824 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
4825
4826         * ToolBar.cs: Invalidate complete button area when pressed status 
4827         was changed.
4828         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
4829         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
4830         by 1 when button is pressed.
4831
4832 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4833
4834         * ToolButton.cs: Invalidate middle of DropDown button when
4835         ToolBar theres DropDownArrows.
4836         * ThemeWin32Classic.cs: Change position of DropDown arrow and
4837         fix DropDown drawing operations.
4838
4839 2006-11-20  Chris Toshok  <toshok@ximian.com>
4840
4841         * NativeWindow.cs: fix the formatting of functions ('{' on the
4842         following line), and enable the thread exception dialog.
4843
4844         * Application.cs: remove the duplicate exception catching from
4845         here.
4846
4847 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4848
4849         * Toolbar.cs: Triggers button click event when click on icon
4850         of dropdown ToolBarButton. Fixes #79912.
4851         
4852 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4853
4854         * Theme.cs:
4855         * ThemeWin32Classic.cs:
4856         - Added a property WindowBorderFont to enable themeing
4857           of mdi child windows' Text.
4858           
4859 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4860
4861         * InternalWindowManager.cs:
4862         * Form.cs:
4863         * MdiClient.cs:
4864         * MdiWindowManager.cs: 
4865         - If mdi child is maximized, set mdi parent's
4866           text to "Parent - [Child]". Fixes #79770.
4867         - If there is any maximized mdi child windows, only the active 
4868           window (and any new windows) is maximized, the rest are normal.
4869         - On a WindowState change only save mdi child's window bounds 
4870           if the old window state was normal. Fixes #79774.
4871         - The scroll bars are now calculated on hopefully all
4872           necessary events. Fixed #79771 / #79844->6 / #79906.
4873         - MdiClient.SizeScrollBars() now takes into account docked 
4874           controls in the parent when calculating available space.
4875         - InternalWindowManager now always repaints the entire title
4876           area. Fixes #79844->1/4/5.
4877         - Added RequestNCRecalc on mdi child windowstate changes.
4878           Fixes #79772.
4879
4880 2006-11-20  Mike Kestner  <mkestner@novell.com>
4881
4882         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
4883         in the MouseUp handler of the listbox and move the return handling
4884         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
4885
4886 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
4887
4888         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
4889
4890 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
4891
4892         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
4893           working in 1.2.x anymore. So, updated.
4894
4895 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
4896
4897         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
4898         NumberGroupSeparator of current culture instead of assuming en-US.
4899         Fixed bug #79967.
4900
4901 2006-11-17  Mike Kestner  <mkestner@novell.com>
4902
4903         * Control.cs: Add the concept of implicit bounds setting so that
4904         dock/undock round trips preserve explicitly set size/locations.
4905         Fixes #79313.
4906
4907 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
4908
4909         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
4910           can't handle those filters. (Fixes bug #79961)
4911
4912 2006-11-17  Chris Toshok  <toshok@ximian.com>
4913
4914         [ fixes the exit/crashes associated with #79835.  it's clearly
4915         suboptimal though, we need to figure out a better way to solve
4916         this. ]
4917         
4918         * PrintPreviewControl.cs: deal with the new invalid printer
4919         exceptions.
4920
4921         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
4922         and return false (so CommonDialog.ShowDialog doesn't actually show
4923         the form.)
4924
4925         * PrintDialog.cs: enable/disable the Ok button depending on
4926         whether or not the printer is valid.
4927
4928         * CommonDialog.cs (ShowDialog): only actually show the form if
4929         RunDialog returns true.
4930
4931 2006-11-17  Jackson Harper  <jackson@ximian.com>
4932
4933         * TextControl.cs: When soft splitting a line, mark it as a soft
4934         split line. Also carry over the current line break to the next
4935         line.
4936
4937 2006-11-17  Chris Toshok  <toshok@ximian.com>
4938
4939         * XplatUIX11.cs: when scrolling a window with an invalid area, we
4940         only want to shift the part of the invalid area that overlaps the
4941         area we're scrolling.  we also don't want to clear the invalid
4942         area unless the invalid area was entirely contained within the
4943         scrolling area.
4944
4945 2006-11-16  Chris Toshok  <toshok@ximian.com>
4946
4947         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
4948         also make sure to free the memory returned by XGetWindowProperty
4949         in GetText().
4950
4951         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
4952
4953 2006-11-16  Chris Toshok  <toshok@ximian.com>
4954
4955         * XplatUI.cs: add a new super secret way to get at the totally
4956         unsupported X11 backend.
4957
4958 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
4959
4960         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
4961
4962 2006-11-16  Jackson Harper  <jackson@ximian.com>
4963
4964         * TreeView.cs: Allow more explicit setting of top node position
4965         for scrollbars. Slower algo, but more accurate.
4966         - CollapseAll should maintain the current top node.
4967         * TextBoxBase.cs: When positioning the caret, use the line, pos
4968         method, since the x, y method does not grab the correct tag, and
4969         the caret height never gets set correctly. (Maybe I should just do
4970         away with the caret having its own height, and always use the
4971         carets current tag for height).
4972
4973 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
4974
4975         [Fixes 79778, 79923]
4976
4977         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
4978         Parent to the FosterParent instead.
4979
4980 2006-11-16  Jackson Harper  <jackson@ximian.com>
4981
4982         * TreeView.cs: Need to recalc the topnode when we expand or
4983         collapse. The scrolling methods can't handle this on their own,
4984         since they use differences between the last scroll position, and
4985         those difference get completely messed up since we are expanding
4986         nodes.  This problem should probably be fixed in the scrolling
4987         methods, so they can figure out exactly where they are, but this
4988         will slow things down a little.
4989         * ThemeWin32Classic.cs: Special case for groupboxes with empty
4990         strings, makes nunit-gui look a lot nicer.
4991
4992 2006-11-16  Chris Toshok  <toshok@ximian.com>
4993
4994         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
4995         the broken multithreaded event handling we have in here.  File
4996         this entry under "Why we should move to the new X11 backend".
4997
4998         Any thread can make it into UpdateMessageQueue, which gets events
4999         from the X socket - some of which could belong to hwnds being
5000         managed by a different thread.  We can also have multiple threads
5001         in UpdateMessageQueue at the same time, with each one reading from
5002         the X socket.  This leads to many problems, with the following
5003         solutions:
5004
5005         We can't use hwnd.Queue.Enqueue anywhere in here and must use
5006         EnqueueLocked.
5007
5008         The MotionNotify compression we do can't work across threads
5009         (without locking the entire queue, perhaps) since we call
5010         hwnd.Queue.Peek, so we just punt and don't compress motion events
5011         unless the owning thread is the one which got the X event.
5012
5013         ConfigureNotify is another fun one, since it modifies the hwnd's
5014         bounds and then enqueues the event.  We add a lock to Hwnd which
5015         is held when setting configure_pending to true (and enqueuing the
5016         event).
5017
5018         There is a race wrt the wake socket.  we need to make sure that
5019         only 1 thread is waiting on that socket, or else a thread could
5020         sleep waiting for data that never comes.  It's difficult (but not
5021         impossible) to make happen, because it seems to require something
5022         like the following:
5023
5024             1. Thread 1 polls on wake_receive
5025         
5026             2. poll returns saying there's data to be read on
5027                wake_receive.
5028         
5029             3. Thread 2 polls on wake_receive and immediately returns
5030                saying there's data to be read.
5031
5032             4. Thread 2 reads the wakeup byte from wake_receive
5033
5034             5. Thread 1 attempts to read the wakeup byte from
5035                wake_receive.
5036
5037             6. Thread 2 exits (due to a form closing, perhaps).
5038
5039             7. Thread 1 blocks forever.
5040         
5041         Fun, eh?
5042
5043         Fixing the Expose handling isn't done yet, and the races inherent
5044         in that piece of code are responsible for the drawing mistakes you
5045         see when generating expose events in a MT app (like NPlot).  This
5046         one is the likely to be the hardest to bandaid, and it doesn't
5047         appear to cause anything but drawing problems.  The other issues
5048         caused apps to exit or hang.
5049
5050         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
5051         called from a different thread than the one that should be calling
5052         these functions.
5053
5054         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
5055
5056 2006-11-15  Chris Toshok  <toshok@ximian.com>
5057
5058         * Application.cs: null out the context's MainForm when we exit
5059         RunLoop.  Fixes a newly checked in unit test as well as the last
5060         ODE from bug #79933.
5061
5062 2006-11-15  Chris Toshok  <toshok@ximian.com>
5063
5064         * Form.cs (set_Owner): allow a null value so we can clear the
5065         form's owner.
5066         (Dispose): set all our owned_form's Owner properties to null, and
5067         clear the owned_forms collection.
5068         (WM_CLOSE): clean up this a little bit.. still not right though.
5069
5070         * ApplicationContext.cs: OnMainFormClosed should only call
5071         ExitThreadCore if the main form isn't recreating.  Fixes unit
5072         test.
5073
5074 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5075
5076         [Fixes 78346]
5077
5078         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
5079
5080 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5081
5082         [Fixes 79433]
5083
5084         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
5085         keep popup window types from stealing focus from the main form
5086         on Windows.
5087
5088         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
5089
5090         * MenuAPI.cs: Set above flag to true.
5091
5092 2006-11-15  Chris Toshok  <toshok@ximian.com>
5093
5094         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
5095         the button being released is not in wParam.
5096
5097 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
5098
5099         * Form.cs: Add the released button to MouseEventArgs.Button
5100         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
5101         on Win32.
5102
5103 2006-11-15  Chris Toshok  <toshok@ximian.com>
5104
5105         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
5106         GetText().  untested because it's unused in our implementation.
5107         Control.Text always caches the text, even if
5108         ControlStyles.CacheText is not set.
5109
5110         fixes bug #79939.
5111
5112 2006-11-15  Chris Toshok  <toshok@ximian.com>
5113
5114         [ fixes #79933 ]
5115         
5116         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
5117         message.  no hiding, no disposing.
5118
5119         in the WM_CLOSE handler, hide the form if it's modal.
5120
5121 2006-11-15  Chris Toshok  <toshok@ximian.com>
5122
5123         * XplatUIX11.cs: use AddExpose instead of sending a message.
5124         fixes textbox border drawing.
5125
5126 2006-11-15  Chris Toshok  <toshok@ximian.com>
5127
5128         * PropertyGridView.cs: keep from crashing on mouse move/down when
5129         the property grid is empty.
5130
5131 2006-11-14  Jackson Harper  <jackson@ximian.com>
5132
5133         * TextControl.cs: Make PageUp and PageDown more like the MS
5134         versions.
5135         * TextBoxBase.cs: When we set the text property position the
5136         cursor at the beginning of the document.
5137
5138 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5139
5140         * Form.cs: if a mdi child's WindowState has changed
5141         before it's creation, it would display wrong control
5142         buttons.
5143         
5144 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
5145
5146         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
5147           (Fixes bug #79927)
5148
5149 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
5150
5151         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
5152         the window gets to paint its borders even if the window is
5153         getting smaller.
5154         
5155         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
5156         otherwise the old control buttons would still be painted 
5157         if the window gets bigger.
5158         
5159         * PaintEventArgs.cs: add an internal method so that the clip 
5160         rectangle can be changed.
5161         
5162 2006-11-13  Chris Toshok  <toshok@ximian.com>
5163
5164         [ fixes bug #79745 ]
5165         
5166         * NotifyIcon.cs: lots of cleanup.
5167
5168         * X11Structs.cs: add an enum for XEMBED messages.
5169
5170         * XplatUIX11.cs: reindent one of the giant switch statements, it
5171         was taking up an additional tab stop, and this file is already way
5172         too wide for my laptop's screen.
5173
5174         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
5175         we get it, resize the hwnd to the WMNormalHints max_width/height.
5176
5177 2006-11-13  Jackson Harper  <jackson@ximian.com>
5178
5179         * TextBoxBase.cs: Compute the value changes for the mouse wheel
5180         teh simple way.
5181
5182 2006-11-13  Chris Toshok  <toshok@ximian.com>
5183
5184         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
5185         #79898.  force a reference to the Region to stick around so the
5186         unmanaged object isn't collected (rendering our handle in the MSG
5187         stale).
5188
5189 2006-11-13  Chris Toshok  <toshok@ximian.com>
5190
5191         * XplatUIX11.cs: fix #79917 for window managers which support
5192
5193         using XStoreName on the raw utf8, and we need to convert to
5194         COMPOUND_TEXT if it's non-latin1.
5195
5196 2006-11-13  Chris Toshok  <toshok@ximian.com>
5197
5198         * Form.cs (set_DialogResult): we need to set closing to false if
5199         we're setting our result to None.  fixes bug #79908.
5200
5201 2006-11-13  Jackson Harper  <jackson@ximian.com>
5202
5203         * TextControl.cs: When formatting text, compute the adjusted tag
5204         lengths correctly, using FindTag for the end tag instead of trying
5205         to figure it out outselves.
5206         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
5207         the item, ItemHeight doesn't work, because trees with large
5208         imagelists use those for their height
5209         * TreeView.cs: ActualItemHeight factors in the image height
5210         - compute left edge of checkboxes correctly
5211         - when expanding/collapsing move the bottom down one pixel, so we
5212         aren't moving part of the node
5213
5214 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5215
5216         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
5217         stack in PaintEventStart so that it won't get disposed by the gc
5218         before reaching PaintEventEnd.
5219
5220 2006-11-13  Jackson Harper  <jackson@ximian.com>
5221
5222         * TextBoxBase.cs: Don't select the word if we are on a line with
5223         no text.
5224         - We don't need to position the caret on mouse up, since the mouse
5225         move handler should be doing this
5226         - When double clicking a blank line, the caret is advanced to the
5227         next line.
5228
5229 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
5230
5231         * TreeNodeCollection.cs: Avoid duplicating indexer code.
5232
5233 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
5234
5235         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
5236         Fixes part of bug #79910.
5237
5238 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
5239
5240         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
5241           (bug #79903). Some minor string updates to match ms.
5242
5243 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5244
5245         * FileDialog.cs: Don't add an extension if the filename
5246           already ends with that extension.
5247
5248 2006-11-10  Jackson Harper  <jackson@ximian.com>
5249
5250         * TreeView.cs: Use the currently highlighted node for the
5251         BeforeSelect event.
5252         * TextBoxBase.cs: There is no need to expand selection on
5253         MouseMove.
5254         - CanUndo means 'is there any undo operations', not 'is undo
5255         allowed on this textcontrol. Fixed ClearUndo unit test.
5256
5257 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
5258
5259         * Button.cs: only perform click when button is Selectable (so as 
5260         not to activate default buttons when they're disabled)
5261         
5262         * Control.cs: Rewrite of the SelectNextControl and related 
5263         methods. HandleClick now selects next control if the current one
5264         is being disabled.
5265         
5266         * Form.cs: OnActivated selects next active control only if Load 
5267         has already occurred. If Load hasn't run, there's no point in 
5268         selecting here, Load might change the state of controls.
5269         
5270         * FocusTest.cs: Tests marked as working again for these fixes
5271
5272 2006-11-10  Chris Toshok  <toshok@ximian.com>
5273
5274         * XplatUIX11.cs: a couple of fixes.
5275
5276         - use XInternAtoms with almost all the atoms we need to register,
5277         instead of many, many calls to XInternAtom.  should help a bit on
5278         startup time, at the expense of making the code look a little
5279         worse.
5280
5281         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
5282         isn't reparented (which seems to be a clue that we're running fon
5283         compiz) and they have an Owner form.  This fixes the tool windows
5284         in paint.net when running under compiz.
5285
5286         - when setting the opacity of a window, support both the case
5287         where the window has been reparented and also when it hasn't been.
5288         Since compiz/beryl doesn't seem to reparent windows, and these are
5289         the only window managers which support translucency, I'm not sure
5290         why we need the hwnd.reparented case at all.. but leave it in.
5291         now we get translucent windows in paint.net under compiz/beryl.
5292
5293 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5294
5295         * FileDialog.cs: Always return the value for FilterIndex that
5296           was set. Internally convert it to values that make sense.
5297
5298 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
5299         
5300         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
5301
5302 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
5303
5304         * Toolbar.cs: Change default value of DropDownArrows to true, the 
5305         signature still using false to make it compatible with MS but the 
5306         initial value is true. Fixes #79855.
5307
5308 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
5309
5310         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
5311           only available on Linux.
5312
5313 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
5314
5315         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
5316         reduce number of calls to redraw method during toolbar creation.
5317
5318 2006-11-09  Mike Kestner  <mkestner@novell.com>
5319
5320         * ListView.cs : raise SelectedIndexChanged when an item is selected
5321         programmatically via the Item.Selected property.  Gert's nice 
5322         ListViewSelectedIndexChanged test fixture now runs clean.
5323
5324 2006-11-09  Mike Kestner  <mkestner@novell.com>
5325
5326         * ListView.cs : raise SelectedIndexChanged when a selected item is
5327         removed from the item collection using Remove or RemoveAt.
5328
5329 2006-11-09  Mike Kestner  <mkestner@novell.com>
5330
5331         * ListView.cs : raise SelectedIndexChanged once per selected item
5332         for compat with MS.  Fixes #79849+.
5333
5334 2006-11-09  Chris Toshok  <toshok@ximian.com>
5335
5336         * TabControl.cs: initialize row_count to 0, and set it to 1 when
5337         we need to (if we have any tab pages).  Fixes unit test.
5338
5339 2006-11-09  Chris Toshok  <toshok@ximian.com>
5340
5341         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
5342         width is 0, not 3.  Fixes a unit test.
5343
5344 2006-11-09  Mike Kestner  <mkestner@novell.com>
5345
5346         * ListView.cs : use Implicit scrollbars so that focus isn't 
5347         stolen from the listview when they are clicked. Fixes #79850.
5348
5349 2006-11-09  Chris Toshok  <toshok@ximian.com>
5350
5351         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
5352         have a root item.  Fixes #79879.
5353
5354 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
5355
5356         * FileDialog.cs:
5357           - Fix ToString ()
5358           - An ArgumentException is now thrown if a wrong filter
5359             is applied (matches ms). The previous filter doesn't change
5360             anymore if an exception is thrown.
5361           - Changing the FileName property also affects FileNames
5362         * ColorDialog.cs: The length of the CustomColors array is always
5363           16. It doesn't matter if we use a smaller array or null to update
5364           or change the custom colors property.
5365         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
5366           for RootFolder if we get a undefined value.
5367
5368 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5369
5370         * StatusBarPanel.cs: 
5371         - Width is set to MinWidth if Width is smaller than
5372         MinWidth. Fixes #79842.
5373         - MinWidth now always overrides Width (MSDN says MinWidth
5374         is set to Width when AutoSize = None, but they do not 
5375         behave like that).
5376         - Style has now the the correct default value.
5377         
5378 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5379  
5380         * TrackBar.cs: 
5381         - The control is completely invalidated on 
5382         Got/LostFocus to draw the focus rectangle correctly.
5383         - When AutoSize then height is always 45 (width for 
5384         vertical controls).
5385         
5386         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
5387         on the mouse when moved and it doesn't move when grabbed
5388         until the mouse moves as well. Also fixed some wrong 
5389         calculations when clicking on the thumb (control thought
5390         click was outside of thumb and didn't grab it).
5391         Fixes some of the issues in #79718.
5392
5393 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
5394
5395         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
5396
5397 2006-11-08  Chris Toshok  <toshok@ximian.com>
5398
5399         * PropertyGridView.cs: only call ToggleValue if the item is not
5400         readonly.
5401
5402 2006-11-08  Jackson Harper  <jackson@ximian.com>
5403
5404         * TextBoxBase.cs: The RichTextBox and textbox have very different
5405         word selection methods.  Implement the textbox's simple word
5406         selection here, and let the RichTextBox override and provide it's
5407         own.
5408         - Don't do extra selection on mouseup
5409         * RichTextBox.cs: Use the documents word selection algorithm, I
5410         think ideally, this function will be pulled into the
5411         RichTextBox.cs code someday.
5412
5413 2006-11-08  Chris Toshok  <toshok@ximian.com>
5414
5415         * RootGridEntry.cs: new class to represent GridItemType.Root.
5416
5417         * CategoryGridEntry.cs: reformat, and add boilerplate.
5418         
5419         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
5420         returns the UI parent anyway, and we need special handling to
5421         implement the GetTarget method in the face of it.  Also, implement
5422         Select().
5423
5424         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
5425         a root grid item, and use that instead of PropertyGrid.grid_items.
5426         Also, make use of TypeConverters (and add limitted support for
5427         ICustomTypeDescriptors) when initially populating the grid.
5428         Arrays now show up more or less properly.
5429
5430 2006-11-08  Chris Toshok  <toshok@ximian.com>
5431
5432         * Application.cs: set the modal dialog to non modal after we close
5433         it.  Fixes bug #79866.
5434
5435 2006-11-08  Jackson Harper  <jackson@ximian.com>
5436
5437         * TextControl.cs: When combining lines carry over the line end
5438         style from the end line.
5439         - Invalidate the selected area when setting it, if it is visible.
5440         * TextBoxBase.cs: Only rich text box can do full line selects.
5441         - Make sure to set the cursor position when there is a click,
5442         otherwise two clicks in separate areas could cause a large chunk
5443         to be selected.
5444
5445 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5446
5447         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
5448         Fixes #79863.
5449
5450 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5451
5452         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
5453         time. Remove tooltips when ToolButton click events.  Fixes #79856.
5454
5455 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5456
5457         * MenuAPI.cs: Ignore right click for menu actions and fixes
5458         menu border when clicked.  Fixes #79846.
5459
5460 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5461
5462         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
5463         MouseState after create wParam for message, this fixes mouse button 
5464         equal none in mouse up events.
5465         
5466 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
5467
5468         * Control.cs : Focus() now calls Select to set the Container's
5469         Active Control and to give it focus. To avoid infinite recursion
5470         (because ActiveControl also calls Focus at one point), a check 
5471         is made in Focus with the help of a new internal variable
5472         is_focusing.
5473
5474 2006-11-07  Mike Kestner  <mkestner@novell.com>
5475
5476         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
5477         if there's a selection.  Fixes #79849.
5478
5479 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
5480
5481         * PropertyGrid.cs: Avoid fixed height of help description label.
5482         Fixes part of bug #79829.
5483
5484 2006-11-07  Chris Toshok  <toshok@ximian.com>
5485
5486         * XplatUIX11.cs: fix #79790 again, by using the
5487         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
5488
5489 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5490
5491         * ToolBar.cs: Fix left click checking.
5492
5493 2006-11-07  Chris Toshok  <toshok@ximian.com>
5494
5495         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
5496
5497 2006-11-07  Chris Toshok  <toshok@ximian.com>
5498
5499         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
5500         PropertyManager unit tests.
5501
5502         * PropertyManager.cs: make property_name internal.
5503
5504 2006-11-07  Chris Toshok  <toshok@ximian.com>
5505
5506         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
5507         pass a unit test.  Also, don't set image_index to anything in
5508         response to setting the ImageList property.
5509
5510 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
5511
5512         * ToolBar.cs: Ignore click events when mouse button is not a
5513         left button, only accepts other button for dropdown menus.  
5514         Fixes #79854.
5515
5516 2006-11-07  Chris Toshok  <toshok@ximian.com>
5517
5518         * DataGrid.cs: make the back and parent row buttons a little less
5519         ugly.
5520
5521 2006-11-07  Jackson Harper  <jackson@ximian.com>
5522
5523         * TextBoxBase.cs: When converting to Text don't put line breaks in
5524         for soft line breaks.
5525         * TextControl.cs: There is an initial "fake" line in the document,
5526         this is now a soft break line, so that an extra line feed doesn't
5527         get added to the end of documents.
5528
5529 2006-11-07  Chris Toshok  <toshok@ximian.com>
5530
5531         [ fix bug #79778 ]
5532         
5533         * CurrencyManager.cs: if the list is readonly, don't bother
5534         checking if IBindingList.AllowNew is true.
5535
5536         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
5537         for non-DataRowView datasources..  or rather, make it not crash.
5538         (DataGridPaintRelationRow): make sure we limit the row painting to
5539         the area not covered by the row header, and make our cell width at
5540         least large enough to cover the relation area.  This allows grids
5541         that have relations but no rows to render correctly.
5542         (DataGridPaintRowContents): same type of changes here.
5543         (SetDataSource): move back to always calling
5544         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
5545         navigating back through relations.
5546         (HitTest): handle the case where we have no cells but have
5547         relations.  Right now we generate a hit in cell 0 of whatever the
5548         row is, not sure if this is strictly correct, but it works for our
5549         purposes.
5550         
5551         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
5552         bother doing anything.
5553
5554 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
5555
5556         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
5557         early version of StatusStrip.  Not responsible for eaten
5558         application or firstborn children.
5559
5560 2006-11-06  Chris Toshok  <toshok@ximian.com>
5561
5562         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
5563         call GetTabRect with a -1 index.  Fixes #79847.
5564
5565 2006-11-06  Jackson Harper  <jackson@ximian.com>
5566
5567         * TreeNodeCollection.cs: Update scrollbars after clearing.
5568
5569 2006-11-06  Chris Toshok  <toshok@ximian.com>
5570
5571         * NumericUpDown.cs: fix the ToString method for some unit test
5572         love.
5573
5574 2006-11-06  Chris Toshok  <toshok@ximian.com>
5575
5576         * PropertyGrid.cs:
5577         - set the initial SelectedGridItem if we can.
5578
5579         - Exclude non-mergable properties only if we're merging > 1
5580         object.  Merging 1 object isn't really merging, obviously.
5581
5582         - Handle PropertySort.NoSort just like Alphabetical, which is
5583         wrong of course, but at least gets things on the screen.
5584         
5585         * PropertyGridView.cs:
5586         - Add method "FindFirstItem" which finds the first property grid
5587         item, so we can select it by default.
5588
5589         - make use of GridEntry.CanResetValue.
5590
5591         - Don't call RedrawBelowItemOnExpansion here anymore, the
5592         individual GridEntry's will do that.
5593
5594         - Remove the ITypeDescriptorContextImpl internal class.
5595         
5596         * GridEntry.cs:
5597         - this class needs to implement ITypeDescriptorContext, as it's
5598         what MS's PropertyDescriptorGridEntry does, which means we can
5599         remove the ITypeDescriptorContextImpl internal class from
5600         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
5601
5602         - keep a reference to our PropertyGridView, and move the call to
5603         RedrawBelowItemOnExpansion here from PGV.  This means
5604         programmaticly setting Expanded actually does something visible.
5605
5606         - add a CanResetValue() function which takes into account our
5607         possibly multiple "selected_objects" in the merged case.  Shifting
5608         PropertyGridView to use this method fixes another unreported
5609         crasher found running the test for #79829.
5610
5611         - when Top or Bounds is updated, make sure the PropertyGridTextBox
5612         is updated to reflect this.
5613
5614         * CategoryGridEntry.cs: the ctor takes the PGV now.
5615         
5616 2006-11-06  Jackson Harper  <jackson@ximian.com>
5617
5618         * TextControl.cs: These are 1 based.
5619         * TextBoxBase.cs: When setting the selected text, don't change the
5620         selected text tags, this is done by ReplaceText, just position the
5621         cursor at the end of the new text.
5622
5623 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
5624
5625         * ListView.cs: Allow label edit only when, when LabelEdit is
5626           set to true.
5627
5628 2006-11-06  Jackson Harper  <jackson@ximian.com>
5629
5630         * TextControl.cs: If a suitable wrapping position isn't found,
5631         just wrap right in the middle of a word.
5632
5633 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
5634
5635         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
5636           bug #79820.
5637
5638 2006-11-06  Jackson Harper  <jackson@ximian.com>
5639
5640         * TreeView.cs: Can't use the VisibleCount property when setting
5641         scrollbar heights, because this doesn't take into account whether
5642         or not the horz scrollbar just came visible.
5643
5644 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
5645
5646         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
5647         activated.  Fixes #79369, #79832.
5648
5649 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
5650
5651         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
5652           had to remove support for links that point to a directory. FileInfo
5653           returns no usefull information (means, the directory they point to)
5654           for such links. Replaced some empty string ("") with String.Empty.
5655
5656 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
5657
5658         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
5659         NullReferenceException when attempting to remove node that is not in
5660         collection. Throw NullReferenceException when null is passed to 
5661         Remove. Allow first element of the collection to be removed. Fixes
5662         bug #79831.  In GetEnumerator ().Current return null if positioned 
5663         before the first element of the collection. In GetEnumerator ().Reset,
5664         position before first element of the collection.
5665
5666 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
5667
5668         * PropertyGrid.cs: To match MS, remove default title and description
5669         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
5670         buttons.
5671
5672 2006-11-04  Chris Toshok  <toshok@ximian.com>
5673
5674         * Theme.cs: add a Clamp method, just for kicks.
5675
5676         * ThemeWin32Classic.cs: clamp all color components to [0..255].
5677
5678 2006-11-04  Chris Toshok  <toshok@ximian.com>
5679
5680         * Form.cs: if the form isn't visible, Close() does nothing.
5681
5682 2006-11-03  Chris Toshok  <toshok@ximian.com>
5683
5684         * Form.cs (Close): if the form is modal, don't Dispose of it, only
5685         Hide it.
5686         (WndProc): don't Dispose after handling the WM_CLOSE message.
5687
5688         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
5689         them as such, instead of using casts from Control to Form.  Also,
5690         don't Dispose of the modal dialog when we fall out of the loop -
5691         Close() it instead.
5692
5693         fixes bug #79813.
5694
5695 2006-11-03  Chris Toshok  <toshok@ximian.com>
5696
5697         * Control.cs (Dispose): only go through the dispose thing if we're
5698         @disposing, and we haven't already been disposed.  Fixes bug
5699         #79814.
5700
5701         * Form.cs: no reason to call "base.Dispose()" here instead of
5702         "Dispose()".
5703
5704 2006-11-03  Mike Kestner  <mkestner@novell.com>
5705
5706         * ComboBox.cs : use ToString instead of casts in AddItem for
5707         sorting functionality.  Fixes #79812.
5708
5709 2006-11-03  Chris Toshok  <toshok@ximian.com>
5710
5711         * Application.cs: pave the way for actually using the thread
5712         exception dialog.  it's ifdefed out at the moment.
5713
5714 2006-11-03  Chris Toshok  <toshok@ximian.com>
5715
5716         * ThreadExceptionDialog.cs: until we get a better layout, actually
5717         hide the details textbox and label when we shouldn't see them.
5718
5719 2006-11-03  Jackson Harper  <jackson@ximian.com>
5720
5721         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
5722         multiline textboxes anymore.  This method also determines the
5723         width/height of a textboxes canvas area.
5724         - Sorta a revert of the last patch.  For multiline just position
5725         the controls, then bail.  This way the scrollbar width won't be
5726         altered.
5727
5728 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
5729
5730         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
5731         it dont need.  Fixes #79537.
5732
5733 2006-11-02  Jackson Harper  <jackson@ximian.com>
5734
5735         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
5736         send the status after firing the DndOver event.
5737
5738 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5739
5740         * TrackBar.cs: Now orientation only switches height / width if
5741         the control's handle is created (Win32 does it like this). Also 
5742         fixed a typo in ToString() for a test to pass, changed the 
5743         exception thrown in set_LargeChange and set_SmallChange to 
5744         match Win32 behaviour, and added TrackBar tests to the unit 
5745         tests.
5746
5747 2006-11-02  Chris Toshok  <toshok@ximian.com>
5748
5749         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
5750         not _NET_WM_STATE_NO_TASKBAR.
5751
5752 2006-11-02  Jackson Harper  <jackson@ximian.com>
5753
5754         * TextControl.cs: Increment count by one, since in the update view
5755         count - 1 is used.
5756
5757 2006-11-02  Jackson Harper  <jackson@ximian.com>
5758
5759         * TextBoxBase.cs: Use client rectangle not bounds for checking if
5760         the mouse is in the client rectangle (duh).
5761
5762 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5763         
5764         * TrackBar.cs: Fixed trackbar jumping around when clicking
5765         on it - the trackbar was not detecting correctly at which
5766         side of the thumb the click was done. (fixes #79718)
5767
5768 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
5769
5770         * ListBox.cs: scroll visible area when change SelectedIndex to
5771         a non visible area.  Fixes #79481.
5772
5773 2006-11-01  Jackson Harper  <jackson@ximian.com>
5774
5775         * TextControl.cs: When replacing the selection move the selection
5776         start/end/anchor to the end of the new text.
5777
5778 2006-11-01  Jackson Harper  <jackson@ximian.com>
5779
5780         * XplatUIWin32.cs: When setting the parent change the controls
5781         visibility to it's visibility flag, not to it's old parents
5782         visibility (.Visible walks the parent chain).
5783
5784 2006-11-01  Chris Toshok  <toshok@ximian.com>
5785
5786         * XplatUIX11.cs: revert the #79790 fix, as the simple.
5787         XSetTransientForHint fix breaks paint .net's tool windows.  more
5788         work needed for that one.
5789
5790 2006-11-01  Chris Toshok  <toshok@ximian.com>
5791
5792         * ScrollBar.cs: throw ArgumentException instead of Exception in
5793         LargeChange/SmallChange setters.  fixes unit tests.
5794
5795 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
5796
5797         * ContainerControl.cs: reverted rev.67183 (which was itself
5798         a reversion of rev.66853... eh).
5799         
5800         * Control.cs: Fixes Reflector hang by changing Focus() call
5801         to what it was before rev.66643 (calling Select() here sets 
5802         ActiveControl, which in some situations calls back Focus and 
5803         eventually does a stack overflow). Temp fix.    
5804         Changes to GetNextControl() to not look for children to select when
5805         parent cannot be selectable (so it looks for siblings instead)  
5806         
5807 2006-10-31  Mike Kestner  <mkestner@novell.com>
5808
5809         * CheckedListBox.cs : off by one error in returned index from
5810         ObjectCollection.Add.  Fixes #79758.
5811
5812 2006-10-31  Chris Toshok  <toshok@ximian.com>
5813
5814         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
5815         calls for the textbox/spinner, to keep from recursing to the point
5816         where we crash.  Fixes #79760.
5817
5818 2006-10-31  Chris Toshok  <toshok@ximian.com>
5819
5820         * ListControl.cs (set_SelectedValue): don't throw exceptions on
5821         null/"" value, just return.  matches ms's behavior and fixes some
5822         failing tests.
5823
5824 2006-10-31  Chris Toshok  <toshok@ximian.com>
5825
5826         * Control.cs (set_Capture): make a logic a little easier to
5827         follow.
5828
5829         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
5830         if it's being destroyed.  A necessary fix surely, but a bandaid
5831         also, to fix the stuck capture problem in bug #78413.
5832
5833 2006-10-31  Chris Toshok  <toshok@ximian.com>
5834
5835         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
5836         convention of clearing hwnd.ClientRect when we set the
5837         width/height (so it'll be recalculated by Hwnd).
5838
5839 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
5840
5841         * ContainerControl.cs: reversed Contains check from
5842         ActiveControl due to hanging problems. This fix
5843         partly regresses #79667 (button does not have
5844         initial focus), so this might be a symptom for 
5845         a larger parenting problem (set_ActiveControl
5846         is being called but the child control does
5847         not have the parent set yet?)   
5848         
5849 2006-10-31  Mike Kestner  <mkestner@novell.com>
5850
5851         * MenuAPI.cs : fix keynav when menu is click activated.
5852
5853 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
5854
5855         * ToolStrip*: Version 0.2.
5856
5857         * MenuStrip.cs: Version 0.1.
5858
5859         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
5860
5861 2006-10-30  Chris Toshok  <toshok@ximian.com>
5862
5863         [ fixes the oversized notify icon issue in bug #79745 ]
5864         
5865         * NotifyIcon.cs: scale the icon down to the size we're given by
5866         the XplatUI layer (this would be faster if we did it once instead
5867         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
5868         since it's never invoked.
5869
5870         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
5871         pixels high by default, so let's hardcode our systray icon to that
5872         size.  The SYSTEM_TRAY protocol should really have a way for
5873         client apps to query for the correct icon size.. but oh well.  A
5874         couple of patches to deal with the screwy client_window ==
5875         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
5876         instance, and also make sure we don't XSelectInput twice).
5877
5878 2006-10-30  Chris Toshok  <toshok@ximian.com>
5879
5880         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
5881         recreating forms.  Control recreation is the bane of my existence.
5882         Fix it in a way that keeps everyone happy.
5883
5884 2006-10-30  Chris Toshok  <toshok@ximian.com>
5885
5886         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
5887         just non-CHILD ones.  otherwise sometimes scrollbars end up with
5888         client_windows not being resized to the proper size (ReportBuilder
5889         shows this extremely well).
5890
5891 2006-10-30  Chris Toshok  <toshok@ximian.com>
5892
5893         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
5894         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
5895         showing up in the gnome taskbar.  Fixes bug #79790.
5896
5897 2006-10-30  Chris Toshok  <toshok@ximian.com>
5898
5899         * ApplicationContext.cs: guard against a NRE.
5900
5901         * Application.cs: null out the old MainForm for the context, so we
5902         don't try to use it again once it's disposed.  Fixes bug #79783.
5903
5904 2006-10-30  Chris Toshok  <toshok@ximian.com>
5905
5906         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
5907         BindingContext, set the data source directly, otherwise do the
5908         lazy approach - the actual ListManager will be created when we get
5909         a BindingContext. Fixes bug #79700.
5910
5911 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
5912
5913         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
5914           XplatUIX11.cs: Remove old 2 parameter SetVisible.
5915
5916         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
5917
5918 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
5919
5920         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
5921         of SetVisible that allows a window to be shown, but not activated.
5922         This is needed on Windows for MenuStrip, and can probably be used
5923         with MainMenu and ComboBox to fix the focus stealing issues on
5924         Windows.
5925
5926         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
5927
5928 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
5929
5930         * PictureBox.cs: Fix the output of the ToString method.
5931
5932 2006-10-29  Chris Toshok  <toshok@ximian.com>
5933
5934         * Control.cs (get_TopLevelControl): fix bug #79781.
5935
5936 2006-10-29  Chris Toshok  <toshok@ximian.com>
5937
5938         * ListControl.cs (set_DataSource): throw Exception here, not
5939         ArgumentException, to match MS behavior.
5940
5941 2006-10-29  Chris Toshok  <toshok@ximian.com>
5942
5943         * Form.cs: remove the try-catch's around calls to GetWindowState.
5944         We can just check the return value.
5945
5946         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
5947         Instead return -1.
5948
5949         * XplatUI.cs: Add note about additional return value for
5950         GetWindowState.
5951
5952 2006-10-29  Chris Toshok  <toshok@ximian.com>
5953
5954         * Control.cs (CreateHandle): when we create our handle, we also
5955         create the handles of our child controls.  Fixes one of the
5956         Control unit tests (CH11).
5957
5958 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
5959
5960         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
5961
5962 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
5963
5964         * ThemeClearlooks.cs: A little speedup.
5965
5966 2006-10-27  Chris Toshok  <toshok@ximian.com>
5967
5968         * Control.cs: implement Control.FromChildHandle in a way that
5969         matches the docs (and fixes the failed test.)
5970
5971 2006-10-27  Chris Toshok  <toshok@ximian.com>
5972
5973         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
5974         comments).
5975
5976         * DataGrid.cs: implement ResetForeColor such that the tests
5977         succeed.
5978         
5979 2006-10-27  Chris Toshok  <toshok@ximian.com>
5980
5981         * ToolBarButton.cs: setting text/tooltiptext to null results in it
5982         being set to "".  Fixes bug #79759.
5983
5984 2006-10-27  Jackson Harper  <jackson@ximian.com>
5985
5986         * TextControl.cs: We need to clear the entire selection area when
5987         setting the start, otherwise multiline selections are still
5988         visible.
5989
5990 2006-10-26  Chris Toshok  <toshok@ximian.com>
5991
5992         * PropertyGridView.cs: 
5993
5994         - ifdef all the code specific to the double
5995         buffer case, and provide some alternatives in the non-doublebuffer
5996         code, which makes heavy use of XplatUI.ScrollWindow to move things
5997         around without having to invalidate (and cause flicker).  There
5998         are still some drawing problems in the non-doublebuffered case, so
5999         DOUBLEBUFFER is defined by default.
6000
6001         - Fix the way dropdowns are handled.  now we explicitly watch for
6002         the events which might cause the dropdown to close, and break out
6003         of the nested event loop there.  This gets rid of all Capture
6004         code, at the expense of the Msg special casing.  Seems to work,
6005         though, and fixes bug #79743.
6006
6007 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
6008         * Control.cs: SetIsRecreating now recreates implicitly added
6009         child controls as well. Finally fixes #79629. The flag passed to 
6010         SetIsRecreating has also been removed since it wasn't used.
6011         
6012 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6013
6014         * PageSetupDialog.cs: Clean some code, fix some bits, 
6015         add some checks, and add a printer sub-dialog.
6016
6017 2006-10-26  Chris Toshok  <toshok@ximian.com>
6018
6019         * PropertyGrid.cs: make set_SelectedObject call
6020         set_SelectedObjects, and move the duplicate logic to the
6021         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
6022
6023         * PropertyGridView.cs: hide the textbox when we get a
6024         SelectedObjectsChanged event.
6025
6026         Fixes bug #79748.
6027
6028 2006-10-26  Chris Toshok  <toshok@ximian.com>
6029
6030         * PropertyGridView.cs: deal with the type converter not supporting
6031         GetStandardValues() or GetStandardValues() returning null, which
6032         is does in the default case.  Fixes #79742.
6033
6034 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6035
6036         * CheckedListBox.cs: nunit no longer crashes when selecting 
6037         Project/Edit menu option
6038         
6039 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
6040
6041         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
6042         is no menu selected. fixes #79739
6043
6044 2006-10-25  Chris Toshok  <toshok@ximian.com>
6045
6046         * PropertyGridView.cs: factor out the splitter invalidation code
6047         into the SplitterPercent setter, and for kicks implement the
6048         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
6049         amount in either direction.
6050
6051 2006-10-25  Chris Toshok  <toshok@ximian.com>
6052
6053         * PropertyGridView.cs: do some cleanup of the brush used to draw
6054         text - read only fields should be grayed out.  not sure how to do
6055         this with the textbox, though.  but the textbox's should also be
6056         readonly now at least.  Also, hide/show the textbox when resizing
6057         the control.
6058         
6059         * CursorConverter.cs: use System.Reflection when getting the
6060         properties of Cursors, as TypeDescriptor.GetProperties isn't
6061         returning static properties.
6062
6063 2006-10-25  Chris Toshok  <toshok@ximian.com>
6064
6065         * PropertyGridView.cs: factor out the up/down handling, and reuse
6066         it for page up/down.  also add End/Home support.
6067
6068 2006-10-25  Chris Toshok  <toshok@ximian.com>
6069
6070         * PropertyGridView.cs:
6071
6072         - ensure the selected grid item is visible in the scrolled area,
6073         fixes bug #79572.
6074
6075         - fix Keys.Down handling when you're on the last item in the
6076         propertygrid.
6077
6078 2006-10-25  Mike Kestner  <mkestner@novell.com>
6079
6080         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
6081         clicks too.  Fixes #79725.
6082
6083 2006-10-24  Chris Toshok  <toshok@ximian.com>
6084
6085         * PropertyGrid.cs: use property.Converter instead of
6086         TypeDescriptor.GetConverter(property.PropertyType), so we catch
6087         TypeConverters declared on the property as well as on the
6088         PropertyType.  Fixes bug #79678.
6089
6090 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
6091
6092         * MimeIcon.cs, Mime.cs:
6093           Fallback to the default platform handler if no shared mime info
6094           stuff exists (fixes #79693).
6095
6096 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6097         * ContainerControl.cs: Incorrect contains check in ActiveControl 
6098         from previous fix (duh).
6099
6100 2006-10-20  Chris Toshok  <toshok@ximian.com>
6101
6102         * PropertyGridView.cs: the dropdown should be MIN(number of items
6103         in list, 15).  Fixes #79551.
6104
6105 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
6106         Fixes #79384, #79394, #79652, #79667
6107         * Application.cs: 
6108         
6109         - Modal windows are now destroyed in the proper order for windows
6110         
6111         * ContainerControl.cs:
6112         
6113         - ActiveControl setter has more conditions on when to return:
6114                 - if we're reselecting the active control, but it actually
6115                 didn't have focus (window hidden or some such), it runs
6116                 - if the active control being selected doesn't actually 
6117                 exist in the container, it returns
6118         
6119         * Form.cs
6120         
6121         - The ShowDialog now gets the current form as the owner when
6122         invoking without parameters, and correctly activates the owner 
6123         when returning
6124         
6125         * MessageBox.cs
6126         
6127         - MessageBox now catches the Escape key to exit
6128
6129 2006-10-20  Chris Toshok  <toshok@ximian.com>
6130
6131         * PropertyGridView.cs: fix a number of issues (bug #78565, and
6132         most of bug #79676):
6133
6134         - you can navigate around the property grid with the arrow keys.
6135
6136         - the dropdown is sized properly when the pg has a vertical
6137         scrollbar.
6138
6139         - fix the indentation for subentries, and properly select the
6140         entire label rect.
6141
6142         - fix the gray bar's drawing (only draw it to the last element,
6143         not for the height of the control.  Also make sure we draw that
6144         last horizontal grid line.
6145
6146         - use the same mechanism the datagrid uses wrt the editing textbox
6147         when scrolling/resizing/etc.  Namely, we hide it first, do the
6148         operation, then show it again (if it's still visible).
6149         
6150         - aggressively remove a lot of unnecessary refreshes (and also
6151         calls to Invalidate(). call more limited variants, and only redraw
6152         what we need.)
6153         
6154         * PropertyGrid.cs:
6155
6156         - when we're populating the merged collection, fill in the UI
6157         parent with either the passed in item, or the category item we
6158         create.
6159
6160         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
6161
6162         * GridItem.cs: drop some fully qualified names.
6163         
6164         * GridEntry.cs: add a "UIParent", which is basically the parent
6165         treenode.
6166
6167         * GridItemCollection.cs: add an IndexOf method.
6168
6169 2006-10-20  Mike Kestner  <mkestner@novell.com>
6170
6171         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
6172         a working win32 NC invalidation mechanism, we can't invalidate
6173         menus.  [Fixes #79705]
6174
6175 2006-10-20  Mike Kestner  <mkestner@novell.com>
6176
6177         * ListBox.cs : don't update the VScrollbar if the list is empty,
6178         just hide it.  [Fixes #79692]
6179
6180 2006-10-20  Jackson Harper  <jackson@ximian.com>
6181
6182         * RichTextBox.cs: Handle some special chars better, and don't skip
6183         the entire group when we encounter a special char that we don't
6184         handle correctly.
6185
6186 2006-10-18  Chris Toshok  <toshok@ximian.com>
6187
6188         * PropertyGridView.cs: address a number of issues from bug #79676,
6189         mostly of the cosmetic variety.
6190
6191         - The highlight rectangle for indented items not extends all the
6192         way to the left.
6193
6194         - Indented items aren't indented so much.
6195
6196         - the dropdown is properly sized width-wise if the pg has a
6197         vertical scrollbar.
6198
6199 2006-10-18  Chris Toshok  <toshok@ximian.com>
6200
6201         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
6202         systray stuff is rather convoluted to begin with.
6203
6204         systray icons are a single window for some reason (that I haven't
6205         figured out yet), and for them, client_window == whole_window.
6206         Given the way the tests are structured elsewhere to determine
6207         which paints are pending (client vs. nc), that situation will
6208         always yield PAINT, not NCPAINT.  So, if we have a pending
6209         nc_expose and no pending expose, remove the hwnd from the paint
6210         queue, and also set nc_expose_pending to false, to keep us from
6211         blocking further expose's adding the hwnd to the paint queue.
6212
6213         phew.  like i said, a rather convoluted change.  Fixes the
6214         notifyicon repaint issues in bug #79645.
6215
6216 2006-10-18  Chris Toshok  <toshok@ximian.com>
6217
6218         * Form.cs: when getting the backcolor of the form, don't get
6219         base.BackColor, as this allows parents to influence the background
6220         color.  This breaks mdi forms.  Instead, if the background_color
6221         is empty, return the default.
6222
6223 2006-10-18  Chris Toshok  <toshok@ximian.com>
6224
6225         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
6226         to being private instead of internal static.
6227
6228         * Control.cs: remove all the stupid ParentWaitingOnRecreation
6229         crap, it wasn't working for more deeply nested controls anyway,
6230         and we already have the is_recreating flag - use that instead.
6231         Before calling DestroyHandle in RecreateHandle, recurse through
6232         the control tree setting it to true.  this returns the recreate
6233         code to much of its original simplicity, while now guaranteeing we
6234         actually recreate everything we're supposed to.  This change gets
6235         fyireporting actually showing mdi children.
6236
6237 2006-10-17  Chris Toshok  <toshok@ximian.com>
6238
6239         * Form.cs: remove some debug spew, and collapse some duplicate
6240         code at the end of SetClientSizeCore.
6241
6242         * XplatUIX11.cs: 
6243         - add some more debug spew here too wrt Destroy handling.
6244         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
6245         in Control's handling of WM_DESTROY.
6246         - Remove the handling of zombie window DestroyNotifies from the
6247         event loop - we don't need it.  Now the only DestroyNotifies we
6248         actually handle are ones generated by X.
6249         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
6250         match gtk's (functioning) handling of this. This keep metacity
6251         from leaving droppings in the form of wm borders with no window
6252         contents all over the place.
6253
6254         * Control.cs:
6255         - add a bunch of debug spew wrt control recreation.
6256         - fix a bug where we weren't tracking Visible properly on
6257         recreated hwnds.
6258         - fixed the WM_PAINT double buffer handling to support re-entrant
6259         calls (yes, i know it's gross, but it's happening to us).
6260
6261 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6262         * ThemeWin32Classic.cs: changed drawing of selected days
6263         to make them look better.
6264
6265 2006-10-16  Chris Toshok  <toshok@ximian.com>
6266
6267         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
6268         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
6269
6270         * XplatUIX11.cs: move away from using hwnd.client_dc and
6271         hwnd.non_client_dc and on to a stack of dc's (and in window's
6272         case, PAINTSTRUCT's), so we can deal with nested Paint calls
6273         without puking or not disposing of Graphics objects.
6274
6275         * XplatUIOSX.cs: same.
6276
6277         * XplatUIWin32.cs: same.
6278
6279 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
6280
6281         * FileDialog.cs: Don't call on_directory_changed inside
6282           OnSelectedIndexChanged (it changes the SelectedIndex too).
6283           Instead move it to OnSelectionChangeCommitted.
6284
6285 2006-10-13  Chris Toshok  <toshok@ximian.com>
6286
6287         * XplatUIX11.cs: more Destroy work.  the current code does the
6288         following things, in order:
6289
6290         1. Enumerates all handles of all controls at or below the one
6291         being destroyed, in pre-order.  As it is doing this, it marks the
6292         handles as zombie and clears all references to them.
6293         
6294         2. calls XDestroyWindow on the window passed in.
6295
6296         3. SendMessage's WM_DESTROY to all he handles in the accumulated
6297         list.
6298
6299 2006-10-13  Chris Toshok  <toshok@ximian.com>
6300
6301         * XplatUIX11.cs: set hwnd.zombie to true before calling
6302         SendMessage (WM_DESTROY).  this keeps us from marking the new
6303         window a zombie, and also keeps us from calling sendmessage at
6304         all.
6305
6306 2006-10-13  Jackson Harper  <jackson@ximian.com>
6307
6308         * TextControl.cs: Do not show the caret and selection at the same
6309         time.  Reduces ugliness by 35%.
6310
6311 2006-10-13  Chris Toshok  <toshok@ximian.com>
6312
6313         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
6314         zombie after we do the recursive call, so we actually do call
6315         SendMessage on the children controls.
6316         (GetMessage): if we find a pending paint event for a zombie hwnd,
6317         remove the hwnd from the paint queue, or else it will always be
6318         there (and we'll effectively loop infinitely)
6319
6320 2006-10-13  Mike Kestner  <mkestner@novell.com>
6321
6322         * MenuItem.cs : add Selected format under keynav too.
6323         Fixes #79528.
6324
6325 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
6326
6327         * PropertyGrid.cs: Fixed some NRE's and small difference between our
6328         implementation and that of MS.
6329
6330 2006-10-13  Chris Toshok  <toshok@ximian.com>
6331
6332         * Control.cs (OnInvalidated) only futz with the invalid_region if
6333         the control is double buffered.  this fixes the apparent hang in
6334         the ListView unit tests.  Someone needs to make the
6335         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
6336
6337 2006-10-13  Chris Toshok  <toshok@ximian.com>
6338
6339         * PropertyGridView.cs:
6340
6341         - do a little refactoring so that only one place calls
6342         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
6343         else call that.  Also make it Refresh, since there are redraw bugs
6344         otherwise (we should take a look at that...)
6345
6346         - do a little more refactoring work to share the body of code
6347         involved with the drop down.  it was duplicated in the code
6348         dealing with the listbox handling and in the code dealing with the
6349         UITypeEditors.
6350
6351         - add a Capture to the dropdown form's control once it's
6352         displayed, and add a MouseDown handler that checks to make sure
6353         the position is inside the control.  If it's not, close the
6354         dropdown.  This fixes #78190.
6355
6356         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
6357         if the value is different than the initial value.
6358         
6359 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
6360
6361         * Control.cs: see #78650
6362         - Fixed GetNextControl for several cases:
6363                 - Changed FindFlatForward to return 
6364                 correct sibling control when more than one
6365                 control has same TabIndex as the currently 
6366                 focused one.
6367                 - Changed FindFlatBackward to loop children
6368                 from last to first and apply same logic as in
6369                 FindFlatForward
6370                 - Changed FindControlForward to search for
6371                 children when control is not a container
6372                 but has children, or search for siblings if
6373                 control is a container...
6374                 - Changed FindControlBackward   to continue
6375                 searching for child controls when hitting 
6376                 Panel-like parents
6377                 
6378         - Fixed Focus method to update ActiveControl
6379         (FocusTest.FocusSetsActive failure)
6380         
6381         * TabControl.cs:
6382         - Focus rectangle now refreshes when gaining
6383         or losing focus
6384         - Removed grab for Tab key on IsInputKey that 
6385         was keeping tab navigation from working (#78650)
6386
6387 2006-10-13  Chris Toshok  <toshok@ximian.com>
6388
6389         * PropertyGridView.cs:
6390         - Rewrite SetPropertyValue to loop over SelectedGridItem's
6391         SelectedObjects.
6392
6393         - Deal with GridItem.Value == null a few places.
6394
6395         * PropertyGrid.cs: 
6396         - replace the PopulateGridItemCollection with a pair of methods
6397         which compute the intersection of all the properties in the
6398         SelectedObjects array.  Fixes #79615.
6399
6400         - Throw ArgumentException from set_SelectedObjects if there's a
6401         null in the array.
6402
6403         - Add GetTarget method which can be used to traverse up the
6404         GridItem.Parent chain.  It depends on the assumption that
6405         selected_objects for different GridEntries are always in the same
6406         order (a safe assumption).  Use this method and loop over all the
6407         selected objects in the entry when calling RemoveValueChanged and
6408         AddValueChanged.
6409         
6410         * GridEntry.cs: Make this handle multiple selected objects.
6411         .Value returns null if not all the selected objects share the same
6412         value.
6413
6414 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
6415         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
6416           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
6417           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
6418           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
6419           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
6420         add additional functionality.
6421
6422 2006-10-12  Mike Kestner  <mkestner@novell.com>
6423
6424         * ErrorProvider.cs : new ToolTipWindow ctor sig.
6425         * HelpProvider.cs : new ToolTipWindow ctor sig.
6426         * ToolTip.cs : remove ToolTip param from Window sig since it is
6427         not used.
6428         * ToolBar.cs : add tooltip support.  Fixes #79565.
6429
6430 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6431
6432         * ComboBox.cs: move the events in set_SelectedIndex to 
6433         after the call to HighlightIndex in order to avoid 
6434         possible recursion and subsequent problems with the call
6435         to HighlightIndex and include a range check in 
6436         set_HighlightIndex. Fixes #79588
6437         
6438 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6439
6440         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
6441         to ui thread's settings instead of sunday. 
6442         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
6443
6444 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
6445
6446         * DateTimePicker.cs
6447         * MonthCalendar.cs
6448         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
6449         and implement missing functionality (selecting different parts 
6450         of the date and edit them individually with the keyboard).
6451         
6452 2006-10-11  Chris Toshok  <toshok@ximian.com>
6453
6454         * Control.cs (OnInvalidated): fix NRE relating to last change.
6455
6456 2006-10-11  Chris Toshok  <toshok@ximian.com>
6457
6458         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
6459         atoms in _NET_WM_STATE here if the window is maximized.  We need
6460         to do this because we're *replacing* the existing _NET_WM_STATE
6461         property, so those atoms will be lost otherwise, and any further
6462         call to GetWindowState will return Normal for a window which is
6463         actually maximized.  Fixes #79338.
6464
6465 2006-10-11  Jackson Harper  <jackson@ximian.com>
6466
6467         * TextControl.cs: Special case for setting selection end to
6468         selection start, we basically kill the anchor.
6469         - some todo comments.
6470
6471 2006-10-11  Chris Toshok  <toshok@ximian.com>
6472
6473         * Control.cs: switch to using an "invalid_region" to track which
6474         parts of the image buffer need updating.  This is more code than
6475         the simple fix from r66532.  That version just attempted to always
6476         fill the entire buffer on redraw, which turns out to be
6477         inefficient when invalidating small rectangles.  This version
6478         simply adds the invalid rectangle to the invalid region.  When we
6479         get any WM_PAINT message we see if it can be filled using the
6480         image buffer, and if it can't (if the paint event's clip rectangle
6481         is visible in the invalid region) we first fill the image buffer.
6482         So, the image buffer is still a cache, we just fill it lazily.
6483
6484         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
6485         need it any longer.
6486
6487 2006-10-11  Chris Toshok  <toshok@ximian.com>
6488
6489         * XplatUIX11.cs (SetWindowPos): we need to update both position as
6490         well as size after calling XMoveResizeWindow.  This keeps us from
6491         ignoring future SetWindowPos calls.  Fixes the disappearing
6492         DateTimePicker in the ToolBarDockExample from bug #72499.
6493
6494 2006-10-11  Chris Toshok  <toshok@ximian.com>
6495
6496         * TextBoxBase.cs: reorder things a bit when it comes to
6497         resizing-causing-recalculation.  we were recalculating the
6498         document when our position was changed, which shouldn't happen.
6499         We only care about size changes.  Clear up some more redundant
6500         recalculation calls while I'm at it.  This makes the toolbar dock
6501         example snappy when you're just dragging toolbars around (since it
6502         causes a relayout whenever you move one.)
6503
6504 2006-10-11  Chris Toshok  <toshok@ximian.com>
6505
6506         * ToolBarButton.cs (get_Rectangle): this only returns
6507         Rectangle.Empty if Visible == false, or Parent == null.
6508         Parent.Visible doesn't matter.
6509
6510 2006-10-10  Chris Toshok  <toshok@ximian.com>
6511
6512         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
6513         by .net 1.1, so switch to an internal method instead.
6514
6515 2006-10-10  Chris Toshok  <toshok@ximian.com>
6516
6517         * Control.cs (WM_PAINT): when a control is double buffered we draw
6518         initially to the ImageBuffer and then copy from there.  But when a
6519         parent control which has child controls is double buffered, the
6520         initial drawing doesn't encompass the entire ClientRectangle of
6521         the parent control, so we end up with uninitialized bits (this is
6522         easily seen by dragging the top toolbar in
6523         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
6524         manually set the ClipRectangle of the paint_event (only the one we
6525         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
6526         of the nastiness in bug #72499.
6527
6528         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
6529         which we use in Control.cs's WM_PAINT handling.
6530
6531 2006-10-10  Jackson Harper  <jackson@ximian.com>
6532
6533         * TextBoxBase.cs: Finish off the autoscrolling stuff.
6534
6535 2006-10-10  Chris Toshok  <toshok@ximian.com>
6536
6537         * Cursor.cs: Apply a slightly different patch to the one suggested
6538         in #79609.
6539
6540 2006-10-10  Jackson Harper  <jackson@ximian.com>
6541
6542         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
6543         not the parent form.
6544         * TextControl.cs: use difference in old line count vs new count to
6545         calculate how many lines were added, this takes into account soft
6546         line breaks properly.
6547
6548 2006-10-10  Chris Toshok  <toshok@ximian.com>
6549
6550         * LinkLabel.cs: don't call MeasureCharacterRanges against a
6551         rectangle located at 0,0 and the size of the text.  Use
6552         ClientRectangle instead.  This fixes rendering of non-left aligned
6553         link labels.
6554
6555 2006-10-10  Jackson Harper  <jackson@ximian.com>
6556
6557         * TextBoxBase.cs: When we set the selection start position the
6558         caret.
6559         * TextControl.cs: Need to update the caret when we decrement it to
6560         zero.
6561         - Make sure that the selection_visible flag gets reset to false if
6562         the selection isn't visible.  Before this you could get it set to
6563         visible by changing the selection start, then changing the end to
6564         equal the start.
6565
6566 2006-10-09  Jackson Harper  <jackson@ximian.com>
6567
6568         * TreeView.cs: Don't update scrollbars when we aren't visible.
6569         * TreeNodeCollection.cs: Only need to update scrollbars if being
6570         added to an expanded visible node or the root node.
6571
6572 2006-10-09  Chris Toshok  <toshok@ximian.com>
6573
6574         * XplatUIX11.cs (SendMessage): fix NRE.
6575
6576 2006-10-09  Jackson Harper  <jackson@ximian.com>
6577
6578         * TextBoxBase.cs: Implement horizontal autoscrolling.
6579         * TextControl.cs: Add a movement types that allows moving forward
6580         and backwards without wrapping.
6581
6582 2006-10-09  Mike Kestner  <mkestner@novell.com>
6583
6584         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
6585         with focus "expansion" of labels.  Fixes #79532 and then some.
6586         * ThemeWin32Classic.cs : add LineLimit to ListView label format
6587         when wrapping.
6588
6589 2006-10-09  Jackson Harper  <jackson@ximian.com>
6590
6591         * TextBoxBase.cs: Set the default max values to MaxValue since
6592         we use the scrollbar for autoscrolling and the default value is
6593         100.  If we don't do this the caret won't keep up with typing
6594         after about 18 characters.
6595         * TextControl.cs: Make sure the selection is offset by the
6596         viewport x.  This fixes selection when using auto scrolling.
6597
6598 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
6599         
6600         * Form.cs: The active control should be selected after the 
6601         OnLoad so that any child control initialization that affects
6602         the selection is done. Fixes #79406
6603
6604 2006-10-06  Chris Toshok  <toshok@ximian.com>
6605
6606         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
6607         to have no evil effects.
6608
6609         - Stop selecting StructureNotifyMask on non-toplevel windows.
6610
6611           The only way children should be resized is by using the SWF api,
6612           and we already send WM_WINDOWPOSCHANGED messages in those cases.
6613           Toplevel windows can be interacted with via the window manager,
6614           and so we keep the input mask there.
6615
6616           The other event StructureNotifyMask gives us (that we care
6617           about) is DestroyNotify.  The code is already structured such
6618           that it assumes we won't be getting a DestroyNotify event for
6619           the window we pass to XDestroyWindow (which is what
6620           StructureNotifyMask is supposed to guarantee.)  So, that code
6621           shouldn't be affected by this either.
6622
6623         - Stop selecting VisibilityChangeMask altogether.
6624
6625           We weren't doing anything with the resulting events anyway.
6626         
6627         This vastly reduces the number of X requests and events we see
6628         when resizing/laying out a large ui.
6629
6630 2006-10-06  Chris Toshok  <toshok@ximian.com>
6631
6632         * ScrollableControl.cs (DisplayRectangle): we need to take into
6633         account the DockPadding regardless of whether or not auto_scroll
6634         == true.  rework this slightly to this effect, and fix bug #79606,
6635         and part of #72499 (you can now see the drag handles and drag
6636         toolbars around).
6637
6638 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
6639
6640         * ListViewItem.cs: Collections of selected and checked items are now
6641         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
6642         we mark the collection "dirty".
6643         * ListView.cs: Marked collections readonly. Modified UpdateSelection
6644         to only clear SelectedItems when a new item is selected and MultiSelect
6645         is enabled. CheckedItems and SelectedItems now subscribe to Changed
6646         event of ListViewItemCollection, and mark its list dirty whenever
6647         that event is fire. This allows us to return selected/checked items 
6648         in the same order as they are in the Items collection. This matches
6649         the MS behavior.
6650
6651 2006-10-06  Chris Toshok  <toshok@ximian.com>
6652
6653         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
6654         right mouse clicks.  Fixes bug #79593.
6655
6656 2006-10-06  Chris Toshok  <toshok@ximian.com>
6657
6658         * Splitter.cs: doh, fix splitters that don't want to cancel the
6659         movement when you drag them.  Also, impose the limits on the
6660         values we send to the SplitterMovingEvent.  Fixes #79598.
6661
6662 2006-10-06  Jackson Harper  <jackson@ximian.com>
6663
6664         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
6665         since we use this for auto scrolling also.
6666
6667 2006-10-05  Chris Toshok  <toshok@ximian.com>
6668
6669         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
6670         beginning to think that most datagrid column types don't need this
6671         method.  Fixes bug #79392.
6672
6673 2006-10-05  Chris Toshok  <toshok@ximian.com>
6674
6675         * DataGrid.cs: move back to a more lazy scheme for creating the
6676         CurrencyManager, so we aren't updating it every time you set
6677         either DataSource or DataMember.  Also, don't call
6678         RecreateDataGridRows if the currency manager hasn't changed.
6679
6680 2006-10-05  Chris Toshok  <toshok@ximian.com>
6681
6682         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
6683         emitted, SelectedIndex should already be updated.  Fixes bug
6684         #78929.
6685
6686 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
6687
6688         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
6689           ToolStripTextBox.cs: Initial commit.
6690         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
6691
6692 2006-10-05  Jackson Harper  <jackson@ximian.com>
6693
6694         * TabControl.cs: We need to invalidate the tab control area when
6695         new ones are added (duh).
6696
6697 2006-10-03  Chris Toshok  <toshok@ximian.com>
6698
6699         * Form.cs (ProcessDialogKey): if the focused control is in this
6700         form and is a button, call its PerformClick method here.  Fixes
6701         #79534.
6702
6703 2006-10-04  Jackson Harper  <jackson@ximian.com>
6704
6705         * TabPage.cs: Ignore setting of Visible, and add an internal
6706         method for setting the controls visibility.  TabPage's Visible
6707         property is a little strange on MS, this seems to make us
6708         compatible, and fixes cases where people set all the tab pages to
6709         visible.
6710         * TabControl.cs: Use the new internal setting on tab pages
6711         visibility.
6712
6713 2006-10-03  Mike Kestner  <mkestner@novell.com>
6714
6715         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
6716
6717 2006-10-03  Mike Kestner  <mkestner@novell.com>
6718
6719         * ListView.cs : use is_visible instead of Visible to check if 
6720         scrollbars should be placed/sized.  Also some max_wrap_width
6721         love for LargeIcon view.  [Fixes #79533]
6722
6723 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
6724
6725         * TextControl.cs :
6726           Make set_TextAlign() do actually update the align. Fixed #78403.
6727
6728 2006-10-03  Chris Toshok  <toshok@ximian.com>
6729
6730         * DataGrid.cs: fix a crash when switching datasources if the
6731         vertical scrollbar is at someplace other than Value = 0.  Also,
6732         reduce the number of recalculation passes we do in SetDataSource
6733         from 2 to 1.
6734
6735 2006-10-03  Jackson Harper  <jackson@ximian.com>
6736
6737         * TextBoxBase.cs: Move the if value the same bail check up, we
6738         don't want to empty the document if it is already empty, this
6739         seems to severly mess up the caret.  TODO: I should probably fix
6740         the empty statement to update teh caret somehow.
6741
6742 2006-10-03  Chris Toshok  <toshok@ximian.com>
6743
6744         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
6745         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
6746         reflection, an internal row type, properties on said type, etc.)
6747         will work with our datagrid.  Fixes #79531.
6748
6749 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
6750
6751         * FileDialog.cs: Don't crash if a path is not accessible
6752           (System.UnauthorizedAccessException). Fixes #79569.
6753         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
6754           a ':' too. Return unknown icon for those paths/files.
6755
6756 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
6757
6758         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
6759         GetContainerControl returns null.
6760
6761 2006-10-02  Chris Toshok  <toshok@ximian.com>
6762
6763         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
6764         call to XGetWindowAttributes instead of "handle".  fixes an X
6765         error using notifyicon after the NotifyIconWindow to Form base
6766         class switch.
6767
6768 2006-10-02  Chris Toshok  <toshok@ximian.com>
6769
6770         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
6771         server grab and looping we need to do to get down to the most
6772         deeply nested child window.
6773         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
6774         QueryPointer again after the WarpPointer so we can generate a
6775         proper (fake) MotionNotify event to be enqueued in the destination
6776         window's queue.
6777         (GetCursorPos): call QueryPointer.
6778
6779         Fixes #79556.
6780
6781 2006-10-02  Jackson Harper  <jackson@ximian.com>
6782
6783         * NotifyIcon.cs: Derive the notify icon from a form, so things
6784         like FindForm work on it.
6785         - Swallow the WM_CONTEXTMENU message, since that is generated on
6786         mouse down, and context menu is a mouse up kinda guy.  I believe
6787         the correct fix here is probably to make the notify icon entirely
6788         NC area, but this seems to work fine for anyone not manipulating
6789         WndProc.
6790
6791 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
6792
6793         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
6794           ToolStripItemCollection.cs, ToolStripLabel.cs,
6795           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
6796           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
6797           Initial implementation.
6798         * TextRenderer.cs: Provide padding to MeasureText.
6799
6800 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
6801
6802         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
6803         of ButtonBaseAccessibleObject. Fix bug #79552.
6804
6805 2006-10-02  Jackson Harper  <jackson@ximian.com>
6806
6807         * MdiWindowManager.cs: When maximizing use the containers client
6808         rect, not it's bounds, so nc area is accounted correctly.
6809         - Use the parent form's size for the menu position, since the
6810         client isn't always the full form size.
6811
6812 2006-10-01  Chris Toshok  <toshok@ximian.com>
6813
6814         * ScrollableControl.cs: make sure neither right_edge or
6815         bottom_edge are < 0, since they're used as LargeChange for the
6816         horiz/vert scrollbars respectively.  Fixes #79539.
6817
6818 2006-10-01  Chris Toshok  <toshok@ximian.com>
6819
6820         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
6821         the xplatuix11 code can cause us to destroy/recreate our handle.
6822
6823         * XplatUIX11.cs
6824         (SystrayAdd):
6825         - this code can be invoked many times for the same Hwnd.  Make
6826           sure we only destroy the client window once (the first time this
6827           method is called).  This fixes bug #79544.
6828         - Remove the call to the improperly bound XSync.  why we had two
6829           bindings to this, I will never know, but this call resulted in
6830           events being discarded from the queue(!).
6831         - correct a misunderstanding of _XEMBED_INFO - the second atom is
6832           not our current state but the state we wish to be in.  So, 0 if
6833           we don't want to be mapped.  Change it to 1.
6834         (SystrayRemove): The XEMBED spec makes mention of the fact that
6835         gtk doesn't support the reparent of client windows away from the
6836         embedder.  Looking at gtksocket-x11.c seems to agree with this.
6837         The only avenue we have for removing systray icons is to destroy
6838         them.  We don't want the handle to go away for good, though, so
6839         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
6840         #79545.
6841         
6842 2006-10-01  Chris Toshok  <toshok@ximian.com>
6843
6844         * Form.cs (WndProc): inline the native_enabled variable usage into
6845         the cases in which it's used.  Fixes #79536.
6846
6847 2006-09-29  Mike Kestner  <mkestner@novell.com>
6848
6849         * ListView.cs : toggle the selection state for ctrl clicks in 
6850         multiselect mode. [Fixes #79417]
6851
6852 2006-09-29  Mike Kestner  <mkestner@novell.com>
6853
6854         * ListView.cs : kill CanMultiSelect and refactor the selection
6855         code to support multiselection in the absence of mod keys. Steal
6856         arrow/home/end keys by overriding InternalPreProcessMessage to
6857         restore regressed keynav behavior.
6858         [Fixes #79416]
6859
6860 2006-09-29  Jackson Harper  <jackson@ximian.com>
6861
6862         * MdiClient.cs: Repaint the titlebars when the active window is
6863         changed.
6864
6865 2006-09-29  Chris Toshok  <toshok@ximian.com>
6866
6867         * Application.cs: when entering a runloop with a modal, make sure
6868         the hwnd is enabled.  Fixes #79480.
6869
6870 2006-09-29  Chris Toshok  <toshok@ximian.com>
6871
6872         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
6873         when ListManager.CanAddRows == false, bump us back one.
6874
6875         * DataGridColumnStyle.cs (ParentReadOnly): remove the
6876         listmanager.CanAddRows check.  This makes ArrayLists uneditable
6877         using a datagrid, which is not right.
6878         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
6879         is an IEditable, but call property_descriptor.SetValue regardless.
6880         fixes #79435.
6881
6882 2006-09-29  Chris Toshok  <toshok@ximian.com>
6883
6884         * DataGridBoolColumn.cs: we need to test equality in the face of
6885         possible null values (as is the case with the default NullValue).
6886         This patch keeps us from crashing in that case.
6887
6888 2006-09-29  Jackson Harper  <jackson@ximian.com>
6889
6890         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
6891         here, since it will get called for every node collection in the
6892         tree. This is now done in the treeview once the sorting is
6893         finished.
6894         * TreeView.cs: Recalculate the visible order, and update the
6895         scrollbars after sorting, set the top nope to the root so that the
6896         recalc actually works.
6897
6898 2006-09-29  Chris Toshok  <toshok@ximian.com>
6899
6900         * LinkLabel.cs: more handling of the default link collection in
6901         the face of LinkArea manipulation.  The default link collection
6902         contains 1 element (start=0,length=-1).  If the user sets LinkArea
6903         to anything and the links collection is the default, clear it.
6904         Then only add the link if its nonempty.  Fixes #79518.
6905
6906 2006-09-29  Chris Toshok  <toshok@ximian.com>
6907
6908         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
6909         piece correctly when we hit a '\n'.  Fixes #79517.
6910
6911 2006-09-29  Chris Toshok  <toshok@ximian.com>
6912
6913         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
6914         change the binding of gdk_init_check to take two IntPtr's, and
6915         pass IntPtr.Zero for both of them.  Fixes #79520.
6916
6917 2006-09-29  Mike Kestner  <mkestner@novell.com>
6918
6919         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
6920         [Fixes #78779]
6921
6922 2006-09-28  Jackson Harper  <jackson@ximian.com>
6923
6924         * XplatUIX11.cs: When translating NC messages make sure we go from
6925         whole window to screen, not client window to screen.
6926         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
6927         method doesn't exist
6928         - Skip over controls that aren't forms when arranging.
6929
6930 2006-09-28  Jackson Harper  <jackson@ximian.com>
6931
6932         * XplatUIWin32.cs: Clip the rect to the parent window.
6933         * XplatUIStructs.cs: Add clipping modes struct.
6934         * InternalWindowManager.cs: New private method that factors title
6935         bar heights in when calculating the pos of an NC mouse message.
6936         - Use SendMessage to force a paint when the form's size is changed
6937         instead of painting the decorations immediately.
6938         - Don't let the NC button click messages get to DefWndProc,
6939         because they will attempt to handle windowing themself, and this
6940         messes up z-order (it will put them in front of the scrollbars).
6941         * XplatUIX11.cs: Make sure that we don't reset window managers if
6942         we already have one (ie the window is an MDI window).
6943
6944 2006-09-28  Chris Toshok  <toshok@ximian.com>
6945
6946         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
6947         menu code really needs going over.
6948
6949 2006-09-27  Chris Toshok  <toshok@ximian.com>
6950
6951         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
6952         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
6953         window is maximizable.  So, we need to make sure that even if we
6954         clear the border/wm frame of those functions, they're still
6955         available (basically, we remove the decoration without removing
6956         the function).  Half the fix for #79338.
6957
6958 2006-09-27  Chris Toshok  <toshok@ximian.com>
6959
6960         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
6961         Fixes bug #79515.
6962
6963 2006-09-27  Chris Toshok  <toshok@ximian.com>
6964
6965         * Splitter.cs: reorder things a bit so that we don't actually
6966         draw/move the splitter until after calling OnSplitterMoving.  This
6967         lets users cancel/disallow the movement by explicitly setting
6968         event.SplitX/SplitY.  Fixes #79372.
6969
6970 2006-09-27  Jackson Harper  <jackson@ximian.com>
6971
6972         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
6973         because it is most likely on a window being destroyed, and that
6974         will give us an X11 error.
6975
6976 2006-09-27  Chris Toshok  <toshok@ximian.com>
6977
6978         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
6979         the dropdown button now toggles between showing and hiding the
6980         dropdown.  Also, get rid of dropdown_form_showing and just use
6981         dropdown_form.Visible.  We still don't do a grab, but I'll leave
6982         that part to someone who has handled Capture-fu before.
6983
6984 2006-09-27  Chris Toshok  <toshok@ximian.com>
6985
6986         * DataGrid.cs: return false if alt isn't pressed when '0' is
6987         pressed.  this keeps the '0' key from being swallowed, and fixes
6988         bug #79350.
6989
6990 2006-09-27  Chris Toshok  <toshok@ximian.com>
6991
6992         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
6993         Calling Refresh (in response to a scrollbar event) screws up the
6994         scrollbar painting.  Fixes bug #78923.
6995
6996 2006-09-27  Chris Toshok  <toshok@ximian.com>
6997
6998         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
6999         then insert into hashtable" blocks threadsafe.
7000
7001 2006-09-27  Chris Toshok  <toshok@ximian.com>
7002
7003         * MessageBox.cs (CreateParams): the styles should be |'ed with our
7004         baseclass's, since otherwise the
7005         ControlBox/MinimizeBox/MaximizeBox assignments above have no
7006         effect.  This gets the close button back in messageboxes.
7007
7008 2006-09-27  Chris Toshok  <toshok@ximian.com>
7009
7010         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
7011         flag, not just != 0.  this makes flags that are actually multiple
7012         bits (like WS_CAPTION) work.  fixes bug #79508.
7013
7014 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
7015
7016         * PageSetupDialog.cs: add support for getting and settings the 
7017         paper size, source and orientation.
7018
7019 2006-09-26  Chris Toshok  <toshok@ximian.com>
7020
7021         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
7022         and caption == "", we need to remove the resize handles as well as
7023         the title bar.
7024
7025         * Control.cs (set_Text): turns out that setting Text on a form
7026         should change the WM styles on the window, since if ControlBox ==
7027         false, the only way to get a window border is to have a non-""
7028         Text property.  check winforms/forms/text.cs for an example.  so,
7029         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
7030         update both window styles and title.  This fixes a lot of dialogs
7031         (including the preferences dialog in MonoCalendar.)
7032
7033 2006-09-26  Chris Toshok  <toshok@ximian.com>
7034
7035         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
7036         control isn't a Form), call Win32ShowWindow to hide the window,
7037         but don't update the control Visible property.  When we reparent
7038         back to a parent control, call SetVisible in order for the
7039         window's visibility to be reinstated.
7040
7041         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
7042         the FosterParent.
7043
7044         * Control.cs (ControlCollection.Remove): remove that value.Hide()
7045         call for good, since it breaks MonoCalendar (and other things I'm
7046         sure.) Also, set all_controls to null *after* the owner calls,
7047         which end up regenerating it.
7048         (ChangeParent): allow new_parent to be == null, passing
7049         IntPtr.Zero down to XplatUI.
7050
7051         this fixes #79294 the right way.
7052
7053 2006-09-26  Mike Kestner  <mkestner@novell.com>
7054
7055         * GridEntry.cs : internal SetParent method.
7056         * PropertyGrid.cs : attach to property changed on the proper
7057         target if we have a hierarchical grid with subobjects. Setup
7058         GridItem.Parent for hierarchical items.
7059         * PropertyGridView.cs : Set value on the correct target for
7060         hierarchical grids. [Fixes #78903]
7061
7062 2006-09-26  Chris Toshok  <toshok@ximian.com>
7063
7064         * Control.cs (ChildNeedsRecreating): this should return true if
7065         either we're being recreated and the child is in our list, or our
7066         parent is waiting for our recreation.
7067
7068 2006-09-26  Chris Toshok  <toshok@ximian.com>
7069
7070         * Control.cs (ControlCollection.Remove): reinstate the
7071         value.Hide() call as suggested in bug #79294.
7072
7073 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
7074
7075         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
7076         coordinates (versus a relative move).
7077
7078 2006-09-26  Chris Toshok  <toshok@ximian.com>
7079
7080         * Control.cs: rework child recreation a little bit.  It turns out
7081         that we race between the DestroyNotify the WM_DESTROY message.  If
7082         the parent gets its DestroyNotify before the child gets the
7083         WM_DESTROY message, the child ends up not recreating (since the
7084         parent finishes its recreation on DestroyNotify, and the child
7085         checks ParentIsRecreating.)
7086
7087         So, instead we store off a list of all the child controls which
7088         need to be recreated when the parent control starts to recreate
7089         itself.  Then, when child controls get their WM_DESTROY message we
7090         check to see if they're in the parent's pending recreation list,
7091         and if so, we recreate.  This removes all dependency on ordering
7092         from the code and fixes the initial MonoCalendar upgrade dialog.
7093         
7094 2006-09-26  Jackson Harper  <jackson@ximian.com>
7095
7096         * TextControl.cs: Use the Line to get the length of the line,
7097         since soft line breaks can change the end line.
7098
7099 2006-09-26  Chris Toshok  <toshok@ximian.com>
7100
7101         * Control.cs (ControlCollection.AddImplicit): don't add the
7102         control again if it's already in one of our lists.  This keeps us
7103         from adding controls over and over again for comboboxes when their
7104         handle gets recreated (as the combobox adds implicit controls in
7105         OnHandleCreated).  Fixes the X11 errors in bug #79480.
7106
7107 2006-09-26  Jackson Harper  <jackson@ximian.com>
7108
7109         * TextControl.cs: When deleting characters make sure that any
7110         orphaned zero lengthed tags get deleted.
7111         - Fix ToString for zero lengthed tags.
7112
7113 2006-09-25  Jackson Harper  <jackson@ximian.com>
7114
7115         * TextControl.cs: When getting a tag at the location there can be
7116         multiple tags at the same spot, these are 0-lengthed tags that
7117         appear when extra formatting has been stuck in a location.  We
7118         need to pull out the last of these 0 lengthed tags.
7119
7120 2006-09-25  Jackson Harper  <jackson@ximian.com>
7121
7122         * TextControl.cs: Fix print out in debug method.
7123         * TextBoxBase.cs: When text is set bail if we are setting to the
7124         previous value.
7125         
7126 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
7127
7128         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
7129           It is now possible to change the selected index in a FontXXXListBox
7130           with the up and down arrow keys from the FontXXXTextBoxes.
7131           Also, send the FontXXXTextBox mouse wheel event to the corresponding
7132           FontXXXListBoxes to match ms.
7133
7134 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
7135
7136         * SystemInformation.cs: Return a clone of the theme's MenuFont because
7137         anyone can dispose it, anytime. All other properties returns enums, 
7138         structs or basic types so they don't need such tricks.
7139
7140 2006-09-22  Jackson Harper  <jackson@ximian.com>
7141
7142         * XplatUI.cs:
7143         * XplatUIWin32.cs:
7144         * Clipboard.cs:
7145         * DataFormats.cs:
7146         * XplatUIOSX.cs:
7147         * XplatUIDriver.cs: Update interface to add a primary selection
7148         flag, so the driver can use the primary selection buffer if
7149         needed.
7150         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
7151
7152         * RichTextBox.cs: We need to supply the data object to paste now
7153         (so we can choose to supply CLIPBOARD or PRIMARY).
7154         * TextBoxBase.cs: Supply data object to paste (see above).
7155         - Middle click uses the primary selection data object.
7156         
7157 2006-09-21  Chris Toshok  <toshok@ximian.com>
7158
7159         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
7160         of SetWMStyles.  It's still a rat's nest and is largely
7161         order-dependent which I dislike immensely.  This also fixes the X
7162         button disappearing from toplevel forms.
7163
7164 2006-09-21  Mike Kestner <mkestner@novell.com>
7165
7166         * ListBox.cs: move Jordi's click/dblclick raising code to the
7167         mouse up handler.
7168
7169 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
7170
7171         * ListBox.cs: Fixes 79450
7172
7173 2006-09-21  Mike Kestner <mkestner@novell.com>
7174
7175         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
7176         to deal with people updating the TreeNodeCollection after the tree
7177         is disposed.  "Fixes" 79330.
7178
7179 2006-09-20  Jackson Harper <jackson@ximian.com>
7180
7181         * TextControl.cs: Push the cursor record onto the undo stack
7182         before the delete action. This fixes 78651.
7183
7184 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
7185
7186         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
7187         CreateParams. Fixes 79329.
7188
7189 2006-09-19  Chris Toshok  <toshok@ximian.com>
7190
7191         * XplatUIX11.cs: a couple of blanket code massage passes to clean
7192         things up a bit.  First, get rid of the NetAtoms array (and the NA
7193         enum), and just embed the atoms as static fields.  Also, add a
7194         couple of functions (StyleSet and ExStyleSet) to clean up all the
7195         bitmask testing of styles.
7196
7197         * X11Structs.cs: remove the NA enum, not needed anymore.
7198         
7199 2006-09-19  Chris Toshok  <toshok@ximian.com>
7200
7201         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
7202         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
7203         added cleanup to get MessageBox titles appearing again, which were
7204         broken by my earlier fix for caption-less/ControlBox-less windows.
7205
7206 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
7207
7208         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
7209           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
7210           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
7211           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
7212           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
7213           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
7214           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
7215           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
7216           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
7217           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
7218           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
7219             Inital import.
7220         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
7221           ToolStripButton.cs: Stubs needed for above.
7222         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
7223
7224 2006-09-15  Chris Toshok  <toshok@ximian.com>
7225
7226         * XplatUIX11.cs:
7227         - make the MessageQueues hashtable Synchronized.
7228         
7229         - SendMessage: if the Hwnd is owned by a different thread, use the
7230         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
7231         thread.  Fixes bug #79201.
7232
7233 2006-09-15  Chris Toshok  <toshok@ximian.com>
7234
7235         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
7236         ControlBox == false, we disallow maximize/minimize/close.  If the
7237         form Caption is "" we also disallow move (and get rid of the Title
7238         decoration).  Unfortunately, regardless of how things are set,
7239         we're stuck with the Title and WM menu.
7240
7241 2006-09-15  Chris Toshok  <toshok@ximian.com>
7242
7243         * Application.cs: add locking around the static message_filters
7244         ArrayList, part of #79196.
7245
7246 2006-09-15  Chris Toshok  <toshok@ximian.com>
7247
7248         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
7249         Form.ControlBox == false, the window has no titlebar nor resize
7250         handles.  fixes bug #79368.
7251
7252 2006-09-15  Chris Toshok  <toshok@ximian.com>
7253
7254         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
7255         >= 0.  Fixes bug #79370.
7256
7257 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
7258         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
7259         * Control.cs:
7260             Add properties: LayoutEngine, Margin, DefaultMargin.
7261             Add method: GetPreferredSize.
7262             Move layout logic from PerformLayout to layout engines. 
7263
7264 2006-09-13  Chris Toshok  <toshok@ximian.com>
7265
7266         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
7267         fix for #79326 broke #78718, so this change addresses that.
7268
7269         - in SendWMDestroyMessages remove the call to
7270         CleanupCachedWindows, since we might be recreating the control and
7271         need to maintain the references to right Hwnd handles.  Also, set
7272         the zombie flag to true for each of the children in the hierarchy
7273         instead of calling hwnd.Dispose.  This will cause GetMessage to
7274         ignore all events for the window except for DestroyNotify.
7275
7276         - In GetMessage, ignore messages except for DestroyNotify for
7277         zombie hwnds.
7278         
7279         * Control.cs: revert the is_recreating fix from the last
7280         ChangeLog.  It's definitely "right", but it breaks switching from
7281         an MDI form to a non-MDI form.  Will need to revisit that.
7282
7283         * Hwnd.cs: add a zombie flag, which means "the
7284         client_window/whole_window handles are invalid, but we're waiting
7285         for the DestroyNotify event to come in for them".  Set the flag to
7286         false explicitly if setting WholeWindow/ClientWindow, and also
7287         when Disposing.
7288         
7289 2006-09-13  Chris Toshok  <toshok@ximian.com>
7290
7291         * XplatUIX11.cs: rework window destruction slightly.
7292
7293         - when destroying the windows associated with a control, we don't
7294         need 2 separate XDestroyWindow calls.  Just the one for the
7295         whole_window (or for client_window if whole_window is somehow
7296         IntPtr.Zero -- can this happen?) is enough.
7297
7298         - reworked SendWMDestroyMessages slightly, so we always dispose
7299         the child control hwnd's after sending the messages.
7300         
7301         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
7302         the two places it was used (one was even using hwnd.Handle and the
7303         other hwnd.client_window.  ugh), adding another call in
7304         SendWMDestroyMessages.  We need this new call because now the
7305         DestroyNotify events in the queue will be ignored for the child
7306         controls (as their hwnd's were disposed, and the window id's
7307         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
7308
7309         - this fixes bug #79326.
7310
7311 2006-09-13  Chris Toshok  <toshok@ximian.com>
7312
7313         * Control.cs: don't always set is_recreating to false at the end
7314         of RecreateHandle, since sometimes we're not done (and won't be
7315         until WndProc handles the WM_DESTROY message).  Also, set
7316         is_recreating to false in the WM_DESTROY handling code.  Part of
7317         the fix for bug #79326.
7318
7319 2006-09-13  Miguel de Icaza  <miguel@novell.com>
7320
7321         * X11DesktopColors.cs: Start the droppage of debugging messages.
7322
7323         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
7324
7325 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
7326
7327         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
7328
7329 2006-09-12  Chris Toshok  <toshok@ximian.com>
7330
7331         * DataGrid.cs (get_ListManager): if the list_manager is null, try
7332         to create it using SetDataSource.  Fixes bug #79151.
7333
7334 2006-09-11  Chris Toshok  <toshok@ximian.com>
7335
7336         * XEventQueue.cs: add a DispatchIdle property.
7337
7338         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
7339         either the queue is null, or the queue has DispatchIdle set to
7340         true.
7341         (DoEvents): set queue.DispatchIdle to false around the
7342         peek/translate/dispatch message loop in this method.  This keeps
7343         Application.Doevents from emitting idle events.  Part of the fix
7344         for #78823.
7345
7346 2006-09-11  Chris Toshok  <toshok@ximian.com>
7347
7348         * DataGrid.cs (set_DataSource): make this work for both the
7349         winforms/datagrid test and ReportBuilder.  It seems as though when
7350         we've created a ListManager (or maybe it's if we have a
7351         BindingContext?), when we set the DataSource it clears the
7352         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
7353         #79333.
7354
7355 2006-09-11  Chris Toshok  <toshok@ximian.com>
7356
7357         * XplatUIX11.cs: deal with queue being null, which happens in all
7358         the Clipboard functions.  Fixes one of the two problems mentioned
7359         in #78612.
7360
7361 2006-09-11  Chris Toshok  <toshok@ximian.com>
7362
7363         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
7364         button on various spots (including outside the menu) works closer
7365         to MS, and doesn't crash.  Fixes #79343.
7366
7367 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
7368
7369         * ListView.cs: Do not initialize item_sorter in init. To match MS,
7370         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
7371         and the internal comparer is set. When a new ListViewItemSorter is set,
7372         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
7373         was specified. No further processing is necessary if SortOrder is set
7374         to it's current value. If Sorting is modified to None, and View is
7375         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
7376         (either custom or our internal ItemComparer) to null, on 1.0 profile
7377         only set item_sorter to null if its our internal IComparer. If Sorting
7378         is modified to Ascending or Descending, then use our internal IComparer
7379         if none is set, and if the current IComparer is our internal one then:
7380         on 2.0 profile always replace it with one for new Sorting, and on 1.0
7381         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
7382         Enum.IsDefined to verify whether a valid View value is specified in
7383         its setter. Automatically sort listview items when listview is
7384         created. In Sort, do nothing if ListView is not yet created, or if
7385         no item_sorter is set (no Sorting was set, Sorting was explicitly set
7386         to None or ListViewItemSorter was set to null). Added Sort overload
7387         taking a bool to indicate whether the ListView should be redrawn when
7388         items are sorted (we use this in ListViewItemCollection to avoid double
7389         redraws). Modified our internal IComparer to take the sort order into
7390         account. In Add and AddRange methods of ListViewItemCollection, also
7391         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
7392         view), but use overload with noredraw option to avoid double redraw.
7393         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
7394         true when View is Tile, and do the same when attempting to set View to
7395         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
7396         for selected/checked indices, as it involves overhead when sorting is
7397         done while these collections are not used all that often. Instead
7398         we'll build the indices on demand. Modified IList implementation of
7399         CheckedIndexCollection to use public methods if object is int.
7400         Modified CheckedListViewItemCollection to hide checked items if
7401         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
7402         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
7403         IList implementation in SelectedIndexCollection to use public methods
7404         if object is int. Modified SelectedListViewItemCollection to hide
7405         selected items if listview is not yet created.
7406         * ListViewItem.cs: CheckedIndices list no longer needs to be
7407         maintained separately (see ListView changes). Also clone font, fixes
7408         test failure.
7409
7410 2006-09-11  Mike Kestner  <mkestner@novell.com>
7411
7412         * ComboBox.cs: if we are updating the contents of the currently
7413         selected index, refresh the control or the textbox selection.
7414         [Fixes #79066]
7415
7416 2006-09-11  Mike Kestner  <mkestner@novell.com>
7417
7418         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
7419         the 'specified' logic has been moved there.  This seems like a bug 
7420         in Control.cs, since our current SetBoundsCore completely ignores 
7421         the specified parameter.  Peter's commit seems to indicate that is 
7422         the way the MS control implementation works.  [Fixes #79325]
7423
7424 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
7425
7426         * XplatUI.cs: Set default_class_name to be composed
7427         of current domain id. This allows MWF to be loaded in multiple
7428         domains on Win32.
7429
7430 2006-09-09  Miguel de Icaza  <miguel@novell.com>
7431
7432         * X11Keyboard.cs: If we are unable to obtain the input method, do
7433         not call CreateXic to create the input context.   Should fix
7434         #78944/79276.
7435
7436 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
7437
7438         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
7439           Simplified gnome support by adding more pinvokes to get the
7440           icon for a file or mime type.
7441
7442 2006-09-08  Jackson Harper  <jackson@ximian.com>
7443
7444         * MenuAPI.cs: Deslect popup context menu items before closing the
7445         window, so that you don't see the previously selected item
7446         selected when you reopen the menu.
7447         * TextControl.cs: Update the cursor position even if we don't have
7448         focus.  This fixes typing in things like the ComboBox.  I'm not
7449         totally sure we should always set the visibility if we don't have
7450         focus, but couldn't find any corner cases where the cursor showed
7451         up when it shouldn't.
7452
7453 2006-09-08  Chris Toshok  <toshok@ximian.com>
7454
7455         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
7456         our arrays are length 256.  & 0xff before indexing.  Fixes the
7457         crash in bug #78077.
7458         
7459 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7460
7461         * ThemeWin32Classic.cs: 
7462         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
7463         is true. Handle that check box too.
7464
7465 2006-09-07  Chris Toshok  <toshok@ximian.com>
7466
7467         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
7468         79244.
7469
7470 2006-09-07  Chris Toshok  <toshok@ximian.com>
7471
7472         * Control.cs: in set_BackColor only do the work if
7473         background_color != value.
7474
7475         * XplatUIX11.cs: move the clearing of invalid areas (both client
7476         and nc) to the same block of code where we set (nc_)expose_pending
7477         to false.  That is, move it from PaintEventEnd to PaintEventStart,
7478         so things that cause invalidates from within OnPaint will trigger
7479         another call to OnPaint.  Fixes bug #79262.
7480
7481 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
7482
7483         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
7484         * FileDialog.cs: Fix typo
7485
7486 2006-09-07  Jackson Harper  <jackson@ximian.com>
7487
7488         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
7489         for tab pages if they have any.
7490
7491 2006-09-06  Mike Kestner  <mkestner@novell.com>
7492
7493         * Splitter.cs: use the "current" rect when finishing drag handle
7494         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
7495
7496 2006-09-06  Mike Kestner  <mkestner@novell.com>
7497
7498         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
7499         support offset splitters. [Fixes #79298]
7500
7501 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
7502
7503         * Mime.cs: Fixed a bug that could override the global mime type
7504           result.
7505
7506 2006-09-05  Jackson Harper  <jackson@ximian.com>
7507
7508         * TabControl.cs: Better calculation method for setting the slider
7509         pos. Prevents crashes on really wide tabs.
7510         - Draw Image on tab pages if an image list is used.
7511
7512 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7513
7514         * MonthCalendar.cs: When Font changes, the Size should be
7515         updated to fit the new font's space requirements.
7516
7517 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
7518
7519         * ListBox.cs: If the items are cleared with Items.Clear set
7520           top_index to 0.
7521
7522 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7523
7524         * MonthCalendar.cs: Handle arrow keys as input keys. Also
7525         fire DateChanged event instead of DateSelected event when
7526         the date was changed by keyboard interaction.
7527
7528 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7529
7530         * DateTimePicker.cs: Handle DateChanged for the associated
7531         month_calendar control, and set month_calendar.Font from 
7532         OnFontChanged method, as well as resize the height of the
7533         control when needed. Make PreferredHeight proportional.
7534
7535 2006-09-01  Chris Toshok  <toshok@ximian.com>
7536
7537         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
7538         properties.
7539
7540         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
7541
7542 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
7543
7544         * FileDialog.cs: Set ClientSize instead of window size, to allow space
7545           for decorations (Fixes #79219)
7546
7547 2006-09-01  Mike Kestner  <mkestner@novell.com>
7548
7549         * ComboBox.cs: first stab at sorting plus some selection handling
7550         fixes to bring us more in line with MS behavior.  Also switches back
7551         to index based selection.  Alternative patches for index-based 
7552         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
7553         and latency@gmx.de on bug 78848.  I assume they were similar to this
7554         code I've had simmering in my tree forever.
7555         [Fixes #78848]
7556
7557 2006-09-01  Chris Toshok  <toshok@ximian.com>
7558
7559         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
7560         when setting list position guard against ending up with a -1 index
7561         (the other part of the fix for #78812).  Should probably make sure
7562         we don't need the analogous fix in the ItemDeleted case.
7563
7564         * DataGrid.cs:
7565         - in SetDataSource, work around the fact that the way
7566         OnBindingContextChanged is invoked will cause us to re-enter this
7567         method.  I'll remove the hack once I investigate
7568         OnBindingContextChanged.
7569
7570         - fix the logic in set_DataSource and set_DataMember (basically
7571         what to do if the other of the two is null.)
7572         
7573         - in OnListManagerItemChanged, we need to take into account the
7574         edit row when deciding whether or not to call RecreateDataGridRows
7575         (part of the fix for #78812).
7576
7577 2006-09-01  Jackson Harper  <jackson@ximian.com>
7578
7579         * Splitter.cs: Don't do anything if there is no control to affect
7580         (prevents us from crashing in weird tet cases).
7581         * TreeView.cs: Bounding box for the mouse movement reverting
7582         focus/selection back to previously selected node.  This matches
7583         MS, and makes the tree a lot more useable.
7584         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
7585         use clipping so they are not drawn.  This fixes when the control
7586         is set to have a transparent background, or if it was over an
7587         image.
7588
7589 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
7590
7591         * MimeIcon.cs: Improved handling for reading default icons when
7592           using gnome (2.16 made it necessary). Check and read svg icons
7593           first, then 48x48 and then 32x32 icons.
7594
7595 2006-08-31  Chris Toshok  <toshok@ximian.com>
7596
7597         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
7598         visible.
7599
7600         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
7601         ProcessKeyPreview.  Fixes part of #77806.
7602
7603         * DataGrid.cs: big patch.
7604
7605         - revert the queueing up of DataSource/DataMember if inside
7606         BeginInit/EndInit calls.  That's not the way the datagrid achieves
7607         its delayed databinding.  Instead, call SetDataSource in
7608         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
7609         #78811.
7610
7611         - Also, it wasn't mentioned in #78811, but the test case exhibits
7612         behavior that was lacking in our datagrid implementation - Columns
7613         that have mapping names that don't exist in the datasource's
7614         properties aren't shown.  Yuck.  To fix this I added the bound
7615         field to the column style, and basically any calculation to figure
7616         out anything about columns uses a loop to find the bound columns.
7617         still need to investigate if I can cache an array of the bound
7618         columns or if the indices must be the same.
7619
7620         - When setting CurrentCell, we no longer abort if the cell being
7621         edited was in the add row.  This fixes the other part of #77806.
7622
7623         - The new code also fixes #78807.
7624         
7625         * ThemeWin32Classic.cs: perpetrate the same disgusting
7626         column.bound field hack, and only render bound fields.
7627
7628 2006-08-31  Chris Toshok  <toshok@ximian.com>
7629
7630         * DataGridColumnStyle.cs: add bound field.  this field is true if
7631         the datasource has a property corresponding to the mapping name.
7632
7633         * DataGridTableStyle.cs: set the bound field on the column styles
7634         depending on whether or not we have a column for that property.
7635
7636 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
7637
7638         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
7639           splitter control (fixes #79228)
7640
7641 2006-08-31  Chris Toshok  <toshok@ximian.com>
7642
7643         * DataGridColumnStyle.cs: we need to delay the assignment of
7644         property descriptor until the last possible moment due to the lazy
7645         databinding stuff in the datagrid.  Also, fix the exceptions
7646         thrown by CheckValidDataSource to match MS.
7647
7648 2006-08-31  Jackson Harper  <jackson@ximian.com>
7649
7650         * Form.cs: When activated select the active control, if there is
7651         no active control, we select the first control.
7652         * XplatUIX11.cs: If there is no focus control when we get a
7653         FocusIn event, find the toplevel form and activate it.  This
7654         occurs when you popup a window, it becomes the focus window, then
7655         you close that window, giving focus back to the main window.
7656
7657 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7658
7659         * MonthCalendar.cs: 
7660         * ThemeWin32Classic.cs: Cache Font in bold style, as well
7661         as StringFormat with Center alignments in MonthCalendar,
7662         instead of creating new ones when drawing the control. 
7663         Also, draw the month name in bold style.
7664
7665 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
7666
7667         * Control.cs:
7668           - PerformLayout(): It would seem MS performs the fill even if the 
7669             control is not visible (part of #79218 fix)
7670           - ResetBackColor(): Use the setter to reset the color, to allow
7671             overriders to catch the change.
7672         * Form.cs:
7673           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
7674           - CreateHandle(): dito (part of $79218 fix)
7675           - Don't set an icon if we have a dialog
7676         * ScrollableControl.cs:
7677           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
7678           - ScrollIntoView(): No need to scroll if control is already visible
7679             (resolves fixme and fixes #79218)
7680
7681 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7682
7683         * MonthCalendar.cs: Change proportions in SingleMonthSize
7684         to match the aspect of the original control.
7685
7686 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
7687
7688         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
7689           get updated when they get maximized.
7690
7691 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
7692
7693         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
7694
7695 2006-08-29  Chris Toshok  <toshok@ximian.com>
7696
7697         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
7698
7699 2006-08-29  Jackson Harper  <jackson@ximian.com>
7700
7701         * TreeView.cs: Need to track selected node and highlighted node,
7702         they aren't always the same thing, when the mouse is down on a
7703         node it is hilighted, but not selected yet.
7704         - Do the HideSelection stuff right
7705         - Need to focus on rbutton mouse down. And redraw selection when
7706         right click is mouse upped.
7707
7708 2006-08-29  Mike Kestner  <mkestner@novell.com>
7709
7710         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
7711         when SubItems.Count < Columns.Count.  [Fixes #79167]
7712
7713 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
7714
7715         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
7716
7717 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
7718
7719         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
7720           from X. Only send based on ConfigureNotify if we don't have the
7721           correct location in hwnd (if the window manager moved us)
7722
7723 2006-08-28  Mike Kestner  <mkestner@novell.com>
7724
7725         * ListView.cs: remove a TODO. 
7726         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
7727         [Fixes ListView part of #79166]
7728
7729 2006-08-28  Mike Kestner  <mkestner@novell.com>
7730
7731         * ListView.cs: move wheel handler to parent since it is focused
7732         instead of the item_control now.  [Fixes #79177]
7733
7734 2006-08-28  Mike Kestner  <mkestner@novell.com>
7735
7736         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
7737         when the control is focused. [Fixes #79171]
7738
7739 2006-08-28  Mike Kestner  <mkestner@novell.com>
7740
7741         * ListView.cs: size the item and header controls for empty and
7742         unscrollable views.
7743         * ThemeWin32Classic.cs: draw disabled backgrounds.
7744         [Fixes #79187]
7745
7746 2006-08-28  Chris Toshok  <toshok@ximian.com>
7747
7748         * Form.cs: remove unused "active_form" static field.
7749
7750         * Hwnd.cs: lock around accesses to static windows collection.
7751
7752         * Application.cs: lock threads in Exit ().
7753
7754 2006-08-28  Chris Toshok  <toshok@ximian.com>
7755
7756         * NativeWindow.cs: lock around accesses to window_collection.
7757         
7758 2006-08-28  Chris Toshok  <toshok@ximian.com>
7759
7760         * Control.cs: err, fix this the right way, by locking on controls
7761         when using it.  not by making it synchronized.
7762
7763 2006-08-28  Chris Toshok  <toshok@ximian.com>
7764
7765         * Control.cs: make the static "controls" field synchronized, as it
7766         gets updated from multiple threads.
7767
7768 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7769
7770         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
7771           Prevent other threads from exiting when calling thread sets quit state.
7772         * XEventQueue.cs: Added PostQuitState property
7773
7774 2006-08-27  Chris Toshok  <toshok@ximian.com>
7775
7776         * AsyncMethodData.cs: add a slot for the window handle.
7777
7778         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
7779         window (the destination control's window, not the foster window).
7780
7781         * Control.cs (BeginInvokeInternal): store the window's handle in
7782         the AsyncMethodData.
7783         
7784
7785 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
7786
7787         * XplatUIX11.cs:
7788           - PostQuitMessage: Removed resetting S.D display handle, we might have
7789             another loop started after calling PostQuitMessage (Fixes #79119)
7790           - Created destructor to reset S.D handle
7791
7792 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
7793
7794         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
7795
7796 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7797
7798         * TextControl.cs (Insert): Update the caret position even if we don't
7799           have a handle yet, just don't call the driver in that case.
7800         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
7801           to the end of the new selection text (Fixes #79184)
7802
7803 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7804
7805         * Form.cs (Activate): Only activate if the handle is created)
7806         * Control.c:
7807           - Mark window as invisible when it's disposed
7808           - Check if window handle is created when setting window visible, 
7809             instead of relying just on the is_created variable
7810           - Check if object is disposed when creating the control (Fixes #79155)
7811
7812 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7813
7814         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
7815           when allowing layout again. Otherwise we re-generate the anchoring 
7816           distance to the border again and actually alter what the user wanted
7817           This is ugly, it'd be better if we used DisplayRectangle instead of
7818           ClientRectangle for Control.UpdateDistances, but that causes us to
7819           have other problems (initial anchoring positons would be wrong)
7820           (Fixes #78835)
7821
7822 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7823
7824         * Control.cs:
7825           - The size and location setters shouldn't go directly to 
7826             SetBoundsCore, but to SetBounds, which triggers layout on the
7827             parent, then calls SetBoundsCore. (Related to fix for #78835)
7828           - SetBounds: Moved actual location update code into this function
7829             from SetBoundsCore, to match MS. Added call to PerformLayout if
7830             we have a parent (to trigger resizing of anchored parents if the 
7831             child size has changed (see testcase for #78835) 
7832         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
7833           new control code
7834         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
7835
7836 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7837
7838         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
7839           System.Drawing when a toplevel window gets closed; there might
7840           be other toplevel windows belonging to the same app (Fixes #78052)
7841
7842 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
7843
7844         * FileDialog.cs: After reading FileDialog settings from mwf_config
7845           use Desktop prefix only if a real folder doesn't exist anymore.
7846         * FontDialog.cs: Added char sets.
7847           It is now possible to select the font, size or style with the
7848           textboxes.
7849
7850 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
7851
7852         * PrintPreviewDialog.cs: Use assembly name constants.
7853
7854 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7855
7856         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
7857           scrollbar from whacking it's buttons)
7858
7859 2006-08-24  Chris Toshok  <toshok@ximian.com>
7860
7861         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
7862         in this patch (aggregating setting Left/Top/Width/Height to
7863         setting Bounds on the scrollbars), but the crux of the fix is in
7864         Recalculate, where we scroll by the remaining scroll_position if
7865         we're hiding a scrollbar.  The 2*$5 reward in the comment is
7866         serious.
7867
7868 2006-08-24  Jackson Harper  <jackson@ximian.com>
7869
7870         * MdiClient.cs:
7871         * MdiWindowManager.cs: If the form is made a non-mdi window we
7872         need to remove the form closed event so that closing forms works
7873         correctly.
7874
7875 2006-08-24  Jackson Harper  <jackson@ximian.com>
7876
7877         * Control.cs: Make IsRecreating internal so that the driver can
7878         check it
7879         - Temporarily remove the Hide when controls are removed, its
7880         making a whole bunch of things not work because visibility isn't
7881         getting reset elsewhere correctly
7882         * Form.cs: Need to do a full handle recreation when the mdi parent
7883         is set.
7884         * XplatUIX11.cs: If we are recreating handles don't dispose the
7885         HWNDs.  What was happening is the handles were being recreated in
7886         SendWMDestroyMessages, but then flow continued on in that method
7887         and destroyed the new handles.
7888
7889 2006-08-23  Jackson Harper  <jackson@ximian.com>
7890
7891         * Form.cs: MdiClient is always at the back of the bus
7892         * Control.cs: When the order of items in the collection is changed
7893         we need to reset the all_controls array
7894         - do the same sorta setup thats done when adding a control when a
7895         control is set on the collection.
7896
7897 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
7898
7899         * TextBoxBase.cs (get_Text): Return an empty array if our document
7900           is empty (fixes #79052)
7901
7902 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7903
7904         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
7905           on WM_SYSCHAR messages (fixes #79053)
7906
7907 2006-08-23  Chris Toshok  <toshok@ximian.com>
7908
7909         * DataGrid.cs: fix flickering when scrolling vertically.
7910
7911 2006-08-23  Chris Toshok  <toshok@ximian.com>
7912
7913         * DataGrid.cs (EndEdit): only invalidate the row header when we
7914         need to.
7915
7916 2006-08-23  Chris Toshok  <toshok@ximian.com>
7917
7918         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
7919         methods.  fixes the flicker when scrolling around.
7920
7921 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7922
7923         * FileDialog.cs: Making sure the control is created before we get a 
7924           chance to use it with BeginInvoke (Fixes #79096)
7925
7926 2006-08-23  Chris Toshok  <toshok@ximian.com>
7927
7928         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
7929         width to use when painting the rows.
7930
7931 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
7932
7933         * TextBoxBase.cs:
7934           - Throw ArgumentException if a negative value is passed to SelectionLength
7935           - Update the selection end if start is moved. end needs to be always
7936             after start. (Fixes #79095)
7937           - Track selection length; MS keeps the selection length even if start
7938             is changed; reset on all other operations affection selection
7939
7940 2006-08-22  Jackson Harper  <jackson@ximian.com>
7941
7942         * TreeView.cs: Make sure both scrollbars get displayed and sized
7943         correctly when the other bar is visible.
7944         - Use the original clip rectangle for checking if the area between
7945         the two scrollbars is visible, not the viewport adjusted clipping
7946         rectangle.
7947
7948 2006-08-22  Jackson Harper  <jackson@ximian.com>
7949
7950         * Binding.cs: We don't use IsBinding because it requires the
7951         control to be created, which really shouldn't be necessary just to
7952         set a property on the control.
7953
7954 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7955
7956         * ComboBox.cs: Some CB.ObjectCollection methods must throw
7957         ArgumentNullReferenceException when the argument is null.
7958
7959 2006-08-21  Jackson Harper  <jackson@ximian.com>
7960
7961         * Timer.cs: Track the thread that the timer is started in (NOT
7962         CREATED), this way messages for it will only be triggered on its
7963         queue.
7964         * XEventQueue.cs: Track the timers here, this makes timers per
7965         thread, like MS.
7966         * XplatUIX11.cs: The timers are moved to the XEventQueue.
7967
7968 2006-08-19  Chris Toshok  <toshok@ximian.com>
7969
7970         * XplatUIX11.cs: after further communication with pdb, we get the
7971         best of both worlds.  SetZOrder working for un-Mapped windows, and
7972         no X errors for un-mapped windows.
7973
7974 2006-08-19  Chris Toshok  <toshok@ximian.com>
7975
7976         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
7977         as it was causing pdn toolbars to not have the correct stacking.
7978
7979 2006-08-18  Mike Kestner  <mkestner@novell.com> 
7980
7981         * ListView.cs : guard against negative ClientArea.Width in scrollbar
7982         calculation.  Not sure why control should ever be setting a negative
7983         width though.  Fixes #78931.
7984
7985 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7986
7987         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
7988         null items in ObjectCollection class.
7989         * ListBox.cs.: Likewise.
7990
7991 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
7992
7993         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
7994           as the base method in ThemeWin32Classic should work fine.
7995           Fixed bug #78607.
7996
7997 2006-08-18  Jackson Harper  <jackson@ximian.com>
7998
7999         * Binding.cs: When validating if the value entered doesn't convert
8000         properly reset to the old value.
8001         * RadioButton.cs: Don't fire click when we get focus.
8002
8003 2006-08-18  Jackson Harper  <jackson@ximian.com>
8004
8005         * FileDialog.cs: Paint the selection on the directory combobox the
8006         same way as on MS. 
8007
8008 2006-08-17  Jackson Harper  <jackson@ximian.com>
8009
8010         * ErrorProvider.cs: Don't allow the error control to be selected.
8011         * Control.cs: Don't send the SetFocus messages, the control
8012         activation will do this, and if we do it blindly here validation
8013         does not work.
8014
8015 2006-08-17  Jackson Harper  <jackson@ximian.com>
8016
8017         * Control.cs:
8018         * ContainerControl.cs: Make validation events fire in the correct
8019         order.  TODO: For some reason the first validation event is not
8020         getting fired.
8021
8022 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8023
8024         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
8025
8026 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8027
8028         * ComboBox.cs : implement scroll wheel support for popped-down
8029         state. Fixes #78945. 
8030
8031 2006-08-17  Jackson Harper  <jackson@ximian.com>
8032
8033         * TreeView.cs: Specify treeview actions (old patch that didn't get
8034         committed for some reason).
8035         - Don't let the mouse wheel scroll us too far.  Just want to make
8036         the bottom node visible, not scroll it all the ways to the top.
8037
8038 2006-08-17  Jackson Harper  <jackson@ximian.com>
8039
8040         * XplatUIX11.cs: Mouse wheel events go to the focused window.
8041
8042 2006-08-17  Mike Kestner  <mkestner@novell.com> 
8043
8044         * ComboBox.cs : don't do mouseover selection in simple mode.
8045
8046 2006-08-16  Jackson Harper  <jackson@ximian.com>
8047
8048         * Form.cs: Fire the closing events for all the mdi child windows
8049         when a window is closed.  If the cancel args are set to true, the
8050         main window still gets the event fired, but it doesn't not close.
8051         * MdiWindowManager.cs: Do this closing cleanup in a Closed
8052         handler, instead of when the button is clicked, so cancelling the
8053         close works correctly.
8054         * ComboBox.cs: Send the mouse down to the scrollbar.
8055
8056 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8057
8058         * ListBox.cs: When passing 'null' to SelectedItem,
8059         set SelectedIndex to -1, to unselect items. This is the
8060         observed behaviour in .Net.
8061
8062 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
8063
8064         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
8065           MS flags saying there won't be any. (fixes #78800)
8066         * Control.cs (HandleClick): Made virtual
8067
8068 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
8069
8070         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
8071           cultures. Fixed bug #78399.
8072
8073 2006-08-16  Jackson Harper  <jackson@ximian.com>
8074
8075         * Form.cs: Use the MdiClients MdiChildren property to access
8076         MdiChildren instead of creating the array from the child controls.
8077         * MdiClient.cs: Maintain a separate array of the mdi children, so
8078         that insertion order is maintained when the Z-order is changed.
8079
8080 2006-08-16  Mike Kestner  <mkestner@novell.com> 
8081
8082         * ListView.cs : add an ItemComparer and default to it for sorting.
8083         Fixes #79076, but sorting needs a complete overhaul to be compat with
8084         MS.
8085
8086 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8087
8088         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
8089
8090 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8091
8092         * Hwnd.cs (Mapped): Properly traverse the tree
8093
8094 2006-08-15  Chris Toshok  <toshok@ximian.com>
8095
8096         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
8097         pass manager.Current.GetType() to ParseData.  It has to be the
8098         property type.  So, hold off doing the ParseData until we're in
8099         SetPropertyValue where we know the type.  This fixes the crash in
8100         #78821 but the textbox is still empty.
8101
8102 2006-08-15  Chris Toshok  <toshok@ximian.com>
8103
8104         * DataGrid.cs:
8105         - when we're scrolling, only call Edit() again if the
8106         current cell is still unobscured. Fixes bug #78927.
8107         - when handling mousedown on a cell, ensure the cell is visible
8108         before calling Edit.
8109         - remove the properties from DataGridRow, and remove the
8110         DataGridParentRow class altogether.
8111         
8112
8113 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8114
8115         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
8116           fire OnTextChanged by ourselves. There's no point calling base,
8117           we don't set the base value anywhere else. Fixes #78773.
8118
8119 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8120
8121         * ListBox.cs: Call CollectionChanged when modifying
8122         an item from Items indexer, to update the actual items
8123         in the list box.
8124
8125 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8126
8127         * PrintDialog.cs: Small fixes for focus and a pair of checks,
8128         to match .Net behaviour.
8129
8130 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8131
8132         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
8133
8134 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
8135
8136         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
8137
8138 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
8139
8140         * MessageBox.cs: Prevent potential NRE exception.
8141         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
8142
8143 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8144
8145         * MessageBox.cs: Calculate the owner of a messagebox, also make
8146           it topmost. Fixes #78753
8147
8148 2006-08-14  Chris Toshok  <toshok@ximian.com>
8149
8150         * XplatUIX11.cs: A couple of fixes so that metacity will let us
8151         programmatically move windows.  first, set the PPosition hint as
8152         well as the USPosition hint.  Second include some code from pdb
8153         that sets the window type to NORMAL when we set the transient for
8154         hint.  This is because, in the absence of a window type, metacity
8155         thinks any window with TransientFor set is a dialog, and refuses
8156         to let us move it programmatically.  fascists.
8157
8158 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
8159
8160         * XplatUIX11.cs: When setting normal hints, take into consideration
8161           an different hints previously set so we don't delete them (fixes #78866)
8162
8163 2006-08-12  Chris Toshok  <toshok@ximian.com>
8164
8165         * ToolBarButton.cs: make Layout return a boolean, if something to
8166         do with the button's layout changed.
8167
8168         * ToolBar.cs:
8169         - add another parameter to Redraw, @force, which all existing
8170           calls set to true.
8171         - make the Layout function return a boolean which is true if the
8172           layout has actually changed.  Redraw now uses this (and @force)
8173           to determine when to invalidate.  At present the only place
8174           where @force can be false is the call from OnResize, when
8175           background_image == null.  So, resizing a toolbar when the
8176           layout doesn't change results in no drawing.
8177
8178 2006-08-12  Chris Toshok  <toshok@ximian.com>
8179
8180         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
8181         the VScrollBar and HScrollbar reversed.  oops.
8182
8183         * DataGrid.cs: fix the logic that assigns sizes to the implicit
8184         scrollbars.  we were assigning them twice (once in
8185         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
8186         therefore causing two scrollbar resizes (and redraws?) to happen
8187         per grid resize.
8188
8189 2006-08-12  Chris Toshok  <toshok@ximian.com>
8190
8191         * ToolBarButton.cs: redraw the entire button if the theme tells us
8192         to.
8193
8194         * Theme.cs: add ToolBarInvalidateEntireButton.
8195
8196         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
8197         buttons, just the border.
8198
8199         * ThemeNice.cs: redraw the entire toolbar button since we need to
8200         draw the highlight image.
8201
8202         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
8203         we need to redraw the entire button (not just the border).
8204
8205 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
8206
8207         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
8208           for vertical bars. Fixes the mismatches shown by #78513
8209
8210 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
8211
8212         * FileDialog.cs: If a saved/remembered path doesn't exist
8213           anymore, fall back to "Desktop".
8214
8215 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
8216
8217         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
8218           parent. It's apparently legal to not have one
8219         * XplatUIX11.cs:
8220           - SetZOrder: Don't try to set Z-Order on an unmapped window
8221           - CreateWindow: 0,0 are legal coordinates for a window. don't move
8222             it unless the coordinates are negative
8223
8224 2006-08-10  Mike Kestner  <mkestner@novell.com>
8225
8226         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
8227         when setting to null per msdn docs.  Fixes #78854.
8228
8229 2006-08-10  Chris Toshok  <toshok@ximian.com>
8230
8231         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
8232         flickering by setting a clip rectangle on the Graphics when we
8233         need to redraw just a particular menuitem.  Also, rename "OnClick"
8234         to "OnMouseDown" to reflect what it actually is.
8235         
8236         * Form.cs: track the OnMouseDown change.
8237
8238 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
8239
8240         * CommonDialog.cs: Properly inherit the CreateParams from the form
8241           and only change what we need. Fixes #78865
8242
8243 2006-08-10  Chris Toshok  <toshok@ximian.com>
8244
8245         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
8246         flickering in flat mode (and most of the flickering in general) by
8247         only invalidating the button border (and not the entire rectangle)
8248         when the state changes.  A couple of cases still flicker:
8249         ToggleButtons, and the dropdown arrow case when the user mouse
8250         ups.
8251
8252 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
8253
8254         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
8255           for german keyboards. Numlock state shouldn't affect the behaviour
8256           of the Del key. Fixes bug #78291.
8257
8258 2006-08-10  Chris Toshok  <toshok@ximian.com>
8259
8260         * ListControl.cs: remove the items.Clear line from BindDataItems,
8261         as this is the first thing done by both subclasses in their
8262         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
8263         passed -1, refresh the list.  This gets databinding working when
8264         the datasource is set on the list before the datasource is
8265         populated (as in wf-apps/ReportBuilder.)
8266
8267         * ComboBox.cs: remove the argument to BindDataItems.  This call
8268         should really go away, and be initiated by the ListControl code.
8269
8270         * ListBox.cs: same.
8271
8272 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
8273
8274         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
8275           if no data is in the document when the control is displayed
8276
8277 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
8278
8279         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
8280           yes (fixes #78806)
8281         * TextControl.cs: 
8282           - PositionCaret: Allow positioning of caret but don't call methods 
8283             requiring a handle if the window isn't created yet
8284           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
8285           - owner_HandleCreated: Don't position the caret, just update it's 
8286             location. User might have already set a different position
8287
8288 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
8289
8290         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
8291           windows. Screws up the returned coordinates for child windows. 
8292           Fixes #78825. I'm hoping this doesn't break something, since the
8293           code was explicitly put in 8 months ago, but no bug was attached.
8294           Menus still seem to work properly.
8295
8296 2006-08-08  Chris Toshok  <toshok@ximian.com>
8297
8298         * DataGrid.cs: make BeginInit/EndInit actually do what they're
8299         supposed to do - delay data binding until the EndInit call.  Also,
8300         make the table style collection's CollectionChangeAction.Refresh
8301         work properly.
8302
8303         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
8304         (with action = Refresh) when a consituent table's MappingName is
8305         changed.
8306
8307 2006-08-08  Chris Toshok  <toshok@ximian.com>
8308
8309         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
8310         Invalidate, since changing the text can change the size of the all
8311         toolbar buttons.
8312
8313 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
8314
8315         * Form.cs (AddOwnedForm): Still need to add the form to our listif
8316           we don't have it yet
8317
8318 2006-08-08  Chris Toshok  <toshok@ximian.com>
8319
8320         * PrintControllerWithStatusDialog.cs: don't .Close() the status
8321         dialog, as this causes X errors later on, since we actually
8322         destroy the window.  Instead, .Hide() it.
8323
8324 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
8325
8326         * ComboBox.cs: Added focus reflection for popup window
8327         * XplatUIX11.cs: 
8328           - Removed transient setting for non-app windows for now, not sure it
8329             was needed
8330           - Fixed logic checking if we have captions when deciding 
8331             override_redirect, WS_CAPTION is two bits and a 0 check was not
8332             sufficient
8333           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
8334             complicated
8335         * Form.cs: 
8336           - AddOwnedForm: Don't just add the form to the list, call the property
8337             to ensure the driver is informed about the ownership as well
8338           - CreateHandle: Set the TopMost status in the driver if we have an owner
8339         * XplatUI.cs: Fixed debug statement
8340
8341 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
8342         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8343           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
8344           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
8345           TrackBarRenderer.cs: Make constructor private.
8346         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
8347         * ProfessionalColorTable.cs: Make properties virtual.
8348
8349 2006-08-06  Duncan Mak  <duncan@novell.com>
8350
8351         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
8352         is not changing.
8353
8354 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8355         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
8356           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
8357           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
8358           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
8359           Initial import of new 2.0 classes.
8360
8361 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8362         * Application.cs: Add 2.0 VisualStyles properties.
8363
8364 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
8365         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8366           XplatUIX11.cs: Create property to allow access to existing private
8367           variable "themes_enabled"
8368
8369 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8370
8371         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
8372         file size, as otherwise our class libraries fail using windows. Fixes
8373         bug #78759.
8374
8375 2006-08-04  Jackson Harper  <jackson@ximian.com>
8376
8377         * Form.cs:
8378         * XplatUIX11.cs: Move the toolwindow window manager creation into
8379         the X11 driver, this way on win32 we can let windows create/handle
8380         the toolwindows.
8381
8382 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8383
8384         * PrintDialog.cs: Remove some redundant checks, add some others,
8385         clean some code, and move the focus to the text boxes when the
8386         values are incorrect.
8387
8388 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
8389
8390         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
8391
8392 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
8393
8394         * NumericUpDown.cs: Setting the Minimum and Maximum is now
8395           handled correctly. Fixes bug #79001.
8396
8397 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8398
8399         * PrintDialog.cs: The "Copies" numeric up down must have
8400         set the Minimum property to 1; only if the value is bigger
8401         than 1, activate "Collate" check box. This is the behaviour of .Net.
8402         Also modify the Document elements only if it is not null.
8403
8404 2006-08-03  Jackson Harper  <jackson@ximian.com>
8405
8406         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
8407         length. (We have a larger array then actual node count).
8408                 
8409 2006-08-03  Jackson Harper  <jackson@ximian.com>
8410
8411         * ComboBox.cs: Don't show selection by default.
8412         - The SelectAll isn't needed here, since the focus code should do
8413         that
8414         - DDL style lists to manual selection drawing, so when they
8415         get/lose focus they have to invalidate.
8416
8417 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
8418
8419         * TextBoxBase.cs: Don't always show all selections by default.
8420
8421 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
8422         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
8423           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
8424           Fixed various typos.
8425
8426 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
8427
8428         * Control.cs: Removing the controls in a ControlCollection with
8429           Clear now hides the controls as expected. Fixes bug #78804. 
8430
8431 2006-08-03  Jackson Harper  <jackson@ximian.com>
8432
8433         * Control.cs: Revert previous focus patch, it breaks reflector.
8434
8435 2006-08-03  Jackson Harper  <jackson@ximian.com>
8436
8437         * ComboBox.cs: Cleanup selection and focus with the combobox.
8438         This also eliminates some duplicated keyboard code, since now
8439         everything is handled by the main class.
8440         - Make list selection work on mouse up instead of down, to match
8441         MS.
8442
8443 2006-08-02  Jackson Harper  <jackson@ximian.com>
8444
8445         * Control.cs: Setting focus needs to go through the whole
8446         selection mechanism.
8447
8448 2006-08-02  Chris Toshok  <toshok@ximian.com>
8449
8450         * PrintPreviewDialog.cs: change MinimumSize to use
8451         base.MinimumSize so it works.
8452
8453 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
8454
8455         * TextControl.cs:
8456           - UpdateCaret: Added sanity check in case caret isn't defined yet
8457           - Line.Delete: Now updating selection and caret markers if we're
8458             transfering a node (Properly fixes #78323)
8459           - SetSelectionEnd: Added sanity check
8460         * TextBoxBase.cs: Removed broken attempt to fix #78323
8461
8462 2006-08-01  Chris Toshok  <toshok@ximian.com>
8463
8464         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
8465         Close() call is handled in Form, not here.
8466
8467 2006-08-01  Chris Toshok  <toshok@ximian.com>
8468
8469         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
8470         layout/rendering.
8471
8472         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
8473         for sizes < 100% zoom.  The code now aggressively attempts to keep
8474         from calling document.Print (), and tries not to use the scaling
8475         g.DrawImage whenever possible (it still does if you scale to >
8476         100%, since usually that involves huge images).
8477
8478         * PrintPreviewControl.cs: hook up the close button.
8479
8480 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
8481         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
8482           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
8483           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
8484           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
8485           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
8486           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
8487           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
8488           Removed [Serializable] for 2.0 Event Handlers.
8489
8490 2006-07-31  Jackson Harper  <jackson@ximian.com>
8491
8492         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
8493         * TextControl.cs: Uncomment out the body of this method.
8494
8495 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
8496
8497         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
8498           standard cursors.
8499
8500 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8501
8502         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
8503           that embed TextBox and need selections visible even if textbox is not
8504           focused to enforce that behaviour.
8505         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
8506           selection drawing
8507
8508 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8509
8510         * TextControl.cs:
8511           - Added new SetSelectionStart/SetSelectionEnd overloads
8512           - Fixed viewport width assignment to be accurate
8513           - Adjusted alignment line shift calculations to allow cursor on right
8514             aligned lines to be always visible at the right border (like MS)
8515         * TextBoxBase.cs:
8516           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
8517           - TextBoxBase_SizeChanged: recalculating canvas on size changes
8518           - CalculateScrollBars: Use ViewPort size instead of window size, to
8519             properly consider space occupied by the border and scrollbars 
8520             (Fixes #78661)
8521           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
8522             calculations; no longer leaves artifacts
8523           - CaretMoved: Adjusted window scrolling to match MS and fixed several
8524             calculation bugs (Still missing right/center align calculations)
8525
8526 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
8527
8528         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
8529           use of both scroll rect and clip rect, as they do the same.
8530
8531 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
8532
8533         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
8534           in the event handler (fixes #78912)
8535
8536 2006-07-31  Chris Toshok  <toshok@ximian.com>
8537
8538         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
8539         grid.ListManager.Count, since grid.ListManager might be null.
8540         This of course begs the question "why are we drawing rows for a
8541         grid with no list manager (and therefor no rows)?"  Fixes the
8542         crash in bug #78929.
8543
8544 2006-07-31  Chris Toshok  <toshok@ximian.com>
8545
8546         * RelatedPropertyManager.cs: Don't always chain up to the parent
8547         ctor.  instead, call SetDataSource if the parent's position is !=
8548         -1.  Fixes the crash in #78822.
8549
8550 2006-07-31  Chris Toshok  <toshok@ximian.com>
8551
8552         * DataGrid.cs (get_ListManager): use field instead of property
8553         accessors for datasource and datamember.
8554         (RowsCount): make internal again.
8555         (OnMouseDown): end edits before resizing columns/rows.
8556         (OnMouseUp): restart edits after resizing columns/rows.
8557
8558 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
8559
8560         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
8561           This fixes the situation where the last set cursor is displayed
8562           whenever the mouse is over scrollbars.
8563
8564 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8565
8566         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
8567         Document properties, as well as initial values.
8568
8569 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
8570
8571         * XplatUIWin32.cs (SetBorderStyle): Setting both border
8572           and ClientEdge results in a 3-pixel border, which is
8573           wrong.
8574
8575 2006-07-28  Jackson Harper  <jackson@ximian.com>
8576
8577         * TreeNodeCollection.cs: Fix the clear method.
8578         - Fix the Shrink also
8579
8580 2006-07-27  Jackson Harper  <jackson@ximian.com>
8581
8582         * TreeView.cs: Make sure the visible order is computed when we
8583         attempt to size the scrollbars (for trees that mess with the
8584         scrolling when they shouldn't.
8585         - Make sure to give the scrollbars valid values.
8586
8587 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
8588
8589         * XplatUIX11.cs: Move motion compression code to where it
8590           has less performance impact
8591
8592 2006-07-26  Jackson Harper  <jackson@ximian.com>
8593
8594         * UpDownBase.cs: When the control is selected make the child
8595         controls non selectable, so that a click on them won't do a
8596         focus/unfocus cycle.
8597         - Don't give focus to the text box when the spinner is selected.
8598         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
8599
8600 2006-07-26  Chris Toshok  <toshok@ximian.com>
8601
8602         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
8603         satisfied with this solution.  If the bitmaps are small, we should
8604         just cache them in the PrintPreviewDialog and draw them here.
8605         Also, the layout is broken for the 2-up and 3-up cases.
8606
8607         * Theme.cs: add PrintPReviewControlPaint.
8608
8609         * PrintPreviewDialog.cs: first pass implementation.
8610
8611         * PrintPreviewControl.cs: first pass implementation.  No
8612         scrollbars yet.
8613
8614         * PrintDialog.cs: only validate fields if that particular portion
8615         of the UI is enabled.  Also, set the document's controller to a
8616         PrintControllerWithStatusDialog wrapping the document's print
8617         controller.
8618
8619         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
8620         bring up a SaveFileDialog (i hope we don't want to match the
8621         behavior of the crappy windows file entry) and set the
8622         PrinterSettings.PrintFileName accordingly.
8623
8624 2006-07-26  Jackson Harper  <jackson@ximian.com>
8625
8626         * ContainerControl.cs: Add a field that disables auto selecting
8627         the next control in a container when the container is activated.
8628         * UpDownBase.cs: Don't select the text box when the up down is
8629         selected.
8630
8631 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
8632
8633         * XEventQueue.cs: Added methods for peeking (used for compression
8634           of successive events)
8635         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
8636           mouse move events (fixes #78732)
8637
8638 2006-07-25  Jackson Harper  <jackson@ximian.com>
8639
8640         * UpDownBase.cs: Use an internal class for the textbox so that we
8641         can control focus.  the updown control should always have focus,
8642         if either the text area or the buttons are clicked.
8643         - Send the key messages to the textbox, since it never actually
8644         has focus
8645         - Activate and decativate the textbox caret.
8646
8647 2006-07-24  Jackson Harper  <jackson@ximian.com>
8648
8649         * Control.cs: Use the directed select when selecting a control,
8650         this way the container controls override will get called and the
8651         whole ActiveControl chain will get triggered.  TODO: probably need
8652         to make sure this gets done everywhere instead of the old
8653         Select(Control).
8654         * ContainerControl.cs: Implement the directed Select method to
8655         find and activate the correct child control.    
8656         
8657 2006-07-22  Mike Kestner  <mkestner@novell.com>
8658
8659         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
8660         menu handling code so that clicks without a grab work too.
8661         [Fixes #78914]
8662
8663 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
8664
8665         * FileDialog.cs: Enable the BackButton when dirstack has one element.
8666           Added some small optimizations.
8667
8668 2006-07-21  Matt Hargett  <matt@use.net>
8669
8670         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
8671
8672 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
8673
8674         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
8675           tests pass and match MS in some strange border cases.
8676
8677 2006-07-21  Chris Toshok  <toshok@ximian.com>
8678
8679         * ThemeWin32Classic.cs: handle drawing of the relation links and
8680         parent row buttons.
8681
8682         * Theme.cs: change args to DataGridPaintParentRow.
8683
8684         * DataGrid.cs: Don't use controls for the relation links and
8685         parent buttons, so we have to handle all their interactions in
8686         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
8687         when we're navigating through child tables, so we can reinstate
8688         selection, expanded state, current cell, etc.
8689
8690 2006-07-20  Chris Toshok  <toshok@ximian.com>
8691
8692         * ToolBar.cs: When we redraw a button, for whatever reason,
8693         there's no reason to redraw the entire toolbar.  Also, don't call
8694         Control.Refresh from within Redraw, as it's much heavier than
8695         Invalidate (which is really what we want).
8696
8697 2006-07-20  Chris Toshok  <toshok@ximian.com>
8698
8699         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
8700         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
8701         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
8702         traces from within a debug IBindingList datasource
8703         (in mono/winforms/datagrid) for *days*, I've finally gotten things
8704         to work in a similar fashion.
8705
8706 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8707
8708         * ListBox.cs: Don't call Sort () when setting 
8709         the Sorted property to false (avoid an unnecessary sort).
8710
8711 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8712
8713         * ListControl.cs: DataSource should throw an ArgumentException
8714         instead of a normal exception when the argument is not of the 
8715         correct type.
8716
8717 2006-07-20  Mike Kestner  <mkestner@novell.com>
8718
8719         * Control.cs: add InternalPreProcessMessage to allow us to steal
8720         key events before MWF gets its paws on them.  Adapted from a
8721         suggestion by eno.
8722         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
8723         up/down/left/right navigation. Override the new internal control
8724         method to steal the events since they never make it to WndProc.
8725         * ToolBarButton.cs: don't worry about pushed when setting hilight
8726         since the drawing code prefers pushed to hilight. Invalidate on 
8727         Hilight changes. Fixes #78547 and #78525.
8728
8729 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8730
8731         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
8732           the canvas size. Fixes #78868
8733
8734 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
8735
8736         * Splitter.cs: Track requested split position until first layout
8737           is performed. Fixes #78871
8738
8739 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
8740
8741         * Application.cs: Removed code that forces 1.x for the version
8742           number if the version started with 0. Not sure why that code was
8743           there and I couldn't find any bugs that indicated we needed it.
8744           Fixes #78869
8745
8746 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
8747
8748         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
8749           ResetDefaults(), just write some output to the console until it's
8750           implemented. Fixes bug #78907 for now. Eliminated two warnings.
8751
8752 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
8753
8754         * PropertyGridView.cs: set StartPosition of drop down forms
8755         so they appear in correct initial spot.  Fixes #78190.
8756
8757 2006-07-19  Mike Kestner  <mkestner@novell.com>
8758
8759         * ThemeWin32Classic.cs: use parent background color when drawing
8760         flat toolbars.  Restructure the conditionals to make sure non-flat
8761         non-Divider toolbars are filled too.  Fixes #78837.
8762
8763 2006-07-19  Mike Kestner  <mkestner@novell.com>
8764
8765         * ListBox.cs: Sort on collection changes even if the handle
8766         isn't created yet.  Fixes #78813.
8767
8768 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8769
8770         * ListControl.cs: DisplayMember should never be null,
8771         and now we assign String.Empty when null is passed to it (this
8772         is the .Net way).
8773
8774 2006-07-17  Mike Kestner  <mkestner@novell.com>
8775
8776         * ListViewItem.cs: restructure Font and subitem Font handling 
8777         to hold a specific font and refer back to owner on null.
8778         Fixes #78761.
8779
8780 2006-07-17  Mike Kestner  <mkestner@novell.com>
8781
8782         * ToolBar.cs: bandaid for side-effect of previous patch which was
8783         discarding explicit heights for non-AutoSize toolbars.  Need to
8784         extend my format tester to deal with AutoSize=false. Fixes #78864.
8785
8786 2006-07-15  Jackson Harper  <jackson@ximian.com>
8787
8788         * LabelEditTextBox.cs:
8789         * TreeView.cs: Use a new LabelEdit class for node editing, this
8790         class automatically 'closes' itself when it gets the enter key or
8791         loses focus.
8792         - Use the client rectangle when setting the trees scrollbars, so
8793         border style is taken into account.
8794         
8795 2006-07-14  Jackson Harper  <jackson@ximian.com>
8796
8797         * TreeNode.cs:
8798         * TreeView.cs: Make the editing work similar to MSs, firing the
8799         events correctly and ending edits correctly.
8800
8801 2006-07-14  Mike Kestner  <mkestner@novell.com>
8802
8803         * ToolBarButton.cs:
8804         * ToolBar.cs: layout restructuring and redraw enhancements to support
8805         formatting changes gracefully, like setting TextAlign, ImageList, 
8806         ButtonSize, and Appearance.  Handles explicit button sizing quirks
8807         of the MS controls.  Things like flat toolbars ignoring button size
8808         but becoming constant sized at the largest button's size.  Normal
8809         toolbars with an image set cannot be shrunk smaller than the image,
8810         but text can be clipped/ignored.
8811         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
8812         is zero.  Seems like DrawString should be smart enough to not put
8813         anything on screen though. Also trim labels and ellipsize at the char
8814         boundary, not word.
8815         Fixes #78711 and #78483.
8816
8817 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8818
8819         * FolderBrowserDialog.cs: Disable "New Folder" button and
8820           "New Folder" contextmenu menuitem if a folder like "My Computer"
8821           is selected.
8822
8823 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8824
8825         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
8826         * FolderBrowserDialog.cs:
8827           - Use MWFConfig to store and read size and position settings
8828           - Added code to create a new folder (button or context menu).
8829             Use TreeView labeledit to change the name of the new folder.
8830
8831 2006-07-14  Jackson Harper  <jackson@ximian.com>
8832
8833         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
8834         when the tree is scrolled we end editing.
8835
8836 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
8837
8838         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
8839           Down arrows
8840
8841 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
8842
8843         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
8844         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
8845         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
8846         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
8847         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
8848         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
8849         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
8850         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
8851         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
8852         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
8853         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
8854         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
8855         ListViewItemSelectionChangedEventHandler.cs,
8856         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
8857         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
8858         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
8859         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
8860         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
8861         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
8862         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
8863         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
8864         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
8865         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
8866         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
8867         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
8868         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
8869         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
8870         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
8871         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
8872         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
8873         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
8874         WebBrowserNavigatingEventHandler.cs, 
8875         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
8876
8877 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
8878
8879         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
8880         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
8881         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
8882         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
8883         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
8884         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
8885         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
8886         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
8887         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
8888         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
8889         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
8890         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
8891         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
8892         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
8893         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
8894         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
8895         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
8896         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
8897         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
8898         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
8899         ListViewItemStates.cs, MaskFormat.cs: Added
8900
8901 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
8902
8903         * PropertyGridView.cs: Fix keyboard navigation of drop down.
8904         Patch from eno for bug 78558.
8905         
8906 2006-07-13  Jackson Harper  <jackson@ximian.com>
8907
8908         * TreeView.cs: When an edit is finished make sure that the
8909         selected node is visible.
8910         - When setting the top/bottom use the scrollbars is_visible, so
8911         everything will be set correctly even if the tree isn't visible
8912         yet.
8913
8914 2006-07-13  Jackson Harper  <jackson@ximian.com>
8915
8916         * ComboBox.cs: Revert the item->index part of my previous patch.
8917         * TreeView.cs: Use LostFocus instead of Leave for detecting when
8918         the edit box has lost focus (duh).
8919         - Just make the edit box not visible when we get return, that will
8920         take the focus, which will call EndEdit
8921         * TreeNode.cs When we start editing, notify the treeview.
8922
8923 2006-07-12  Jackson Harper  <jackson@ximian.com>
8924
8925         * ComboBox.cs: Clear out old items before setting the item list.
8926         This prevents databound controls from having their items added
8927         twice.
8928         - Switch the combobox to use indices whereever possible instead of
8929         using Item's.  This allows usto navigate through lists that have
8930         more then one item with the same string value (ie a, b, b, a).
8931         - Scroll the listboxes scrollbar when a non visible item is
8932         highlighted
8933         - Allow keypress to cycle through all the possible values. For
8934         example if you have b1, b2, b3 and hold down the B key all the
8935         values will be cycled through.
8936         
8937 2006-07-12  Jackson Harper  <jackson@ximian.com>
8938
8939         * TextBoxBase.cs:
8940         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
8941         this using the internal methods.
8942         * Control.cs: Add OnGotFocusInternal.  A new method that allows
8943         controls to "override" OnGotFocus and change focus behavior if
8944         needed.
8945         - Same thing for LostFocus
8946         * ComboBox.cs: Pass off focus to the text control properly.
8947
8948 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
8949
8950         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
8951         * FolderBrowserDialog.cs: Almost a complete rewrite.
8952           - Better support for Environment.Specialfolders
8953           - Added support for MWFVFS
8954           - Made setting SelectedPath work
8955
8956 2006-07-12  Jackson Harper  <jackson@ximian.com>
8957
8958         * Control.cs: Optimze getting all the controls.
8959
8960 2006-07-11  Jackson Harper  <jackson@ximian.com>
8961
8962         * ContainerControl.cs: Override SETFOCUS in the container control,
8963         so that it is not selected on mouse click.
8964
8965 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
8966
8967         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
8968           Hopefully we will have a better way once all of focus is complete.
8969
8970 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
8971
8972         * ThemeWin32Classic.cs: Commented out some debug code and fixed
8973           a compile error with csc.
8974
8975 2006-07-11  Jackson Harper  <jackson@ximian.com>
8976
8977         * Control.cs: When hiding a control only select the next control
8978         if the current control was focused.
8979         - Don't handle enter/leave when setting/killing focus, this is
8980         done by the container control.
8981         - Remove is_selected, it's not needed anymore.
8982         - Add utility methods for selecting a child control, and for
8983         firing the Enter/Leave events.
8984         * ContainerControl.cs: When a control is activated fire the
8985         enter/leave events.
8986         - Don't wrap when processing the tab key, so that focus can be
8987         moved outside of the container.
8988         - Use the correct active control
8989
8990 2006-07-11  Jackson Harper  <jackson@ximian.com>
8991
8992         * ComboBox.cs: Remove some debug code that was blinding me.
8993         * UpDownBase.cs: These controls actually aren't implicit, they are
8994         visible to the user.
8995
8996 2006-07-10  Chris Toshok  <toshok@ximian.com>
8997
8998         * DataGrid.cs: move back to the is_adding boolean field.  god i
8999         hate this is_editing/is_adding/is_changing stuff.
9000
9001 2006-07-10  Chris Toshok  <toshok@ximian.com>
9002
9003         * DataGridTableStyle.cs: just check if the property type is bool.
9004         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
9005         Don't use CanRenderType.
9006
9007         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
9008         if our text == NullText.  Remove CanRenderType.
9009
9010         * DataGridBoolColumn.cs: nuke CanRenderType.
9011
9012         * DataGrid.cs: reenable some code to end the current edit inside
9013         of set_CurrentCell.  This fixes the other 1.1.16 regression.
9014         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
9015         Also, remove the visible_row_count arg from CalcRowHeaders, since
9016         we don't need to worry about the actual height of the area.
9017
9018 2006-07-10  Chris Toshok  <toshok@ximian.com>
9019
9020         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
9021         mode, just return.
9022
9023         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
9024         the real sense of the IsInEditOrNavigateMode property (true =
9025         navigate, false = edit).  Also, update OnKeyPress to reflect this.
9026
9027         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
9028         column style exists, we still need to set its property descriptor
9029         to match up with our list manager.
9030
9031 2006-07-10  Chris Toshok  <toshok@ximian.com>
9032
9033         * ThemeWin32Classic.cs: implement the new row/header painting
9034         approach.  The parent row painting will likely go away and
9035         replaced with label controls, but the rest seems to work ok (and
9036         efficiently).
9037
9038         * Theme.cs: change the way we draw datagrid rows.  we don't draw
9039         the row headers as a block now.  Instead we draw them in the
9040         normal draw-row loop.  Add some calls for drawing parent rows and
9041         relation rows.
9042
9043         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
9044         a default table style.  Set the defaults from ThemeEngine.Current,
9045         not SystemColors.  Fix lots of misc issues with property setters.
9046
9047         * DataGrid.cs: move loads of style information out of this class
9048         as it's being duplicated with DataGridTableStyle.  keep track of a
9049         special DataGridTableStyle for the properties we used to mirror
9050         here.  Switch all the style properties to access this table style
9051         instead of instance fields of this class.  Also add a internal
9052         class to represent parent rows (more needs to be stored here, like
9053         the selection state from the parent table, as well as the
9054         expansion state.)  Also, for datasources with relations, do the
9055         right thing for collapse/expand, and add support for the
9056         navigation/parent row buttons.
9057
9058         Lastly, fix the crash in the 1.1.16 build.
9059
9060         * GridTableStylesCollection.cs: make the explicit interface
9061         implementations call the class's methods as opposed to duplicating
9062         them.
9063
9064         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
9065         0 so the text doesn't jump around when we move the cursor.
9066
9067 2006-07-10  Jackson Harper  <jackson@ximian.com>
9068
9069         * TextBoxBase.cs:
9070         * ListBox.cs: Match MS's ToString (this makes debugging focus
9071         stuff infinitely easier).
9072
9073 2006-07-10  Jackson Harper  <jackson@ximian.com>
9074
9075         * Control.cs (SelectNextControl): When checking the control's
9076         parent use this instead of ctrl.parent so that null can be passed
9077         to SelectNextControl. (I have unit tests for this).
9078         - Remove unused var.
9079
9080 2006-07-10  Chris Toshok  <toshok@ximian.com>
9081
9082         * CurrencyManager.cs: correct one regression, the removal of the
9083         finalType field.  Also, add a MonoTODO on CanAddRows, implement
9084         Refresh() correctly, and fix some event emission in
9085         ListChangedHandler.
9086
9087 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9088
9089         * FileDialog.cs: Don't use brackets for new folders if they exist
9090           under *nix. Instead use -(number of existing folders +1).
9091
9092 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
9093
9094         * FileDialog.cs:
9095           - Fixed really nasty bug #78771
9096           - Don't block the whole GUI when reading directories with a lot of
9097             entries. Use an other thread instead and call BeginInvoke to
9098             update the ListView in MWFFileView
9099
9100 2006-07-07  Chris Toshok  <toshok@ximian.com>
9101
9102         * Control.cs (Dispose): release any Capture when disposing.
9103
9104 2006-07-07  Chris Toshok  <toshok@ximian.com>
9105
9106         * LinkLabel.cs (Select): if we chain up to the parent, set
9107         focused_index to -1 so we'll search for the first available link
9108         the next time the user tabs into us.  Also, if the direction is
9109         backward and focused_index == -1, start the search from the last
9110         element.
9111
9112 2006-07-07  Chris Toshok  <toshok@ximian.com>
9113
9114         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
9115         is beyond the end of the text, don't do anything.
9116         (CreateLinkPieces): set our ControlStyles.Selectable based on
9117         whether or not we have any links.
9118         (Link.Invalidate): use a loop instead of foreach.
9119         (Link.set_Start): null out owner.sorted_links so it'll be
9120         recreated by CreateLinkPieces.
9121
9122 2006-07-06  Chris Toshok  <toshok@ximian.com>
9123
9124         * LinkLabel.cs: revert the SetStyle change.
9125
9126 2006-07-06  Chris Toshok  <toshok@ximian.com>
9127
9128         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
9129         (OnEnableChanged): s/Refresh/Invalidate
9130         (OnGotFocus): if we have a focused index already, refocus it (so
9131         if we mouse out/in to the window it'll focus the right link).
9132         (OnKeyDown): move the tab handling out of here.
9133         (OnLostFocus): don't set focused_index to -1, so we can refocus it
9134         when we lose focus.
9135         (OnMouseDown): don't Capture here - Control handles it.  Also,
9136         focus the active link.
9137         (OnMouseUp): don't deal with Capture.
9138         (OnPaintBackgroundInternal): remove.
9139         (OnTextAlignChanged): CreateLinkPieces before calling the
9140         superclass's method.
9141         (OnTextChanged): call CreateLinkPieces before calling superclass's
9142         method.
9143         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
9144         move around.
9145         (Select): implement this, moving the selection between different
9146         links, and call parent.SelectNextControl if we don't have another
9147         link to focus in the given direction.
9148         (CreateLinkPieces): call Invalidate instead of Refresh.
9149         
9150 2006-07-06  Chris Toshok  <toshok@ximian.com>
9151
9152         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
9153         new LinkLabel internals.
9154
9155         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
9156         over pieces looking for active/focused/etc links.  also, deal with
9157         runs of text (and links) with embedded \n's in them, and use
9158         MeasureCharacterRanges instead of MeasureString to figure out the
9159         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
9160         two-step.
9161
9162 2006-07-04  Jackson Harper  <jackson@ximian.com>
9163
9164         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
9165         XKB or key auto repeat, do it manually.  Without key auto repeat,
9166         when a key is held down we get key press, key release, key press,
9167         key release, ... with auto repeat we get key press, key press, key
9168         press ..., and then a release when the key is actually released.
9169
9170 2006-07-03  Jackson Harper  <jackson@ximian.com>
9171
9172         * TabControl.cs:
9173         * ThemeWin32Classic.cs: Tabs do not obey normal background color
9174         rules, they are always control color regardless of the background
9175         color.
9176
9177 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
9178
9179         * FileDialog.cs: Added internal class MWFConfig.
9180           Removed Registry support and replaced it with support for the new
9181           MWFConfig class. See MWFConfig comments for more information.
9182
9183 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
9184
9185         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
9186           rectangle. Added some patches from eno from bug #78490 and fixed
9187           the arrow position for small up and down CPDrawScrollButtons.
9188
9189 2006-06-30  Jackson Harper  <jackson@ximian.com>
9190
9191         * InternalWindowManager.cs: Remove some debug code.
9192         * Form.cs: When an MdiParent is set to null, the window is
9193         "detatched" and becomes a normal window.
9194         * MdiClient.cs: Don't bring the new child form to the front until
9195         it is activated (setting it as active does this), this makes the
9196         previously active forms titlebar get redrawn as inactive.
9197
9198 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
9199
9200         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
9201           with later controls
9202
9203 2006-06-29  Mike Kestner  <mkestner@novell.com>
9204
9205         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
9206         arrow in keynav state.  Fixes #78682.
9207
9208 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
9209
9210         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
9211           order (fixes #78393)
9212
9213 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
9214
9215         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
9216           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
9217           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
9218           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
9219           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
9220           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
9221           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
9222           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
9223           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
9224           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
9225           enumerations (FlagsAttribute, SerializableAttribute, added/removed
9226           values)
9227
9228 2006-06-28  Mike Kestner  <mkestner@novell.com>
9229
9230         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
9231
9232 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
9233
9234         * PropertyGrid.cs,
9235           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
9236           item lines from other area (It also makes BackColor consistent and
9237           compatible with .NET). Fixed bug #78564.
9238
9239 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
9240
9241         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
9242         Patch from Eno for #78555.
9243
9244 2006-06-27  Chris Toshok  <toshok@ximian.com>
9245
9246         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
9247
9248         * DataGridColumnStyle.cs: same.
9249
9250         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
9251         
9252         * DataGridDrawingLogic.cs: nuke.
9253
9254 2006-06-27  Chris Toshok  <toshok@ximian.com>
9255
9256         * DataGridTableStyle.cs: clean up the constructors, and build the
9257         list of child relations for this table.  I have no idea if this is
9258         where we should be doing it (it probably isn't), but since we're
9259         already iterating over the properties..
9260
9261         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
9262         struct and array for keeping track of row information, similar to
9263         what's shown in a hack on
9264         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
9265
9266         * Theme.cs: be consistent about the naming of DataGrid methods,
9267         prefering ColumnWidths and RowHeights over columnsWidths and
9268         RowsHeights.
9269
9270         * ThemeWin32Classic.cs: same, and also add support for variable
9271         sized rows (and the +/- expansion icons for related rows).
9272
9273 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
9274
9275         * TextBoxBase.cs: Applied Eno's patch from #78660
9276
9277 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
9278
9279         * Form.cs (ScaleCore): We don't want to scale our form if it's
9280           state is minimized or maximized, but we still need to scale our
9281           child windows. Also, added try/finally block to ensure layout
9282           gets reset (Fixes #78697)
9283
9284 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
9285
9286         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
9287
9288 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
9289
9290         * Form.cs: Fixed c+p error and added check to resize form if minimum
9291           size is bigger than current size (Fixes #78709)
9292
9293 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
9294
9295         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
9296
9297 2006-06-26  Mike Kestner  <mkestner@novell.com>
9298
9299         * ComboBox.cs: only do Keypress handling in the combo when there  
9300         are items in the collection. Fixes #78710.
9301
9302 2006-06-26  Chris Toshok  <toshok@ximian.com>
9303
9304         * Binding.cs: make this work bi-directionally.  also, clear up
9305         other mixups between Push/Pull Data (e.g. we're supposed to pull
9306         data when validating).
9307
9308         * BindingManagerBase.cs: trim some fully qualified collection
9309         types.
9310
9311         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
9312
9313 2006-06-23  Chris Toshok  <toshok@ximian.com>
9314
9315         * PropertyManager.cs: It appears (according to the unit tests)
9316         that PropertyManager doesn't use
9317         PropertyDescriptor.AddValueChanged to track propery value changes
9318         in its datasource, but uses the same scheme as Binding, where it
9319         looks for a <Property>Changed event and binds to it.
9320
9321         Also, according to the docs, IsSuspended always returns false for
9322         a property manager with a non-null datasource.
9323
9324 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
9325
9326         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
9327           need to update the actual DialogResult. (Fixes #78613)
9328
9329 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
9330
9331         * Form.cs (ShowDialog): Release any captures before running the
9332           new message pump (fixes #78680)
9333
9334 2006-06-22  Mike Kestner  <mkestner@novell.com>
9335
9336         * ListView.cs: Layout column widths properly in details mode even 
9337         if HeaderStyle.None is set.  Fixes #78691.
9338
9339 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
9340
9341         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
9342
9343 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
9344
9345         * Control.cs (ContainsFocus): Using new driver method to get focused
9346           window, instead of trying to use internal tracking var, which can
9347           recursion issues (Fixes #78685)
9348         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
9349           XplatUIWin32.cs: Added GetFocus method to return focused window
9350
9351 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9352
9353         * ColorDialog.cs: when the mouse button is pressed inside the color
9354         matrix, don't let the cursor move out of it until the button is
9355         released, which is the behavior on windows. Changed 'colours' by
9356         'colors' to use the same word consistently.
9357
9358 2006-06-21  Chris Toshok  <toshok@ximian.com>
9359
9360         * DataGrid.cs: add in some basic navigation stuff (navigating to a
9361         child relation and back, using a stack).  Also, remove
9362         GetDataSource and the code that calls it - it's not needed.  Also,
9363         track CurrencyManager.ListName's removal.
9364
9365 2006-06-21  Chris Toshok  <toshok@ximian.com>
9366
9367         * CurrencyManager.cs: push some of the original type checking from
9368         BindingContext.CreateBindingManager to here, and remove some of
9369         the finalType stuff.  Need more tests to make sure I've got the
9370         ListName part right, and we might need more in SetDataSource.
9371
9372         * PropertyManager.cs: add a ctor that takes just the datasource,
9373         and no property name.  Make SetDataSource work with a null
9374         property_name, and make Current return the data_source if the
9375         property descriptor is null.  this makes 'string foo = "hi";
9376         BindingContext[foo].Current' return "hi" as it should.
9377
9378         * RelatedCurrencyManager.cs: make this code more generic - there's
9379         no reason the parent manager has to be CurrencyManager, and
9380         there's no reason to pass the DataRelation.  It suffices to use a
9381         BindingManagerBase and PropetyDescriptor.
9382
9383         * RelatedPropertyManager.cs: make a similar change here.
9384         
9385         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
9386         flower I knew it could be.
9387
9388 2006-06-20  Chris Toshok  <toshok@ximian.com>
9389
9390         * PropertyManager.cs: the PropertyChangedHandler is invoked when
9391         data in the source has changed and we need to update the control,
9392         so s/PullData/PushData.
9393
9394         * CurrencyManager.cs: Refresh is meant to update the control from
9395         data in the datasource.  So, s/PullData/PushData.
9396
9397         * BindingContext.cs: add more ugliness (we weren't handling the
9398         case where data_source = DataTable and data_member = column_name).
9399
9400         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
9401         from the perspective of the datasource.  PullData pulls from the
9402         control, PushData pushes to the control.
9403
9404 2006-06-20  Chris Toshok  <toshok@ximian.com>
9405
9406         * BindingContext.cs: rewrite the CreateBindingManager code to
9407         handle navigation paths more or less properly.  This could
9408         definitely stand some more work, in particular to push the
9409         recursion up to the toplevel.  But that relies on fixes in other
9410         places (System.Data comes to mind).
9411
9412         Also, move to a flat hashtable (and encode the twolevel nature of
9413         the dictionary into the hash key).  This lets us implement the
9414         IEnumerable.GetEnumerator method.
9415
9416         * RelatedCurrencyManager.cs: new class.  Update our view based on
9417         our relation and our parent CurrencyManager's position.
9418
9419         * CurrencyManager.cs: split out some logic from the ctor into
9420         SetView, so it can be called from the new RelatedCurrencyManager
9421         subclass.
9422
9423         * RelatedPropertyManager.cs: new class.  Update our datasource
9424         based on the position of our parent CurrencyManager.
9425
9426         * PropertyManager.cs: split out some logic from the ctor into
9427         SetDataSource, so it can be called from the new RelatedDataSource
9428         subclass.  Also, make the Current getter return the value
9429         of the PropertyDescriptor, not the data_source.
9430
9431         * Binding.cs: no need to duplicate the string splitting code here.
9432
9433 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
9434
9435         * Control.cs:
9436           - set_Enabled: OnEnabledChanged is not called if the inherited state 
9437             of the control is not altered, even though  we might be changing the
9438             internal state of the control (#78458)
9439           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
9440             OnEnabledChanged, to allow easy altering of any child window state
9441           - OnEnabledChanged: Added code to enable/disable driver window state
9442           - OnParentEnabledChanged: Instead of firing the event, call 
9443             OnEnabledChanged, which will fire the event and also a) set driver
9444             window state and pass the enabled state to any grandchildren (#78458)
9445
9446 2006-06-19  Jackson Harper  <jackson@ximian.com>
9447
9448         * InternalWindowManager.cs: We don't set the cursor explicitly
9449         thats done via the response to NCHITTESTs.
9450         - Don't need to adjust for titlebar heights anymore, the
9451         coordinates are coming in the correct coordinates now (see peters
9452         last patch).
9453
9454
9455 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
9456
9457         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
9458           being translated relative to whole window, instead of client window.
9459           That caused broken offsets on mouseclick (and caused gas for our
9460           InternalWindowManager)
9461
9462 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
9463
9464         * TextControl.cs:
9465           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
9466           - Undo(): Added replay of cursor move on DeleteChars action; added
9467             calling Undo() again if a recorded cursor move is invalid (to
9468             ensure that some action is performed on Undo)
9469         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
9470
9471 2006-06-16  Jackson Harper  <jackson@ximian.com>
9472
9473         * MdiClient.cs: Instead of just sizing maximized windows when
9474         there is a resize we also have to adjust the Y of minimized
9475         windows, so they stay pinned to the bottom of the mdi container.
9476         - Eliminate separate tracking of the active control, we can just
9477         get this from the controls collection.
9478         - Paint the decorations for the newly activated titlebar so we get
9479         a pretty blue bar.
9480         * InternalWindowManager.cs:
9481         * ThemeWin32Classic.cs: Minimized windows get all three buttons
9482         even if they are a tool window.
9483         
9484 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
9485
9486         * TextControl.cs (Undo): Handle non-existent cursor locations in the
9487           undo buffer, these can happen when text was deleted and the cursor
9488           was recorded first. Since we will also have a recorded cursor
9489           after the delete this is not an issue. (Fixes #78651)
9490
9491 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
9492
9493         * AccessibleObject.cs: Remove dependence on Control.is_selected;
9494           instead properly track control states internally (allows us to
9495           remove is_selected from Control)
9496
9497 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9498
9499         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
9500         whose width is not a multiple of 8.
9501
9502 2006-06-13  Jackson Harper  <jackson@ximian.com>
9503
9504         * MdiClient.cs:  Only maximize the next child if the current one
9505         is maximized.
9506
9507 2006-06-13  Chris Toshok  <toshok@ximian.com>
9508
9509         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
9510         modified.  Also, guard against grid or grid_drawing being null in
9511         Invalidate.
9512
9513         * DataGrid.cs: Reformat tons of getters/setters.  In the
9514         DataMember setter, just call SetNewDataSource instead of
9515         duplicating some of its functionality.  In SetNewDataSource, don't
9516         check ListManager for null, since the property getter creates the
9517         object if needed.
9518
9519         * DataGridTableStyle.cs: don't set TableStyle or call
9520         SetDataGridInternal on the column here, it's done in
9521         GridColumnStylesCollection.Add.
9522
9523         * GridColumnStylesCollection.cs: fix all the explicit interface
9524         implementations to just call our methods.  Nuke AddInternal() and
9525         move the body of it to Add().  Also, add a call to
9526         column.SetDataGridInternal to Add().
9527
9528         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
9529         base()+duplicate code.  Also, use the Format property instead of
9530         format to generate an Invalidate ala MS.  Lastly, create the
9531         textbox here, unconditionally.
9532         (set_Format): call Invalidate.
9533         (get_TextBox): no need to call EnsureTextBox.
9534         (Commit): remove the message box.
9535         (Edit) remove the call to EnsureTextBox.
9536         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
9537         (EnterNullValue): no need to check textbox for null.
9538         (HideEditBox): no need to check textbox for null.
9539         (SetDataGridInColumn): add the textbox to the grid's controls.
9540         (EnsureTextBox): nuke.
9541         
9542 2006-06-13  Jackson Harper  <jackson@ximian.com>
9543
9544         * MdiWindowManager.cs: Hook up to the maximized menus paint event
9545         and redraw the buttons when needed. Unhook when the window is
9546         unmaximized.
9547         * MainMenu.cs: Add an internal Paint event, the mdi window manager
9548         needs this so that it can redraw its buttons when the menu is
9549         repainted.
9550         * InternalWindowManager.cs:
9551         * Form.cs: The method order has changed for DrawMaximizedButtons,
9552         so that it can be a PaintEventHandler.
9553         
9554 2006-06-13  Jackson Harper  <jackson@ximian.com>
9555
9556         * MdiClient.cs: When we close a maximized mdi window, the next mdi
9557         window is activated and maximized, even if it wasn't before.
9558         - When  a new window is activated repaint the decorations of the
9559         old one, so that it no longer has the Active "look" (the blue
9560         titlebar).
9561         * InternalWindowManager.cs: Open up CreateButtons to base classes
9562         so they can recreate the buttons on state changes.
9563         - If a window is maximized give it all three buttons
9564         * MdiWindowManager.cs: Create the titlebar buttons when the state
9565         is changed, this is needed because a toolwindow will not have all
9566         three buttons until it is maximized.
9567
9568 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
9569
9570         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
9571           Fixed bug #78609.
9572
9573 2006-06-12  Jackson Harper  <jackson@ximian.com>
9574
9575         * KeysConverter.cs: Make sure we handle the Ctrl special case
9576         if its the only key.
9577         
9578 2006-06-12  Jackson Harper  <jackson@ximian.com>
9579
9580         * Theme.cs: Add a method to get the size of a managed window
9581         toolbar button.
9582         * InternalWindowManager.cs: Remove the ButtonSize property, this
9583         should be retrieved from the theme.
9584         * MdiWindowManager.cs: Get the button size from the theme
9585         * ThemeWin32Classic.cs: Make the method to get the managed window
9586         titlebar button size public.
9587         - Handle the different button sizes of maximized toolwindows
9588         (should match any maximized window).
9589         - Get the titlebar height from the theme, not the WM (which gets
9590         it from the theme).
9591
9592 2006-06-12  Jackson Harper  <jackson@ximian.com>
9593
9594         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
9595         event down to the mdi window manager.
9596         - Expose some extra stuff to base classes
9597         - Make sure to end the Capture on an NC Mouse up, so that we can
9598         get double clicks properly, and the sizing doens't stick.
9599         - When doing PointToClient contain it in the workable desktop
9600         area, this prevents windows from changing size when the cursor is
9601         pulled outside of the working area while sizing.
9602         * MdiWindowManager.cs: When we get a double click maximize the
9603         window.
9604         - Reset the cursor after handling mode changes.
9605
9606 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
9607
9608         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
9609           current desktop, instead of just assuming a 0, 0 origin. This
9610           is needed for our internal window manager, to know the top
9611           margin of the desktop
9612
9613 2006-06-12  Chris Toshok  <toshok@ximian.com>
9614
9615         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
9616         we need this to get rid of the selected background in the bool
9617         column.
9618         (CancelEditing): move the ConcedeFocus call to above the Abort
9619         call.  Also, set is_changing to false and invalidate the row
9620         header if we were changing before.
9621         (ProcessKeyPreviewInternal): remove, since noone outside this
9622         class calls it anymore.  Roll the code into ProcessKeyPreview.
9623         (EndEdit): remove the internal version.
9624         (InvalidateCurrentRowHeader): make private.
9625
9626         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
9627         Keys.Escape handling (and with it the last call to
9628         DataGrid.EndEdit from outside the class.)
9629
9630
9631 2006-06-12  Chris Toshok  <toshok@ximian.com>
9632
9633         * DataGridTextBox.cs (.ctor): isedit defaults to false.
9634         (OnKeyPress): set isedit to true.
9635         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
9636         already handled by the grid.
9637
9638         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
9639         right.  ugh.
9640         (set_DataSource): SetDataSource always returns true, so stop
9641         putting it in an if statement.
9642         (EndEdit): get rid of some {}'s
9643         (ProcessGridKey): return true in case Keys.Escape.
9644         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
9645         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
9646         PositionChanged, stopped connecting to CurrentChanged.
9647         (GetDataSource): simplify this a bunch.
9648         (SetDataSource): change return type from bool to void.
9649         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
9650         to this, and make sure we don't set ListManager.Position inside
9651         set_CurrentCell.
9652         (OnListManagerItemChanged): if we're passed an actual index,
9653         redraw that row.
9654
9655         * CurrencyManager.cs (set_Position): don't call PullData here.
9656
9657 2006-06-09  Jackson Harper  <jackson@ximian.com>
9658
9659         * TreeNode.cs:  Recalculate the visible order before doing the
9660         Expand/Collapse Below calls, because those calls generate an
9661         expose.
9662         - Reduce calls to the TreeView property, which is mildly expensive
9663         by using a local var.
9664         * Form.cs: Layout the MDI child windows when creating the parent
9665         form.
9666         - Don't use the internal constructor anymore
9667         * MdiClient.cs: use the parent form width/height (if available)
9668         when laying out the child windows, we do this because the
9669         mdiclient isn't docked yet when the initial layout is done.
9670         - Don't need an internal constructor anymore.
9671
9672 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9673
9674         * FileDialog.cs: handle access errors when trying to create a folder
9675         or changing to a directory. No need to initialize out parameters.
9676
9677 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9678
9679         * FileDialog.cs: Append a number when creating a new folder if the
9680           folder already exists (use parenthesis instead of square brackets)
9681
9682 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9683
9684         * FileDialog.cs:
9685           - Disabled registry support for windows and added better registry
9686             error checking for other systems (need to investigate why it
9687             works perfectly on my system)
9688           - If a folder already exist show an error MessageBox instead of
9689             trying to create an indexed name.
9690           - Fixed a non intentional typo.
9691
9692 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9693
9694         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
9695
9696 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9697
9698         * FileDialog.cs: When creating a new folder don't crash if the
9699           folder already exists.
9700
9701 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9702
9703         * FileDialog.cs: Allmost a complete rewrite.
9704           - added a "virtual" file system that handles the differences
9705             between unix and windows file systems (especially the directory
9706             structure). Moved most of the directory and file handling code
9707             into the vfs.
9708             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
9709             UnixFileSystem and FSEntry.
9710           - Recently used folder/directory, size, location and used file names
9711             (file name ComboBox) are now stored in the registry and get read
9712             before the dialog shows up (fixes part 6 of bug #78446).
9713           - Creation of new folders/directories is now possible (context menu
9714             or ToolBar). Added TextEntryDialog for this that fills in the gap
9715             until ListView.LabelEdit works.
9716           - Fixed cursor handling (bug #78527) and focus handling for
9717             PopupButtonPanel
9718           - Various "Search in" ComboBox enhancements. The content of the
9719             dropdown listbox now almost matches ms.
9720           - Changed the behaviour when the user switches to SpecialFolder
9721             Recent to show the ListView in View.Details.
9722           - Beside using the ToolBar to change the View property of the
9723             file ListView it is now possible to use the context menu too.
9724
9725 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
9726
9727         * ComboBox.cs: Don't create a new ObjectCollection when an item
9728           gets inserted. Just insert the item in the existing object_items
9729           ArrayList.
9730
9731 2006-06-08  Jackson Harper  <jackson@ximian.com>
9732
9733         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
9734         that the treeview and root node checks are done also, this fixes a
9735         regression i caused in the unit tests.
9736
9737 2006-06-07  Wade Berrier <wberrier@novell.com> 
9738
9739         * RichTextBox.cs: More ISO8859-1 -> unicode
9740
9741 2006-06-07  Mike Kestner  <mkestner@novell.com>
9742
9743         * ComboBox.cs : use items to hold highlight/selection so that
9744         collection insertions don't require synchronization.
9745
9746 2006-06-07  Jackson Harper  <jackson@ximian.com>
9747
9748         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
9749         routine.  We now always keep the sized edge at the cursor instead
9750         of computing movement and adjusting rects.  There is one buglet
9751         with this method though when the cursor is moved over area that
9752         the window can not expand too (such as the toolbars on the desktop).
9753
9754 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9755
9756         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
9757         here. Fixes crash on startup in AlbumSurfer.
9758
9759 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
9760
9761         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
9762           values
9763
9764 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9765
9766         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
9767         statement to avoid calling XNextEvent which will block if another thread
9768         took the event that we were expecting. Fixes bug #78605.
9769
9770 2006-06-07  Mike Kestner  <mkestner@novell.com>
9771
9772         * ListView.cs : isolated checkbox clicking from the selection logic.
9773         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
9774
9775 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9776
9777         * Form.cs: Check that the value passed to Form.DialogResult
9778         is a valid enum value.
9779
9780 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9781
9782         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
9783         Computer'. Clicking it in the network view goes to 'My Computer'.
9784         Added CIFS filesystem type. Display the mount point of filesystems.
9785         Avoid duplicate mount points (happens for me with CIFS);
9786
9787 2006-06-06  Jackson Harper  <jackson@ximian.com>
9788
9789         * InternalWindowManager.cs: Draw the maximized windows buttons
9790         when resizing.
9791
9792 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9793
9794         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
9795         all other dialogs. Fixes bug #78585.
9796
9797 2006-06-06  Mike Kestner  <mkestner@novell.com>
9798
9799         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
9800         Only invalidate checkbox on checkstate changes to avoid flicker.
9801         * ListBox.cs : avoid unselect/select when clicking selected item.
9802         avoid reselection flicker for already multiselected items.
9803         Fixes #78382.
9804
9805 2006-06-06  Jackson Harper  <jackson@ximian.com>
9806
9807         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
9808         the parent form so that the menu is removed if needed.
9809
9810 2006-06-06  Mike Kestner  <mkestner@novell.com>
9811
9812         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
9813         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
9814
9815 2006-06-06  Mike Kestner  <mkestner@novell.com>
9816
9817         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
9818
9819
9820 2006-06-06  Jackson Harper  <jackson@ximian.com>
9821
9822         * Control.cs: Use the property (instead of the field) to get the
9823         default cursor so it is instantiated correctly.
9824         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
9825         resizes so we need to manually repaint the window decorations here.
9826         - Set the titlebar button locations as soon as they are created,
9827         otherwise they are not set correctly on win32.
9828         
9829 2006-06-06  Chris Toshok  <toshok@ximian.com>
9830
9831         * CurrencyManager.cs (set_Position): call PullData before
9832         OnCurrentChanged.
9833         (AddNew): after calling IBindingList.AddNew, update our
9834         listposition, and call OnCurrentChanged/OnPositionChanged (without
9835         calling PullData).
9836         (OnCurrentChanged): remove the call to PullData from here.
9837         (OnItemChanged): remove the call to PushData from here.
9838         (OnPositionChanged): change the test from == null to != null to
9839         match the other methods.
9840         (ListChangedHandler): the grossest part of the patch.  Implement
9841         this such that it passes the unit tests in CurrencyManagerTest and
9842         the output more or less matches that of MS's implementation.
9843  
9844 2006-06-06  Mike Kestner  <mkestner@novell.com>
9845
9846         * ListView.cs : only update check state on single click.
9847         * ThemeWin32Classic.cs : fix focus drawing for details view without
9848         fullrowselect.  Fixes #78454.
9849         * XplatUIX11.cs : fix for double click emission.
9850
9851 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
9852
9853         * PropertyGridView.cs : Applied Atsushi's patch to fix
9854         font dialog bug  (#78197).
9855
9856 2006-06-05  Jackson Harper  <jackson@ximian.com>
9857
9858         * TreeNode.cs: Compute the next node for expanding/collapsing
9859         correctly. We now factor in nodes without a NextNode
9860         correctly. (Fixes somes cases in nunit-gui).
9861         * InternalWindowManager.cs: Set the bounds when updating the
9862         virtual position of a tool window.
9863         
9864 2006-06-05  Chris Toshok  <toshok@ximian.com>
9865
9866         * DataGrid.cs: rename cached_currencymgr to list_manager.
9867         (set_CurrentCell): move SetCurrentCell code here, and clean it up
9868         some.
9869         (CurrentRow, CurrentColumn): single accessors so we can make the
9870         cursor movement code a lot easier to understand.
9871         (CurrentRowIndex): implement this in terms of CurrentRow.
9872         (BeginEdit): clean this up a bit.
9873         (CancelEditing): sort out the is_editing/is_changing/is_adding
9874         stuff a little.
9875         (EndEdit): minor changes.
9876         (OnKeyDown): add a comment about a (most likely) unnecessary
9877         check.
9878         (OnMouseDown): cancel editing when we click on a row header.  And
9879         use the CurrentRow setter, not CurrentCell.
9880         (ProcessDialogKey): directly call ProcessGridKey.
9881         (UpdateSelectionAfterCursorMove): factor out this common block of
9882         code (it's used everywhere that we move the cursor by updating row
9883         or column).
9884         (ProcessGridKey): pretty substantial overhaul.  Use the
9885         CurrentRow/CurrentColumn properties to make the code a lot more
9886         readable.  Only use the CurrentCell property when we have to
9887         modify both row and column at once.  Tab behavior is still broken,
9888         and Delete is untested.
9889         (Select): if we have no selected rows, set selection_start to
9890         @row.
9891         (EditCurrentCell): rename EditCell this.  It was only ever invoked
9892         with CurrentCell as the arg, so drop the arg and rename it.
9893
9894         * DataGridColumnStyle.cs: clean up the constructors a little, and
9895         drop CommonConstructor().
9896
9897         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
9898         actually get notified when the user hits it.
9899         (ProcessKeyMessage): *substantially* simplify this method.
9900         There's no reason (that I can see) for the textbox to be making
9901         calls into the datagrid at all.  Remove all of them but the ones
9902         for Enter handling.  those will take some more work.
9903
9904         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
9905         calling HideEditBox.
9906         (HideEditBox): if we have an active textbox, render it invisible
9907         without causing a re-layout of the datagrid.
9908
9909 2006-06-05  Mike Kestner  <mkestner@novell.com>
9910
9911         * ListView.cs : fix NRE crasher when focuseditem is cleared by
9912         collection changes by resetting it to Items[0].  Fixes #78587.
9913
9914 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9915
9916         * MessageBox.cs: if the height of the text is larger than the icon_size,
9917         use that. Fixes bug #78575.
9918
9919 2006-06-05  Jackson Harper  <jackson@ximian.com>
9920
9921         * TreeView.cs: Fix line drawing when scrolling.  To do this each
9922         node is basically responsible for drawing its entire horizontal
9923         area.  When drawing a node it draws its parent node lines if
9924         needed.
9925         - Adjust the clip area to the viewport rectangle
9926         - Fix Left/Right key handling to match MS. (It expand/collapses
9927         and moves to parents/first child but does not move selection to
9928         sibling nodes).
9929         - Fix SetTop to work with new bound calculation code
9930         - When scrollbars are no longer needed we need to reset scrolling
9931         vars and recalculate the visible order so the redraw is correct
9932         * TreeNode.cs: We can't expand/collapse nodes with no children.
9933
9934 2006-06-03  John Luke  <john.luke@gmail.com> 
9935
9936         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
9937         so the colors work without dev packages
9938         
9939 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
9940
9941         * Control.cs 
9942           - Select: Implemented to just use activate. Seems to match MS 
9943             behaviour closest. Documented to only do actual control walking 
9944             based on it's parameters if in a container control so I moved 
9945             the code there.
9946           - Removed selection check logic from our internal Select() method
9947         * ContainerControl.cs:
9948           - Select: Moved selection logic from Control here, since MS documents
9949             that containers obey the bool arguments. No longer calling base
9950
9951 2006-06-02  Jackson Harper  <jackson@ximian.com>
9952
9953         * TreeView.cs: If the selected node isn't changed when we get
9954         focus update the previously selected node so that we see the
9955         selection box.
9956
9957 2006-06-02  Mike Kestner  <mkestner@novell.com>
9958
9959         * ComboBox.cs: restructure grab and general mouse event handling.
9960         Make the composite control raise mouse events like it was a single
9961         control for leaves/enters/motion/up/down events.  fix dropdown list
9962         coordinate mangling and refactor it into the scrollbar subclass to
9963         reduce code duplication.  Fixes #78282 #78361 and #78457.
9964
9965 2006-06-02  Mike Kestner  <mkestner@novell.com>
9966
9967         * ScrollBar.cs: remove Capture setting/clearing, as it happens
9968         automatically in the Control.WndProc.
9969
9970 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9971
9972         * FileDialog.cs: fix crash when running SharpChess, which sets the
9973         FilterIndex to 2 with only one Filter.
9974
9975 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9976
9977         * ToolBar.cs: add SizeSpecified property.
9978         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
9979         try to figure out our real size, otherwise fallback to what the
9980         container says.
9981
9982 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
9983
9984         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
9985         * Control.cs (WndProc): MS always calls the DefWndProc to pass
9986           up the event
9987
9988 2006-06-01  Mike Kestner  <mkestner@novell.com>
9989
9990         * ListView.cs: revamp the focus management in ListView.  It still
9991         causes churn of LostFocus/GotFocus emissions on clicks, but it's
9992         better than not handling focus at all.  Will revisit when pdb feels
9993         the general focus handling is solid.  Fixes #78526.
9994
9995 2006-06-01  Jackson Harper  <jackson@ximian.com>
9996
9997         * TreeView.cs: Set the default border style in the constructor.
9998         - Move painting to use OnPaintInternal instead of capturing
9999         WM_PAINT, this is the correct way of doing things
10000         - UpdateBelow shouldn't invalidate the scrollbar area
10001         - Cap the top on update below in case the node was above the top
10002         of the viewport rectangle.
10003         - ExpandBelow and Collapse below need to obey Begin/End Update.
10004         * TreeNode.cs: Make is_expanded internal so the treenode
10005         collection can change it without firing the whole event chain.
10006         * TreeNodeCollection.cs: When clearing all the child nodes make
10007         sure to recalc the visible order.
10008         - Improve algo for remove the top node
10009
10010 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
10011
10012         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
10013           SendMessage directly calling window procedures, which in turn might
10014           call SetFocus()
10015
10016 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
10017
10018         * Control.cs: Don't handle WM_SETFOCUS if the same window already
10019           has focus (works around X11 sending a FocusIn after our SetFocus)
10020         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
10021
10022 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
10023
10024         * Mime.cs: Fix for the NET_2_0 build.
10025           NameValueCollection needs StringComparer now.
10026
10027 2006-05-31  Chris Toshok  <toshok@ximian.com>
10028
10029         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
10030         return (via an out parameter) the starting X of the column.
10031         (UpdateVisibleColumn): track change to FromPixelToColumn.
10032         (HitTest): add a ColumnResize case here.
10033         (DrawResizeLine): new function, probably poorly named.
10034
10035         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
10036         only need to keep one reference.
10037         (set_ListManager): same.
10038         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
10039         Also, add support for HitTestType.ColumnResize.
10040         (OnMouseMove): add column resize behavior here, and change the
10041         cursor to the correct one as we move around the datagrid.
10042         (OnMouseUp): terminate the column resize if we're resizing.
10043         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
10044         for the current cell.
10045         (ConnectListManagerEvents): use cached_currencymgr.
10046         (DisconnectListManagerEvents): fill this in, using
10047         cached_currencymgr.
10048         (SetCurrentCell): remove cached_currencymgr_events handling.
10049         (SetDataMember): only call DisconnectListManagerEvents if
10050         cached_currencymgr is != null.
10051         (SetDataSource): same.
10052         (OnListManagerCurrentChanged): cached_currencymgr_events ->
10053         cached_currencymgr.
10054
10055 2006-05-31  Jackson Harper  <jackson@ximian.com>
10056
10057         * BindingManagerBase.cs: Remove somedebug code that creeped into
10058         SVN.
10059         * TreeNode.cs: We get the indent level dynamically right now, so
10060         don't track it as a member.
10061         * TreeNodeCollection.cs: Make sure all nodes added to the list
10062         have parents, treeviews/topnodes setup properly.
10063         - Don't attempt to track indent level.
10064
10065 2006-05-30  Jackson Harper  <jackson@ximian.com>
10066
10067         * BindingContext.cs: Create the currency manager tables here.
10068         This allows us to more easily create null tables (when bad data
10069         members are used), and more easily create related currency
10070         managers.
10071         * CurrencyManager.cs: All the table creation stuff is done by the
10072         binding context now.
10073         - Current should throw an exception if listposition is -1.
10074         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
10075         been bound yet.
10076
10077 2006-05-30  Mike Kestner  <mkestner@novell.com>
10078
10079         * ListView.cs: allow reexpansion of zero-width column headers.
10080         Fixes #78528.
10081
10082 2006-05-28  Chris Toshok  <toshok@ximian.com>
10083
10084         * CurrencyManager.cs (get_Current): after the late binding
10085         listposition = -1 fix, we need to guard against it here and return
10086         null, otherwise we raise an exception (which is swallowed
10087         elsewhere, and breaks datagrid databinding.)
10088
10089 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10090
10091         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
10092           than WM_SYSKEY, don't throw if get something unexpected (#78507)
10093
10094 2006-05-26  Jackson Harper  <jackson@ximian.com>
10095
10096         * ControlPaint.cs:
10097         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
10098         values, it's faster and it's all we care about (we don't care if
10099         the names aren't equal).
10100         * KeyboardLayouts.cs: Eliminate some dead code.
10101         - Lazy init things
10102         * X11Keyboard.cs: Lazy init keyboard detection.
10103         - Cleanup access modifiers a little.
10104
10105 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
10106
10107         * XplatUIX11.cs: Once again, attempting to get layout just right.
10108
10109 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
10110
10111         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
10112           the sizes of each link section, that will result in sizes that
10113           match DrawString's layout (Fixes #78391)
10114
10115 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
10116
10117         * FileDialog.cs: If AddExtension property is true autocomplete the
10118           extensions in SaveFileDialog correctly. Fixes bug #78453.
10119           Set MyNetwork and MyComputer to "C:\" for windows. This should
10120           fix part 8 of bug #78446 for now.
10121
10122 2006-05-26  Chris Toshok  <toshok@ximian.com>
10123
10124         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
10125         invalidate the current row header if we need to, but presumably
10126         we'll invalidate the row corrsponding to the bounds or
10127         editingControl.
10128         (GridHScrolled): switch back to this method, as it's part of the
10129         public api.  *sigh*.
10130         (GridVScrolled): same.
10131         (OnMouseWheel): hack up something that more or less works.  Call
10132         GridHScrolled/GridVScrolled directly, instead of duplicating much
10133         of their code here.
10134         (EnsureCellVisibility): reinstate a bunch of this code, since we
10135         can't just set the scrollbar Value and expect to do all the work
10136         in the ValueChanged handler.  Also, Call Update() after scrolling
10137         in one direction so the other XplatX11.ScrollWindow call has the
10138         proper stuff in the proper places.
10139         (EditCell): set is_editing to true before calling .Edit.
10140
10141         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
10142         don't bother comparing first.
10143         (OnKeyPress): call grid.ColumnStartedEditing before calling
10144         base.OnKeyPress.  this will set is_changing and invalidate the row
10145         header if necessary.
10146         (ProcessKeyMessage): for WM_CHAR messages, call
10147         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
10148         and WM_KEYDOWN.
10149         
10150         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
10151         it's done in the DataGrid.
10152         (NextState): call grid.ColumnStartedEditing, which takes care of
10153         invalidating the row header (and setting is_changing).
10154
10155         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
10156         here.  it's done in the DataGrid.
10157
10158 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10159
10160         * Control.cs: allow changing the cursor when the mouse position is
10161         out of bounds but Capture is set.
10162         * LinkLabel.cs: handle the case when the mouse button is pressed on the
10163         linklabel but released somewhere else.
10164
10165 2006-05-25  Jackson Harper  <jackson@ximian.com>
10166
10167         * TreeView.cs: When we get focus if there is no selected node make
10168         it the top node
10169         - Remove some uneeded setup code from Draw.
10170         * TreeNodeCollection.cs: If the tree doesn't have a top node when
10171         a new node is inserted make the new node the top.
10172         * XplatUIX11.cs:
10173         * Timer.cs: Use Utc time so that no local time zone stuff needs to
10174         be used (should be faster).
10175         
10176 2006-05-25  Chris Toshok  <toshok@ximian.com>
10177
10178         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
10179         problem with the last commit.
10180
10181 2006-05-25  Chris Toshok  <toshok@ximian.com>
10182
10183         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
10184         need the invalidate call here, while scrolling right-to-left via
10185         the left arrow key (i.e. moving the editing cell while scrolling).
10186
10187         * DataGrid.cs (.ctor): remove the initialization of
10188         ctrl_pressed/shift_pressed.  We no longer track them using key
10189         up/down handlers, but by using Control.ModifierKeys.  Also, switch
10190         to using ValueChanged handlers on the scrollbars instead of
10191         Scrolled event handlers.  This simplifies a bunch of the scrolling
10192         code.
10193         (GridHValueChanged): rename from GridHScrolled, and change it to
10194         work with the new event args.
10195         (GridVValueChanged): same.
10196         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
10197         (OnMouseWheel): actually scroll the datagrid.  Don't change the
10198         selected cell.
10199         (ProcessGridKey): correct all the keyboard navigation stuff I
10200         could find.  Ctrl up/down/left/right/home/end work now.
10201         (EnsureCellVisibility): correct method name spelling.  Also,
10202         simplify this a touch by not explicitly calling the
10203         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
10204         scrollbar value.
10205         (OnKeyUpDG): no need for this method now.
10206         
10207 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10208
10209         * LinkLabel.cs: display the OverrideCursor when hovering the label.
10210         Fixes bug #78392.
10211
10212 2006-05-25  Chris Toshok  <toshok@ximian.com>
10213
10214         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
10215         r61019.
10216
10217 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
10218
10219         * Application.cs: Moved setting of is_modal and closing to before
10220           we create the control, to allow the event handlers called as a
10221           result of creation affect closing. Also removed Gonzalo's previous
10222           change to setting DialogResult, the behaviour has been moved to 
10223           Form.ShowDialog()
10224         * Form.cs: 
10225           - ShowDialog(): Removed explicit creation of the form, let RunLoop
10226             handle it instead
10227           - ShowDialog(): If no dialog result is set, we need to return Cancel
10228           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
10229             the close is cancelled
10230
10231 2006-05-25  Jackson Harper  <jackson@ximian.com>
10232
10233         * StatusBar.cs: We only need to update the sizes of the other
10234         panels when we have auto size contents.  Also we are only updating
10235         the contents of the panel, not the borders, so compensate for the
10236         border width (TODO: get this width from the theme somehow).
10237         * TreeView.cs: Scrollable is true by default
10238         - Use invalidate instead of refresh where needed
10239         - Factor the scrollable value into scrollbar updating
10240         - Update the scrollbars if the Scrollable property is altered
10241         - Update the selected node if its ImageIndex is changed
10242         - Handle null nodes in UpdateNode (mainly so we don't have to
10243         check if selected is null when updating it
10244         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
10245         are factored into the visible count
10246         - Use VisibleCount for clarity in the code
10247         - When the font is changed we need to recurse through all the
10248         nodes and invalidate their sizes
10249         
10250 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10251
10252         * Application.cs: set the DialogResult to fixed when the main form is
10253         hidden or destroyed while being modal.
10254
10255 2006-05-25  Miguel de Icaza  <miguel@novell.com>
10256
10257         * Theme.cs: Use Tangoified messagebox icons. 
10258
10259         (GetSizedResourceImage): Also cope with width = 0 and do not
10260         trigger a warning in that case (0 means "give me your icon from
10261         the resouce, no special size needed).
10262
10263 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
10264
10265         * Application.cs: Leave runloop if the the main modal form is 
10266           hidden (fixes #78484)
10267
10268 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10269
10270         * BindingContext.cs : reject null datasource in Contains() and
10271           Item[].
10272         * CurrencyManager.cs : check data_member validity when data_source
10273           is dataset. When it is late binding, the initial position is -1.
10274
10275 2006-05-24  Jackson Harper  <jackson@ximian.com>
10276
10277         * TreeNodeCollection.cs: Dont't recalculate the visible order on
10278         inserted nodes that aren't visible.  This changes the
10279         max_visible_order which confuses scrollbar settings.
10280         - Use the enumerator to get the prev node instead of duplicating
10281         code.
10282         * TreeView.cs: Use new method for setting scrollbar values
10283         - Don't set the bounds every time the scrollbar is updated
10284         - When updating below the root node use an invalidate instead of a
10285         refresh to prevent the child controls (scrollbars) from being
10286         refreshed. (UpdateBelow still needs to be reworked anyways).
10287         - Reenable SetBottom now that visible orders are set correctly,
10288         added some debug code incase we ever get bad values there again.
10289         - Set the scrollbar max to 2 less then the max value, this
10290         compensates for the max value being one above the node count, and
10291         for scrollbars adding one extra "notch".
10292         - When drawing image nodes if there is an imagelist we draw the
10293         first image in the list if the supplied image index is out of the
10294         image list's bounds.
10295         
10296 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
10297
10298         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
10299           we receive a size change from the WM (Fixes #78503)
10300
10301 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
10302
10303         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
10304           rectangle (Fixes #78501)
10305
10306 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
10307
10308         * ButtonBase.cs: 
10309           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
10310             as a bitfield.
10311           - Fixed MouseMove to no longer switch pressed state unless the left
10312             mouse button is pressed. Atsushi provided the original patch (#78485)
10313           
10314 2006-05-24  Jackson Harper  <jackson@ximian.com>
10315
10316         * ScrollBar.cs: New internal methods that allow us to change a
10317         couple values on the scrollbar (the most common case is maximum
10318         and large change) without getting multiple invalidates.
10319
10320 2006-05-24  Chris Toshok  <toshok@ximian.com>
10321
10322         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
10323         (Edit): save off the original state in oldState, and set
10324         grid.is_editing to true.
10325         (OnKeyDown): abort editing if escape is pressed.  also, call
10326         NextState if space is pressed.
10327         (OnMouseDown): call NextState.
10328         (NextState): factor out shared code from OnKeyDown and OnMouseDown
10329         here.  Also, only invalidate the row header once (on the initial
10330         is_changing switch) to save on redraws.
10331
10332 2006-05-24  Chris Toshok  <toshok@ximian.com>
10333
10334         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
10335         if the value in the cell is different than it was before.  This
10336         keeps us from triggering a layout when we move around a datarid
10337         with a highlighted cell.
10338         (Edit): suspend layout when creating/positining the text box, and
10339         resume passing false so we don't ever actually re-layout.
10340         (ReleaseHostedControl): same.
10341         (EnsureTextBox): reformat slightly, and set WordWrap to false.
10342
10343         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
10344         control-key sequences should go to the datagrid - remove that
10345         lock.  Also, modify the conditions under which we move between
10346         cells when moving the cursor within a cell, and remove the "this"
10347         and "base" from field accesses.  We weren't even consistent, given
10348         they all were in the base class.
10349
10350 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
10351
10352         * Binding.cs : (.ctor)
10353           An obvious NRE fix for BindingTest.CtorNullTest().
10354
10355 2006-05-23  Chris Toshok  <toshok@ximian.com>
10356
10357         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
10358         them between lines.  This fixes some quirks editing cells in the
10359         datagrid.
10360
10361 2006-05-23  Jackson Harper  <jackson@ximian.com>
10362
10363         * TreeView.cs: Use begin/end update when doing expand/collapse all
10364         so that we don't get flicker on the scrollbar.
10365
10366 2006-05-23  Jackson Harper  <jackson@ximian.com>
10367
10368         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
10369         treenode calculations to be independant of the painting code. To
10370         do this nodes track a visible order which is calculated by the
10371         treeview.
10372         - Call new methods for expanding/collapsing nodes.  These methods
10373         use scrollwindow so we don't have to update everything below the
10374         node.
10375         * TreeView.cs: Refactored drawing and scrolling code.  We don't
10376         need to update nodes when drawing anymore or calculate scrollbar
10377         stuff.
10378         - Added new methods for expanding/collapsing nodes. These methods
10379         use ScrollWindow so as to not have to redraw all the nodes below.
10380         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
10381         we add/remove nodes or sort.
10382         - Handle removing the selected and the top node properly.
10383
10384 2006-05-23  Chris Toshok  <toshok@ximian.com>
10385
10386         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
10387         maybe this should actually happen in the datagrid code?
10388         (EndEdit): no need to invalidate anything, given that
10389         ReleaseHostedControl causes the datagrid to relayout, which
10390         invalidates everything anyway.
10391
10392         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
10393         in SetCurrentCell).
10394         (set_SelectionBackColor): call InvalidateSelection instead of
10395         Refresh.
10396         (set_SelectionForeColor): same.
10397         (BeginEdit): Flesh this out a bit.
10398         (CancelEditing): only do any of this if we're editing/adding.
10399         (EndEdit): same.
10400         (OnMouseDown): there's no need to cancel editing here, it's done
10401         in SetCurrentCell.
10402         (SetCurrentCell): only invalidate the current row header if it's a
10403         different row than the new one.
10404         (ShiftSelection): fix this to work like MS does.
10405         (ResetSelection): factor out the invalidation of selected_rows to
10406         InvalidateSelection.
10407         (SetDataSource): cancel any editing that's going on.
10408
10409         * DataGridColumnStyle.cs
10410         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
10411         call the non-interface version.
10412
10413         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
10414         header rectangle with the clip rectangle so we don't redraw the
10415         entire header for just a small area.  Gets rid of the last flicker
10416         when horizontally scrolling.
10417         (DataGridPaintRow): same.
10418
10419 2006-05-23  Mike Kestner  <mkestner@novell.com>
10420
10421         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
10422         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
10423         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
10424         Critical bug report.
10425
10426 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
10427
10428         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
10429           and this fixes #78493
10430
10431 2006-05-23  Miguel de Icaza  <miguel@novell.com>
10432
10433         * Theme.cs (GetSizedResourceImage): Scale images if the proper
10434         size is not found.  
10435         
10436         * FileDialog.cs: Do not change the background for the side bar as
10437         it wont work nicely with the theme, and also reduces the artifacts
10438         in rendering the icons (which I want to fix too).
10439
10440         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
10441         resources, not resgen resources. 
10442
10443         (PlatformDefaultHandler): Pull images using the new API.
10444
10445 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
10446
10447         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
10448           a reference to the hwnd and will not remove it unless there are
10449           no pending exposures (fixes #78341)
10450         * XplatUI.cs: Improved debug
10451
10452 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
10453
10454         * MenuAPI.cs : don't handle OnClick event when it was not the left
10455           button. Fixed bug #78487.
10456
10457 2006-05-23  Mike Kestner  <mkestner@novell.com>
10458
10459         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
10460         prefer submenus to the top menu for item lookup, to avoid popping down
10461         top-row items.
10462
10463 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
10464
10465         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
10466           Graphics.FillRectangle as the visual results are really bad (even
10467           on win). We now draw perfect arrows (and perfect shadows when the
10468           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
10469           Pen.DashPattern to draw the dots of each line.
10470
10471 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
10472
10473         * FileDialog.cs: Update the filename combobox when navigating through
10474           the ListView with the cursor keys. Fixes part 7 of bug #78446.
10475
10476 2006-05-22  Mike Kestner  <mkestner@novell.com>
10477
10478         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
10479         Fixes #78463.
10480
10481 2006-05-22  Mike Kestner  <mkestner@novell.com>
10482
10483         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
10484         requests. Fix a misspelled parameter and a copy paste exception error
10485         in Select.
10486
10487 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
10488
10489         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
10490           to get the same width/height (5/13) on X11 as the default font has on
10491           win32. This means that our DefaultFont emSize is smaller than the 
10492           the MS SWF equivalent (even thought the width/height stays the same)
10493
10494 2006-05-20  Jackson Harper  <jackson@ximian.com>
10495
10496         * MdiClient.cs:
10497         * MdiWindowManager.cs:
10498         * InternalWindowManager.cs: Make sure to use the border width from
10499         the theme.
10500
10501 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
10502
10503         * PrintDialog.cs: Implements printer details
10504
10505 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
10506
10507         * FileDialog.cs: Added focus handling for PopupButtonPanel.
10508           Fixes part 1 and 2 of bug #78446
10509
10510 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
10511
10512         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
10513           instead of sticking to the first ever calculated value
10514
10515 2006-05-19  Mike Kestner  <mkestner@novell.com>
10516
10517         * ComboBox.cs: fix mouse motion selection to use MousePosition and
10518         PointToClient, since Capture is set. Fixes #78344.
10519
10520 2006-05-19  Mike Kestner  <mkestner@novell.com>
10521
10522         * ListView.cs: match MS behavior in Details view where items are not
10523         drawn if Columns.Count == 0. 
10524         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
10525         Use a separate pen to draw the check, since changing the width affects
10526         the box as well.  Fixes #78454.
10527
10528 2006-05-18  Miguel de Icaza  <miguel@novell.com>
10529
10530         * ListView.cs: ArgumentOutOfRangeException, single versions of the
10531         exception should throw the name of the invalid argument.
10532
10533         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
10534         there are no files listed. 
10535
10536 2006-05-18  Jackson Harper  <jackson@ximian.com>
10537
10538         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
10539         up.
10540
10541 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
10542
10543         * Control.cs: Brought back our old UpdateZOrder method as a private
10544           function and switched our calls from UpdateZOrder to the new one.
10545           This fixes the Paint.Net canvas disappearing bug.
10546
10547 2006-05-18  Jackson Harper  <jackson@ximian.com>
10548
10549         * Theme.cs:
10550         * ThemeWin32Classic.cs:
10551         * InternalWindowManager.cs: Move the drawing into the theme,
10552         expose everything the theme should need from the window manager.
10553
10554 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
10555
10556         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
10557           from the call to NativeWindow to avoid walking up the parent chain
10558           further than needed (speeds up setting cursors and avoids setting
10559           the wrong cursor if a parent has another cursor defined)
10560         * Cursor.cs: When loading an icon as cursor, MS uses the center of
10561           the icon as hotspot, not what's contained as hotspot in the icon
10562           file. This fixes the perceived drawing offset seen with Paint.Net
10563         
10564 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
10565
10566         * XplatUIX11.cs: 
10567           - Store the calculated rectangle in Hwnd object and use it when 
10568             setting the client size
10569           - Force Toolwindows to always be type Dock, to ensure they're on top
10570
10571 2006-05-18  Mike Kestner  <mkestner@novell.com>
10572
10573         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
10574         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
10575         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
10576         Substantial refactoring to remove confusing nested classes. Coding
10577         standard and Get+Set->property refactorings.  Shift to index based
10578         highlighting in ComboListBox instead of constantly using IndexOf and
10579         Items[]. Add invalidations on resize for DropDownList to fix ugliness
10580         in FileDialog growth.  Draw borders manually since Simple mode needs
10581         to look like two independent controls.  Make listbox border
10582         conditional to DropDownStyle.  Improved OwnerDraw support.
10583
10584 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
10585
10586         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
10587         Don't set the disposed graphics to null, so we can throw the "right"
10588         exception if the graphics is reused later (added a flag to avoid 
10589         double disposing). Some behaviours are different under 2.0 and are
10590         filled under bug #78448.
10591
10592 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
10593
10594         * Control.cs: When double-buffering is enabled, we need to reset
10595           our graphics context between paint calls. Otherwise, any 
10596           transformations and other alterations on the context will 
10597           become cumulative (#77734)
10598
10599 2006-05-18  Mike Kestner  <mkestner@novell.com>
10600
10601         * ListView.cs: do focused item selection like MS on clicks. 
10602         Rework focus handling for ItemControl so LostFocus invalidates as
10603         well.
10604         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
10605         the ListView ItemControl has focus.
10606
10607 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
10608
10609         * XplatUIX11.cs: If client_window ends up being width or height zero
10610           due to border settings, move it off window inside whole_window (#78433)
10611
10612 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
10613
10614         * Mime.cs: Shrink the mime file cache correctly.
10615
10616 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
10617
10618         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
10619
10620 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10621
10622         * XplatUIX11.cs (AddExpose): More sanity checks
10623
10624 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10625
10626         * XplatUIX11.cs:
10627           - AddExpose: Don't add expose ranges outside the size of our
10628             window
10629           - Cast opacity values to Int32 to avoid crashes with certain
10630             values
10631           - Added disabled code paths that protect against illegal cross-
10632             thread painting (Developers.exe)
10633
10634 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10635
10636         * ProgressBar.cs: Invalidate the control when it's resized
10637           since block size is based on control size. (#78388)
10638
10639 2006-05-16  Miguel de Icaza  <miguel@novell.com>
10640
10641         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
10642         of setting the incoming argument to the "reset" value, we set the
10643         this.datamember to string.empty (before we were invalidating the
10644         incoming data).   
10645
10646         Fixes 78420
10647
10648 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10649
10650         * Form.cs: Only apply transparency settings after the form
10651           is created. (Fixes #77800)
10652
10653 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
10654
10655         * ApplicationContext.cs: Grab the HandleDestroyed event so
10656           we know when to fire OnMainFormClosed 
10657
10658 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10659
10660         * Application.cs: Introduced sub-class to allow tracking of
10661           threads and centralized triggering of the event mess for
10662           ThreadExit, AppExit, etc..  (#76156)
10663
10664 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
10665
10666         * MimeIcon.cs:
10667           - Do not return a null icon index value for a mime subclass.
10668             Instead try the main mime type class too.
10669           - Seems that some newer distributions don't have a link to some
10670             gnome default icons anymore. So check the default gnome dir too.
10671           
10672
10673 2006-05-16  Jackson Harper  <jackson@ximian.com>
10674
10675         * MdiClient.cs: Don't paint the parent background image if we have
10676         our own background image.
10677
10678 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
10679
10680         * Control.cs:
10681           - PerformLayout: Do not shrink space filled by DockStyle.Fill
10682             controls, all filled controls are supposed to overlap (#78080)
10683           - UpdateZOrder is supposed to update the control's z-order in the
10684             parent's z-order chain. Fixed to behave like that
10685           - BringToFront: Removed obsolete code
10686           - SendToBack: Simplyfied
10687           - SetChildIndex: Trigger layout calculations when Z-order changes
10688             since layout is done by z-order
10689
10690 2006-05-16  Chris Toshok  <toshok@ximian.com>
10691
10692         [ fixes bug #78410 ]
10693         * DataGrid.cs (set_AlternatingBackColor): use
10694         grid_drawing.InvalidateCells instead of Refresh().
10695         (set_BackColor): call grid_drawing.InvalidateCells.
10696         (set_BackgroundColor): use Invalidate instead of Refresh.
10697
10698         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
10699         invalidate the cell area.
10700
10701 2006-05-15  Chris Toshok  <toshok@ximian.com>
10702
10703         [ fixes bug #78011 ]
10704         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
10705         on to DataGridPaintRow.
10706         (DataGridPaintRow): take a clip argument, and only draw the cells
10707         which intersect it.  same with the not_usedarea.
10708
10709         * Theme.cs (DataGridPaintRow) add @clip parameter.
10710
10711         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
10712         XplatUI.ScrollWindow.
10713         (ScrollToRow): same.
10714
10715         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
10716         with last column which was causing a gray swath to appear with the
10717         XplatUI.ScrollWindow code.
10718
10719 2006-05-15  Chris Toshok  <toshok@ximian.com>
10720
10721         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
10722         use XplatUI.ScrollWindow.
10723         (VerticalScrollEvent): use XplatUI.ScrollWindow.
10724
10725 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
10726
10727         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
10728
10729 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10730
10731         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
10732           file since there are no equivalent X11 cursors
10733
10734 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10735
10736         * MonthCalendar.cs : DateTimePicker should reflect selected date
10737           on mouse*up*, not mouse*down*. Fixed originally reported part of
10738           bug #76474.
10739
10740 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
10741
10742         * TabControl.cs : When argument index is equal or more than tab
10743           count, just ignore. Fixed bug #78395.
10744
10745 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
10746
10747         * Control.cs: Dispose all child controls when control is diposed (#78394)
10748
10749 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10750
10751         * ColorDialog.cs: Finally it is possible to select the color with
10752           the text boxes
10753
10754 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10755
10756         * PrintDialog.cs: Fix typo
10757
10758 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
10759
10760         * PrintDialog.cs: PrintDialog is not resizable
10761         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
10762           color. Made some ToolBar drawing methods protected virtual.
10763
10764 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
10765
10766         * PrintDialog.cs: Implementation of the PrintDialog
10767
10768 2006-05-12  Chris Toshok  <toshok@ximian.com>
10769
10770         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
10771         thumb, instead use MoveThumb.  This has the side effect of making
10772         most of the other thumb moving machinery use MoveThumb as well.
10773         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
10774         need to actually invalidate the rectangle where the new thumb will
10775         go.
10776         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
10777         We force an Update() after, so it's not as fast as it could be,
10778         but at least there's zero flicker and no droppings.
10779         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
10780         (UpdateThumbPos): add another argument (dirty), which says whether
10781         or not to calculate/add dirty regions which we later invalidate.
10782         For cases where we know we're going to use MoveThumb, we pass
10783         false for this.  Otherwise, pass true.
10784
10785 2006-05-12  Jackson Harper  <jackson@ximian.com>
10786
10787         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
10788         the status bar.
10789         
10790 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
10791
10792         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
10793           and GetClipRegion methods and UserClipWontExposeParent property.
10794         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
10795           overriding UserClipWontExposeParent property, setting to false, since
10796           Win32 handles the required expose messages to draw our clipped parent
10797           areas internally
10798         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
10799           PaintEventStart to set the user clip region if set.
10800         * Control.cs: 
10801           - Now internally tracking the Region for the control since we need to
10802             store it if the handle is not yet created and only set it when it
10803             becomes created. Before setting the region forced handle creation
10804           - Added code to draw the parents underneath a user-clipped region
10805         * Hwnd.cs: Added UserClip property
10806
10807 2006-05-12  Chris Toshok  <toshok@ximian.com>
10808
10809         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
10810         (set_Maximum): same.
10811         (set_Minimum): same.
10812         (set_SmallChange): same.
10813         (OnMouseUpSB): remove the call to refresh when releasing the
10814         thumb.  We shouldn't need it.
10815         
10816 2006-05-12  Miguel de Icaza  <miguel@novell.com>
10817
10818         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
10819         AutoSize set to None, we do not need to relayout everything, we
10820         just need to invalidate the current region.
10821
10822         (Draw): Do not draw the entire ClientArea, just redraw the
10823         clip area being passed.
10824
10825         * MdiClient.cs: Make MdiClient constructor with the Form argument
10826         internal. 
10827
10828 2006-05-12  Jackson Harper  <jackson@ximian.com>
10829
10830         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
10831         parents background image,  but strangely not their own.
10832         - (DrawStatusBarPanel): Take into account horizontal alignment
10833         when drawing the strings and icons.
10834
10835 2006-05-12  Mike Kestner  <mkestner@novell.com>
10836
10837         * ListBox.cs: avoid invalidations for focus when the collection is
10838         empty. 
10839
10840 2006-05-12  Chris Toshok  <toshok@ximian.com>
10841
10842         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
10843         invalidate the entire thumb area.  Call InvalidateDirty which
10844         limits the redraw to the thumb itself and surrounding pixels.
10845
10846         * XplatUIX11.cs (ScrollWindow): optimize copying.
10847         
10848 2006-05-12  Chris Toshok  <toshok@ximian.com>
10849
10850         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
10851         Figure out the positioning/layout in a single pass instead of
10852         multiple recursive invocations.  Speeds up the initial display of
10853         the data grid.  Also, make many things private that were
10854         originally public but unused outside this class.
10855
10856 2006-05-11  Jackson Harper  <jackson@ximian.com>
10857
10858         * MdiClient.cs: Improved layout code.
10859
10860 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
10861
10862         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
10863           not SelectedObject.
10864
10865 2006-05-11  Chris Toshok  <toshok@ximian.com>
10866
10867         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
10868         union of that will always be {0,0,width,height}.
10869
10870 2006-05-11  Jackson Harper  <jackson@ximian.com>
10871
10872         * Form.cs: Match MS's DefaultSize for forms (they must have
10873         changed the size in sp2).
10874
10875 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
10876
10877         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
10878
10879 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
10880
10881         * TextControl.cs : Fixed bug #78109. This incorrect position
10882           comparison caused crash on automatic line split.
10883         * TextBoxBase.cs : reduce duplicate code.
10884
10885 2006-05-10  Jackson Harper  <jackson@ximian.com>
10886
10887         * MdiClient.cs: Active form is only sent to the back when using
10888         the Next form functionality, when a form is clicked the current
10889         active shouldn't be sent to the back.
10890         - Layout the mdi windows when the container is first made visible.
10891         * Form.cs: Give the MdiClient a ref to the containing form when we
10892         create it.
10893         
10894 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
10895
10896         * LinkLabel.cs : link_font could be uninitialized, so populate one
10897           before actual use. Fixed bug #78340.
10898
10899 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
10900
10901         * XplatUIX11.cs : clipboard format native value is IntPtr.
10902           Fixed bug #78283.
10903
10904 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10905
10906         * Control.cs: 
10907           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
10908             which is passed up the parent chain by DefWndProc
10909           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
10910             to DefWndProc (#77956)
10911         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
10912
10913 2006-05-10  Jackson Harper  <jackson@ximian.com>
10914
10915         * MdiClient.cs: We need to remove the controls from the mdi
10916         collection, when we close the window.
10917         * MdiWindowManager.cs: Special handling of closing mdi windows.
10918         * InternalWindowManager.cs: Make the close method virtual so the
10919         mdi window manager can handle it specially.
10920
10921 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
10922
10923         * DataGrid.cs:
10924           - Recalculate grid when the data source has changed
10925           - Matches styles provided by user from all data sources types
10926         * DataGridTableStyle.cs: For columns that provided by the user set the
10927         with the preferred value is there was unassigned.
10928         * CurrencyManager.cs: throw OnItemChanged event
10929
10930 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
10931
10932         * PictureBox.cs: Don't animate until handle is created. Start animation
10933           when handle is created.
10934
10935 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10936
10937         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
10938           current codebase.
10939         * XEventQueue.cs: We don't need to provide the extra info
10940
10941 2006-05-10  Jackson Harper  <jackson@ximian.com>
10942
10943         * MdiClient.cs: If the mdi clients parent form has a background
10944         image set, we draw that background image for the mdi area's
10945         background.
10946
10947 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
10948
10949         * TextBoxBase.cs: Set IBeam cursor (#78347)
10950
10951 2006-05-10  Mike Kestner  <mkestner@novell.com>
10952
10953         * ToolBar.cs: fix some text padding issues with ButtonSize
10954         calculation. Update the default size to match MS documentation.
10955         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
10956         button size. Fixes #78296.
10957
10958 2006-05-10  Mike Kestner  <mkestner@novell.com>
10959
10960         * ListBox.cs: use is_visible for scrollbar positioning in case the
10961         control isn't on screen yet.  Fix off by one with Right vs Width
10962         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
10963         
10964 2006-05-10  Jackson Harper  <jackson@ximian.com>
10965
10966         * X11Dnd.cs: Drop to a control with another control on top of it.
10967         * ToolBar.cs: Work on a copy of the buttons list, so that it can
10968         be modified in click handlers. TODO: Look for similar problems in
10969         other controls.
10970
10971 2006-05-09  Jackson Harper  <jackson@ximian.com>
10972
10973         * Form.cs: Window managers need the old window state when setting
10974         window state now.
10975         * InternalWindowManager.cs: Allow the base mdi window manager to
10976         handle more of the MDI only stuff (like maximize buttons).
10977         * MdiWindowManager.cs: Fix some snafus in changing the window
10978         state.  Add all the menu functionality, for both popup and
10979         maximized menus.
10980         * MdiClient.cs: When a new form is selected the currently
10981         activated form is sent to the back, this matches MS.
10982         - Implement a new method to activate the next mdi child window.
10983
10984 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
10985
10986         * Control.cs: 
10987           - Added new InternalCapture method to allow controls to prevent
10988             the capture behaviour on the click handlers
10989           - Switched to use InternalCapture
10990         * ComboBox.cs:
10991           - Using InternalCapture to prevent mouse captures from being released
10992             on mouse button release (Fixes #78100)
10993         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
10994           returns Form borders if a caption is present. (Fixes #78310)
10995
10996 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
10997
10998         * TreeNode.cs: Changed serialization .ctor to not require every field
10999           to be present. (#78265)
11000         * OwnerDrawPropertyBag.cs: Added serialization .ctor
11001
11002 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
11003
11004         * MimeIcon.cs: for is faster than foreach for strings.
11005
11006 2006-05-05  Mike Kestner  <mkestner@novell.com>
11007
11008         * CheckedListBox.cs: update check handling code to not use selected.
11009         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
11010         behavior for visual feedback, motion response, shift/ctrl handling,
11011         and properly deal with all 4 selection modes. Updates to bounds
11012         handling logic.  Add scroll wheel support. [Fixes #77842]
11013
11014 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11015
11016         * ListView.cs:
11017           - Moved adding of Implicit controls into .ctor. That way, subsequent
11018             creation of the controls will not cause them to think they are 
11019             toplevel windows (fixes #78200 header problem)
11020           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
11021           - Switched visibility setting of header control to use internal field
11022             to avoid triggering handle creation
11023           - Now checking if handle is created before causing a refresh when items
11024             are added (This makes us now match handle creation time with MS)
11025         * Splitter.cs: Removed loading of private splitter cursor, switched to
11026           Cursors version now that that is loading the right ones
11027         * Cursors.cs: Load proper splitter cursors from resources
11028         * Cursor.cs: Added second method of loading resource cursors for the 
11029           VS.Net users amongst us
11030
11031 2006-05-05  Mike Kestner  <mkestner@novell.com>
11032
11033         * ListView.cs: give header_control a minimum size based on the
11034         ListView size.
11035
11036 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
11037
11038         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
11039           window seems to do that with metacity, so set that type. (#78120)
11040
11041 2006-05-05  Mike Kestner  <mkestner@novell.com>
11042
11043         * ListViewItem.cs: fix Details mode checkbox layout bug.
11044         * ThemeWin32Classic.cs: draw a ListView column header for unused space
11045         at the end of the header, if it exists. [Fixes for #78200]
11046
11047 2006-05-04  Jackson Harper  <jackson@ximian.com>
11048
11049         * MdiClient.cs: Add a helper property to get the container form.
11050         * MdiWindowManager.cs: We have to make sure to use the menu origin
11051         when drawing the icons and buttons, this fixes maximized window
11052         icons/buttons on win32.
11053         * InternalWindowManager.cs: Reset the restore captions when a
11054         window goes from Maximized to Minimized and vice versa. Move the
11055         DrawMaximizedButtons into the MdiWindowManager source, tool
11056         windows can't be maximized. NOTE: This could use a little
11057         refactoring if time ever permits.
11058         
11059 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11060
11061         * TextBox.cs: Add MWFCategoryAttributes
11062         * TextBoxBase.cs: Add MWFCategoryAttributes
11063         * Form.cs: Add MWFCategoryAttributes
11064
11065 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
11066
11067         * Control.cs: Add MWFCategoryAttributes
11068         * ScrollableControl.cs: Add MWFCategoryAttributes
11069
11070 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
11071
11072         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
11073           Divider is true. Fix a little glitch in PropertyToolBar
11074           drawing code
11075
11076 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
11077
11078         * Control.cs:
11079           - Dispose: Call base.Dispose, this causes the disposed event
11080             to be fired (and probably other, more important stuff)
11081           - SetVisibleCore: Set is_visible to true after creating the
11082             window so that the window still gets created invisible (if
11083             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
11084             to generate a WM_ACTIVE message
11085         * Form.cs: Call Dispose when we want to destroy the window, instead of
11086           just destroying the handle (Dispose will do that for us)
11087         * XplatUIX11.cs:
11088           - RootWindow also needs a queue, so we can properly process the
11089             property change events from RootWindow (like Activate)
11090           - Generatic synthetic WM_ACTIVE message when the active window is
11091             being destroyed
11092
11093 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11094
11095         * LinkLabel.cs: Trigger a recalc of our label dimensions when
11096           bounds are changed
11097
11098 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
11099
11100         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
11101           for determining width and height (image might not be assigned if
11102           we're drawing an imagelist)
11103
11104 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
11105
11106         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
11107         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
11108           height from system
11109         * Theme.cs: No longer returns hardcoded menu height, instead calls
11110           new driver method
11111         * Form.cs (OnLoad): Scaling happens before triggering Load events 
11112           on MS (# 78257)
11113
11114 2006-05-01  Mike Kestner  <mkestner@novell.com>
11115
11116         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
11117
11118 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
11119
11120         * TextBoxBase.cs: Removed Fixme
11121         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
11122
11123 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
11124
11125         * XplatUIX11.cs:
11126           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
11127             the rectangle relative to the parent, considering borders. We
11128             don't really want that.
11129           - ScrollWindow: Fixed warning to be more understandable
11130         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
11131           scrollbars and scroll only the visible area
11132         * RichTextBox.cs: Removed debug output
11133
11134 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11135
11136         * NumericUpDown.cs (Text): Just use base
11137         * UpDownBase.cs: Ensure txtView is created before using it
11138
11139 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11140
11141         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
11142           casting to IntPtr to avoid 64bit overflow errors
11143
11144 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11145
11146         * Control.cs:
11147           - AllowDrop: Don't force handle creation.
11148           - CreateHandle: Added call to tell driver if we're allowed to drop
11149
11150 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11151
11152         * FileDialog.cs: Remember the last directory not only for the
11153           current instance but also for new FileDialog instances.
11154
11155 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
11156         
11157         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
11158           broke sending async messages
11159
11160 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
11161
11162         * XplatUIX11.cs:
11163           - ScrollWindow: Fixed method. We finally generate expose events again
11164             for scrolled areas. This was causing 'garbage' when scrolling
11165             textbox and other controls that used ScrollWindow
11166           - Switched from using the regular queue for paint events to the MS 
11167             model of 'generating' paint events when the queue is empty.
11168             We use the new XQueueEvent.Paint subclass to store which windows
11169             need painting.
11170           - AddExpose now takes the x/y/width/height of the exposed area
11171             and inserts the window into the paint queue if not already there
11172           - InvalidateWholeWindow: Switched to use new AddExpose method
11173           - UpdateMessageQueue: Added which queue to monitor for paint events
11174           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
11175             the unlikely case nothing above handles it. We reset the expose
11176             pending states to get them off the queue.
11177           - GetMessage: Now pulls a paint event if no other events are in the
11178             queue
11179           - Invalidate: Switched to new AddExpose method
11180           - PeekMessage: Updated to understand pending paint events
11181           - UpdateWindow: Fixed logic bug. We were only updating if the window
11182             didn't need updating. Also switched to sending WM_PAINT directly,
11183             like MS does.
11184         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
11185           and random access Remove(). The random access is needed to handle
11186           UpdateWindow() where a WM_PAINT is sent directly without accessing
11187           the queue.
11188         * ScrollBar.cs: Added Update() calls to cause immediate updates to
11189           allow for better feedback when scrolling. Scrollbars are small and
11190           the immediate update should make it 'feel' more responsive without
11191           slowing things down. ScrollBar still needs it's invaliate logic
11192           updated to not always invalidate the whole bar on certain changes.
11193
11194 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11195
11196         * Control.cs:
11197         (BackColor): if the control does not support a transparent background,
11198         return the default backcolor when the parent backcolor is transparent.
11199
11200 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
11201
11202         * Application.cs: Updated to new StartLoop/GetMessage API
11203         * RichTextBox.cs: Provide some output on RTF parsing errors
11204         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
11205           new queue_id argument to GetMessage and PeekMessage to allow faster
11206           handling of per-thread queues in drivers.
11207         * Hwnd.cs: Added Queue tracking and property
11208         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
11209         * XEventQueue.cs: Added thread trackingA
11210         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
11211         * XplatUIX11.cs:
11212           - Implemented new per-thread queue
11213           - GetMessage: Fixed return/break behaviour on several cases. We were
11214             returning stale messages in some cases, instead of just processing
11215             the next message
11216
11217 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
11218
11219         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
11220
11221 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
11222
11223         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
11224           fixed off-by-one comparisons between Width/Height and Right/Bottom.
11225
11226 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
11227
11228         * PropertyGridView.cs: Fix drop down width.
11229
11230 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11231
11232         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
11233           a mess in DrawToolBar, so I removed one of them.
11234
11235 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
11236
11237         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
11238           needed (clip). Otherwise we get artifacts.
11239
11240 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
11241
11242         * FixedSizeTextBox.cs: Added constructor to allow specifying which
11243           dimension is fixed
11244         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
11245           and switched FixedSizeTextBox to only be fixed vertical (#78116)
11246         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
11247           if it matches the scale base font (avoids unneeded scaling)
11248
11249 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
11250
11251         * X11DesktopColors.cs: One gtk_init_check should be enough
11252
11253 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
11254
11255         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
11256           match MS behaviour
11257
11258 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
11259
11260         * TextBoxBase.cs: 
11261           - Generate OnTextChanged for Backspace even if we're only deleting
11262             the current selection
11263           - When setting the Text property, only select all text if the
11264             control does not have focus when it is being set. Otherwise
11265             just place the cursor at the beginning of the control
11266
11267 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
11268
11269         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
11270           Added a little helper to draw PropertyGrid ToolBar with a different
11271           border and a different BackColor.
11272         * PropertyGrid.cs: Some background parts didn't get painted with the
11273           correct background color. Added a class that helps us to draw the
11274           correct border for PropertyGridView and a class that helps us to
11275           draw ToolBars with a different backcolor
11276         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
11277
11278 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
11279
11280         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
11281         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
11282
11283 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
11284
11285         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
11286           into the palette entries. Also, since we're working on a copy
11287           we needed to copy the palette back onto the bitmap.
11288         * Cursor.cs: Same fix as XplatUIWin32.cs.
11289
11290 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
11291
11292         * ImageListStreamer.cs: Need to read the var (or we're off)
11293
11294 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
11295
11296         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
11297           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
11298           TextBoxBase.cs: Unused var fixes
11299         * AxHost.cs: Small 2.0 fix
11300         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
11301           as it seems that is what at least Metacity expects. This will make
11302           icons show up on 64bit platforms. We still have some 64bit size
11303           issues, though, since the startup app window size still won't match.
11304
11305 2006-04-25  Mike Kestner  <mkestner@novell.com>
11306
11307         * *.cs: cleanup newly reported exception var unused warnings.
11308
11309 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11310
11311         * ThemeWin32Classic.cs: Button image alignment now matches exactly
11312           ms
11313
11314 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11315
11316         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
11317           image. The image position is always the same, no matter if the
11318           button is pressed or not.
11319
11320 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
11321
11322         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
11323           selection and set the correct filename for SaveFileDialog.
11324           Patch by Emery Conrad.
11325
11326 2006-04-24  Mike Kestner  <mkestner@novell.com>
11327
11328         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
11329         check for item.X outside the ClientRect instead of item.Y. Fixes
11330         #78151.
11331
11332 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11333
11334         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
11335         trust that value blindly and do some sanity check. Fixes bug #77814.
11336
11337 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11338
11339         * ImageListStreamer.cs: save the mask as a 1bpp image.
11340
11341 2006-04-21  Mike Kestner  <mkestner@novell.com>
11342
11343         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
11344         pass Checked and Indeterminate to the Theme Engine. Improve
11345         encapsulation with ListBox.
11346         * ListBox.cs: Keep a StringFormat instead of calculating it every item
11347         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
11348         nested types.  Move all CheckState functionality to CheckedListBox.
11349         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
11350         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
11351         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
11352         single base list. Fix scrollbar sizing and placement to mirror MS.
11353         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
11354         used.
11355         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
11356         for CheckedListBox by using new DrawItemState info.  Center the
11357         checkboxes on the items. Use new StringFormat property.
11358
11359 2006-04-18  Jackson Harper  <jackson@ximian.com>
11360
11361         * Form.cs: MdiChildren don't do default locations the same way as
11362         regular forms.  This prevents a crash when trying to position the
11363         mdi windows.
11364
11365 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
11366
11367         * PropertyGridTextBox.cs: Formatting, copyright
11368         * PropertiesTab.cs: Formatting
11369         * PropertyGrid.cs: Formatting
11370         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
11371           click toggling of values
11372           
11373 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
11374
11375         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
11376         * Control.cs (.ctor): verify_thread_handle is static, don't reset
11377           every time a control is created
11378         * Application.cs: Removed obsolete EnableRTLMirroring method
11379
11380 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
11381
11382         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
11383         SelectedIndex to -1. Fixes bug #78121.
11384
11385 2006-04-17  Jackson Harper  <jackson@ximian.com>
11386
11387         * Binding.cs: Handle null values for Current and BindingContext.
11388         This occurs when binding is a little delayed.
11389         * CurrencyManager.cs: return null for Current when there are no
11390         items in the list.
11391         - Hookup to the listchanged event on the DataView and update
11392         bindings when the list is changed.  This fixes late binding of
11393         controls.
11394
11395 2006-04-17  Jackson Harper  <jackson@ximian.com>
11396
11397         * X11Dnd.cs:
11398         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
11399         Ringenbach.
11400
11401 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
11402
11403         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
11404           place
11405         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
11406           with the correct ButtonState
11407
11408 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
11409
11410         * XplatUIX11.cs: Improved distinguishing between window types to
11411           tell the WM a type closer to what the app wants (Fixes #78107)
11412
11413 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
11414
11415         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
11416           GrabHandle
11417
11418 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
11419
11420         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
11421           drawing code to reflect the size grip changes
11422
11423 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11424
11425         * ImageListStreamer.cs: fix handling of the mask that follows the main
11426         bitmap when deserializing and serialize it properly. The generated mask
11427         should better be a 1bpp image, but I'll do that later.
11428
11429 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
11430
11431         * FileDialog.cs: Show something in the DirComboBox on *nix if the
11432           path doesn't fit into some of our Current.Places
11433
11434 2006-04-13  Jackson Harper  <jackson@ximian.com>
11435
11436         * ComboBox.cs: Use borders instead of drawing our own decorations,
11437         try to obey correct rules for heights.
11438         * Theme.cs:
11439         * ThemeNice.cs:
11440         * ThemeClearLooks.cs:
11441         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
11442         this is now handled by borders.
11443         - Remove unused DrawListBoxDecorationSize method.
11444         
11445 2006-04-13  Mike Kestner  <mkestner@novell.com>
11446
11447         * MenuAPI.cs: null guarding for the disbled click check fixes crash
11448         reported by Alex.
11449
11450 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
11451
11452         * ThemeWin32Classic.cs: 
11453           - Fixed CPDrawStringDisabled
11454           - Corrected drawing of disabled menu items
11455           - Fixed drawing of disabled radio buttons (bug #78095)
11456           - Draw check in a disabled CheckBox with color ControlDark 
11457
11458 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11459
11460         * Form.cs: Use the provided width when calculating the menu size;
11461           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
11462           and ClientSize.Width won't be updated yet
11463         * Application.cs: Use Visible instead of Show() to make form visible,
11464           this way we create the handle later and menusize is considered
11465
11466 2006-04-12  Mike Kestner  <mkestner@novell.com>
11467
11468         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
11469         reporting.
11470
11471 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11472
11473         * TextBox.cs: Implemented context menu
11474
11475 2006-04-12  Mike Kestner  <mkestner@novell.com>
11476
11477         * ListView.cs: implement box selection. fixes #77838.
11478         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
11479
11480 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
11481
11482         * XplatUIX11.cs: Added setting of window type when transient window
11483           is created (metacity would move it otherwise)
11484         * X11Structs.cs: Added WINDOW_TYPE atoms
11485         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
11486           background (the control is Opaque but still wants transparent
11487           backgrounds)
11488
11489 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11490
11491         * Control.cs: Added OnPaintBackgroundInternal to allow controls
11492           that set Opaque but don't mean it (like all ButtonBase-derived
11493           controls) to still draw their background
11494         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
11495           the background
11496
11497 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
11498
11499         * Control.cs (PaintControlBackground): Set the graphics object
11500           on our PaintEvent to null to prevent it from being disposed
11501           when the PaintEvent gets disposed
11502
11503 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
11504
11505         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
11506         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
11507
11508 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
11509
11510         * Control.cs: 
11511           - Added transparency check to BackColor property. Transparent
11512             backgrounds are only allowed if the control styles permit it
11513           - Added recursive painting of parent control background and
11514             foreground if a control with a transparent backcolor is drawn
11515             (Thanks to Tim Ringenback for providing his 'hack' as a base
11516              for this patch) Fixes #77985 and #78026.
11517           - Added Opaque style check before calling OnPaintBackground, no
11518             need to draw the background if the control is opaque
11519           - Removed ControlAccessibleObject owner variable (inherited from
11520             base, no need to define again)
11521           - Added some documentation links explaining the drawing events
11522             and styles
11523
11524 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
11525
11526         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
11527           that the affected control is the located at the left border of our
11528           parent (Fixes #77936)
11529
11530 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11531
11532         * TextBoxBase.cs: When rendering disabled or readonly controls,
11533           draw the background with 'Control' instead of 'Window' color as
11534           long as the user hasn't specifically set a color
11535
11536 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
11537
11538         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
11539           since that won't be updated if the user types text (only if it's
11540           programatically set)
11541
11542 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11543
11544         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
11545           layout changes do to app-triggered resizes will have the proper
11546           display rectangle for layout
11547
11548 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
11549
11550         * ThemeWin32Classic.cs:
11551           - Make use of the SystemBrushes and SystemPens wherever possible
11552           - Corrected some highlight colors
11553           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
11554             drawing
11555         * Theme.cs: Added Empty field to CPColor struct
11556
11557 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
11558
11559         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
11560           is displayed when calculating the display rectangle. Thanks to Mike
11561           for teaching me the err of my ways.
11562
11563 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
11564
11565         * ScrollableControl.cs:
11566           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
11567             (instead of 0,0) and we now return the real width/height instead of
11568             just the clientrectangle, adjusted for padding. The rectangle is
11569             now cached and created by the new CalculateDisplayRectangle method.
11570           - Created new CalculateDisplayRectange method, which basically does
11571             what get_DisplayRectangle() did originally, but now using the 
11572             right edge instead of DisplayRectangle to determine the size of
11573             our scrollbars
11574           - get_Canvas(): Fixed it to properly calculate canvas for 
11575             right/bottom controls which seem to be placed to the right/bottom
11576             of any controls that have a fixed location
11577           - Removed TODO that's taken care of
11578           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
11579             and SetDisplayRectLocation according to new MSDN2 docs
11580           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
11581             event when that is called, this is added for compatibility
11582           - ScrollControlIntoView(): Implemented.
11583           - Switched scrollbars to be implicit, they shouldn't be selectable
11584         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
11585           call it when the active control is set/changed
11586         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
11587         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
11588           implicit_control variable (used for native Win32 message generation)
11589         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
11590           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
11591         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
11592         * XplatUIStructs.cs: Added ScrollBarCommands enum
11593
11594 2006-04-10  Jackson Harper  <jackson@ximian.com>
11595
11596         * ButtonBase.cs:
11597         * CheckedListBox.cs:
11598         * ComboBox.cs:
11599         * DataGrid.cs:
11600         * DataGridView.cs:
11601         * Form.cs:
11602         * GroupBox.cs:
11603         * ListBox.cs:
11604         * PrintPreviewControl.cs:
11605         * ProgressBar.cs:
11606         * PropertyGrid.cs:
11607         * Splitter.cs:
11608         * StatusBar.cs:
11609         * TrackBar.cs:
11610         * UpDownBase.cs: Fixup base event overrides.
11611         
11612 2006-04-06  Mike Kestner  <mkestner@novell.com>
11613
11614         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
11615         all user-initiated value changes to min <= value <= max-thumbsz+1.
11616         (set_Value): check for vert/horiz when calculating new thumb position.
11617         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
11618         like MS does.
11619         (OnMouseMoveSB): refactor the thumb dragging code and refine
11620         invalidation logic to reduce flicker.
11621         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
11622         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
11623         (UpdateThumbPosition): small code readability cleanup
11624
11625 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
11626
11627         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
11628           different
11629
11630 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
11631
11632         * ThemeNice.cs: Use a better graphics effect when a button is pressed
11633
11634 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
11635
11636         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
11637         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
11638           This dramatically reduces the number of Pen.Dispose calls. 
11639           Where possible call ResPool methods only once instead of calling it
11640           over and over again (for example for the same color).
11641
11642 2006-04-06  Mike Kestner  <mkestner@novell.com>
11643
11644         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
11645         Also remove an unused private field on the collection. Fixes #77972.
11646
11647 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
11648
11649         * ThemeNice.cs: Added ToolBar drawing code
11650
11651 2006-04-06  Mike Kestner  <mkestner@novell.com>
11652
11653         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
11654         I'm assuming that means we need to look up the toplevel for the
11655         provided control. Fixes the crash trace in #77911 but exposes another
11656         crash in some strange reflection usage in NDocGui.
11657
11658 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
11659
11660         * ThemeNice.cs: Gave it a little silver touch and added Images
11661           method
11662         * FontDialog.cs: FontDialog is not resizable
11663         * FileDialg.cs: Added SizeGripStyle.Show
11664
11665 2006-04-05  Jackson Harper  <jackson@ximian.com>
11666
11667         * KeyboardLayouts.cs: Remove warning.
11668
11669 2006-04-05  Jackson Harper  <jackson@ximian.com>
11670
11671         * Control.cs: Enable OnPaintInternal so we can use it for drawing
11672         all of our controls instead of Paint +=.
11673         * ListBox.cs:
11674         * ListView.cs:
11675         * MenuAPI.cs:
11676         * MessageBox.cs:
11677         * NotifyIcon.cs:
11678         * ProgressBar.cs:
11679         * ScrollBar.cs:
11680         * Splitter.cs:
11681         * StatusBar.cs:
11682         * TabControl.cs:
11683         * TextBoxBase.cs:
11684         * ToolBar.cs:
11685         * TrackBar.cs:
11686         * UpDownBase.cs:
11687         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
11688         use OnPaintInternal. Remove Width/Height and Visible checks in
11689         paint handler, this is done at a higher level now.
11690         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
11691         * PaintEventArgs.cs: Add a handled flag so controls that don't
11692         want anymore painting after OnPaintInternal can make sure OnPaint
11693         isn't called.
11694
11695 2006-04-05  Mike Kestner  <mkestner@novell.com>
11696
11697         * Form.cs: fix the menu WndProc hacks to respect the native enabled
11698         state of the form, so that we don't process events when Modal dialogs
11699         are up. Fixes #77922.
11700
11701 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
11702
11703         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
11704           checking is done.
11705
11706 2006-04-05  Mike Kestner  <mkestner@novell.com>
11707
11708         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
11709
11710 2006-04-05  Mike Kestner  <mkestner@novell.com>
11711
11712         * ListView.cs (HeaderMouseMove): null guarding for the over column
11713         when setting up the drag_to_index.  Fixes #78015.
11714
11715 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
11716
11717         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
11718           in the taskbar. Transient windows seem to accomplish that.
11719
11720 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
11721
11722         * Form.cs:
11723           - Re-enabled CreateParams.X/Y code for FormStartPosition
11724           - Added code for manual placement when creating the Control
11725           - Incomplete patch to treat MDI forms differently when
11726             setting the ClientSizeCore. (Still need to figure out handling
11727             x/y coords there)
11728         * XplatUIX11.cs:
11729           - When we're explicitly setting the X/Y position of a non-Child
11730             window, let the WM know. Metacity really wants this.
11731
11732 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11733
11734         * ThemeNice.cs: Added CPDrawButton
11735
11736 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11737
11738         * ThemeNice.cs: Changed the color for focused buttons and activated
11739           the arrows for small scroll buttons.
11740
11741 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
11742
11743         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
11744           anymore. Changed some method modifiers to protected (virtual)
11745         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
11746           changes
11747         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
11748           Updated drawing of menus, buttons and progressbars; added
11749           CPDrawBorder3D 
11750
11751 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11752
11753         * ImageListStreamer.cs: implemented serialization/deserialization
11754         of the images.
11755
11756 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
11757
11758         * ThemeWin32Classic.cs:
11759           - Removed all the DrawFrameControl stuff; CPDrawButton,
11760             CPDrawCheckBox and CPDrawRadioButton are now handled directly
11761             inside the methods
11762           - Updated and corrected the drawing code of CPDrawButton,
11763             CPDrawCheckBox and CPDrawRadioButton to better match ms
11764           - Updated theme checkbox and radiobutton code to use the CP*
11765             methods
11766
11767 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11768
11769         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
11770           bug is fixed
11771
11772 2006-03-31  Jackson Harper  <jackson@ximian.com>
11773
11774         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
11775         sometimes.
11776         * UpDownBase.cs: Don't CreateGraphics manually, use a
11777         Refresh. Ideally we would invalidate the correct areas here.
11778
11779 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
11780
11781         * XplatUIX11.cs: 
11782           - We now track the mapping state of windows. If a window (or 
11783             one of it's parents) is not mapped we no longer permit
11784             WM_PAINT messages to be generated since we'd otherwise get 
11785             lots of BadMatch X errors. Jackson did all the work figuring
11786             out the problem.
11787           - Destroying the caret if the window it's contained in is 
11788             destroyed. Can't use regular DestroyCaret method since it
11789             might fall into a drawing function (trying to remove the
11790             caret) and with that generate new BadMatch errors. Again,
11791             Jackson tracked this down.
11792           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
11793             make sure we send the messages to all windows. (The old code
11794             would send the WM_DESTROY to the window, and then all child
11795             windows would be 'gone' because the WM_DESTROY handle lookup
11796             would no longer find the destroyed window)
11797         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
11798         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
11799
11800 2006-03-31  Jackson Harper  <jackson@ximian.com>
11801
11802         * ScrollableControl.cs: Dont recalc if we are not visible.
11803
11804 2006-03-31  Mike Kestner  <mkestner@novell.com>
11805
11806         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
11807         the visibility branch.
11808
11809 2006-03-31  Jackson Harper  <jackson@ximian.com>
11810
11811         * ScrollBar.cs: Cap values when incrementing/decrementing.
11812
11813 2006-03-31  Mike Kestner  <mkestner@novell.com>
11814
11815         * MenuAPI.cs: setup menu.tracker for popup/context menus.
11816         * ToolTip.cs: guard against timer expirations with no active control.
11817         Not sure why it happened.
11818
11819 2006-03-31  Mike Kestner  <mkestner@novell.com>
11820
11821         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
11822         text.
11823         * ToolTip.cs: Position the tooltip based on where the cursor is at
11824         popup time, not at MouseEnter time.  Add a Down state so that we don't
11825         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
11826         positioning offset. Lookup DisplaySize at positioning time, since it
11827         can theoretically change during invocation.
11828         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
11829         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
11830
11831 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11832
11833         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
11834           Fixes behaviour when the Text property of the box is String.Empty
11835
11836 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
11837
11838         * XplatUIX11.cs: Only send mouseleave for our client windows, not
11839           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
11840           a window)
11841
11842 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11843
11844         * FileDialog.cs: Visual enhancement for the popup buttons in 
11845           PopupButtonPanel
11846
11847 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
11848
11849         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
11850           code
11851
11852 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
11853
11854         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
11855           highlighted menu items to match ms
11856
11857 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
11858
11859         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
11860
11861 2006-03-30  Mike Kestner  <mkestner@novell.com>
11862
11863         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
11864         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
11865         go active to account for HotLight to Selected transition.
11866         * MenuItem.cs: add internal Selected prop. Fill out the Status
11867         property by calculating it from item info. Add HotLight,
11868         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
11869
11870 2006-03-30  Mike Kestner  <mkestner@novell.com>
11871
11872         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
11873
11874 2006-03-29  Jackson Harper  <jackson@ximian.com>
11875
11876         * Form.cs: Implement TODO.
11877
11878 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
11879
11880         * PrintPreviewDialog.cs: Implemented missing methods and events; still
11881           missing proper dialog setup in the constructor
11882
11883 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
11884
11885         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
11886         * Control.cs:
11887           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
11888           - Fixed ResetBindings and removed TODO
11889           - Added check for cross-thread calls to get_Handle()
11890           - Added Marshaller attribute for set_Font to satisfy class status
11891         * FontDialog.cs: Removed TODOs that seemed implemented
11892         * UpDownBase.cs: Removed unneeded TODO and Fixme
11893         * MessageBox.cs: Implemented support for Default button and removed TODO
11894         * FileDialog.cs: Removed obsolete TODO
11895         * DomainUpDown.cs: Removed obsolete TODO
11896         * ButtonBase.cs: Removed obsolete TODO
11897         * XplatUIWin32.cs: Removed obsolete TODO
11898         * Form.cs:
11899           - Removed obsolete TODO
11900           - Calling CheckAcceptButton when the acceptbutton is changed to allow
11901             internal status updates
11902           - Making sure the active control is selected when the control is created
11903         * CurrencyManager.cs: Removed obsolete TODO
11904
11905 2006-03-29  Mike Kestner  <mkestner@novell.com>
11906
11907         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
11908         of PrintPreviewDialog and RichTextBox.
11909
11910 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
11911
11912         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
11913           DarkDark, Light and LightLight colors for a specific color
11914         * ThemeWin32Classic.cs:
11915           - Use Button drawing code to draw RadioButtons and CheckBoxes with
11916             Appearance = Button 
11917           - Make use of the new ResPool helper CPColor
11918           - Draw ProgressBar and StatusBar with correct 3D borders
11919
11920 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
11921
11922         * ColorDialog.cs: Return selected color. Fixes bug #77940.
11923
11924 2006-03-28  Mike Kestner  <mkestner@novell.com>
11925
11926         * ListView.cs: fix Icon layout to plan for scrollbar widths when
11927         calculating col/row counts.
11928
11929 2006-03-28  Mike Kestner  <mkestner@novell.com>
11930
11931         * ColumnHeader.cs:
11932         * ListView.cs:
11933         * ListViewItem.cs:
11934         * Menu.cs: 
11935         switch to explicit interface method implementation for some methods
11936         corcompare identifies as inconsistent with MS.
11937
11938 2006-03-28  Mike Kestner  <mkestner@novell.com>
11939
11940         * MainMenu.cs: 
11941         * Menu.cs:
11942         add a few missing methods from the class status output.
11943
11944 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
11945
11946         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
11947           correct.
11948
11949 2006-03-28  Mike Kestner  <mkestner@novell.com>
11950
11951         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
11952
11953 2006-03-27  Mike Kestner  <mkestner@novell.com>
11954
11955         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
11956         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
11957
11958 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
11959
11960         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
11961
11962 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11963
11964         * ThemeWin32Classic.cs:
11965           - GroupBox: Inserted a little gap between the text and the lines
11966             on the right side
11967           - Made the code in CPDrawBorder3D more readable
11968           - Corrected the drawing location of the up and down arrows in 
11969             CPDrawScrollButton
11970
11971 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11972
11973         * ControlPaint.cs: Corrected line widths in DrawBorder for
11974           ButtonBorderStyle Inset and Outset
11975
11976 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11977
11978         * ThemeWin32Classic.cs:
11979           - Rewrote the totally broken CPDrawBorder3D method. That was
11980             one of the main problems for the terrific ThemeWin32Classic
11981             look
11982           - Updated and corrected Button drawing
11983           - Correct the dimensions of the SizeGrip to match ms ones
11984           - Removed a small drawing glitch in DrawComboBoxEditDecorations
11985         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
11986           Border3DStyle.Sunken to match ms.
11987
11988 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
11989
11990         * ThemeWin32Classic.cs: First small part of the "de-uglify
11991           ThemeWin32Classic" effort, SizeGrip
11992
11993 2006-03-24  Jackson Harper  <jackson@ximian.com>
11994
11995         * XplatUIX11.cs: Give a max idle time of one second, this matches
11996         MS and forces an Idle event every second when there are no other
11997         events in the queue.
11998
11999 2006-03-24  Mike Kestner  <mkestner@novell.com>
12000
12001         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
12002         * ListView.Item.cs: fix layout issues with null image lists and images
12003         smaller than checkbox size.
12004         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
12005         mode like MS does.  It's weird, but consistent.  ;-)
12006         Fixes #77890.
12007
12008 2006-03-24  Mike Kestner  <mkestner@novell.com>
12009
12010         * ListView.cs: Scroll wheel support for the item control.  Fixes
12011         #77839.
12012
12013 2006-03-23  Jackson Harper  <jackson@ximian.com>
12014
12015         * ScrollableControl.cs: Special case negative sized areas, not
12016         zero.
12017         * MonthCalendar.cs: Save the rect of the clicked date so we can
12018         use it for invalidation.
12019         - Try to cut down on the number of invalidates
12020         - Invalidate the rect the mouse is over and was over when moving
12021         the mouse, so we get the focus box following the cursor.
12022
12023 2006-03-23  Mike Kestner  <mkestner@novell.com>
12024
12025         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
12026         focus rectangle drawing. Fixes #77835.
12027
12028 2006-03-23  Mike Kestner  <mkestner@novell.com>
12029
12030         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
12031         the if and else if and reverting back to the original == check on the
12032         None conditional.
12033
12034 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12035
12036         * FontDialog.cs: Update the example panel if the selected index of
12037           the fontListBox changes.
12038
12039 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
12040
12041         * FileDialog.cs: Make FileDialog remember which directory it was in
12042           last in the same execution.
12043
12044 2006-03-22  Mike Kestner  <mkestner@novell.com>
12045
12046         * FileDialog.cs: make the DropDownMenu on the toolbar display
12047         RadioChecks since they are mutually exclusive and that's what MS does.
12048
12049 2006-03-22  Mike Kestner  <mkestner@novell.com>
12050
12051         * Theme.cs: add Color param to CPDrawMenuGlyph.
12052         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
12053         checks and radio marks and arrows are visible on highlighted items.
12054         * ControlPaint.cs: update to use new Theme signature.
12055
12056 2006-03-22  Mike Kestner  <mkestner@novell.com>
12057
12058         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
12059         is active. Fixes #77870.
12060
12061 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12062
12063         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
12064           to be focused/selected after startup
12065
12066 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
12067
12068         * ColorDialog.cs: 
12069           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
12070             CustomColors and ShowHelp properties
12071           - Some internal rewrites to get better results when using the
12072             ColorMatrix
12073
12074 2006-03-22  Mike Kestner  <mkestner@novell.com>
12075
12076         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
12077         HoverSelection.  Fixes #77836.
12078
12079 2006-03-22  Mike Kestner  <mkestner@novell.com>
12080
12081         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
12082         ToggleButtons.  (De)Sensitize the Back button around a stack count of
12083         1, not 0.  Update ButtonSize based on a pixel count of the win32
12084         control.  Adjust the toolbar size/location for new button size.
12085
12086 2006-03-22  Jackson Harper  <jackson@ximian.com>
12087
12088         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
12089         true.
12090         * ScrollBar.cs: When doing increments and decrements we need to
12091         set the Value property so that ValueChanged gets raised. A
12092         possible optimization here would be to make an internal SetValue
12093         that doesn't invalidate immediately.
12094         * ToolTip.cs: Tooltips get added to their container (when
12095         supplied) so they get disposed when the container is disposed.
12096         - Don't create tooltips for String.Empty. This prevents all these
12097         little 2-3 pixel windows from showing up when running nunit-gui
12098         and driving me mad.
12099         * Form.cs: Don't set topmost when setting the owner if the handles
12100         haven't been created yet.  The topmost set will happen when the
12101         handles are created.
12102
12103 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
12104
12105         * XplatUIX11.cs:
12106           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
12107           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
12108             visible (to allow them to recalculate their sizes)
12109
12110 2006-03-21  Mike Kestner  <mkestner@novell.com>
12111
12112         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
12113         methods. Removed a ton of redundant code.  Still not really happy with
12114         the border rendering, but I think that's mainly because of the
12115         ControlDarkDark being black instead of a dark grey. Depending on how 
12116         close we want to be, we might want to revisit those color choices.
12117         Among the new features added during the refactor were DropDownArrow
12118         pressed rendering, Disabled image rendering.  Proper flat appearance
12119         boundary rendering.  Removed the Divider and Wrapping dividers since I
12120         can't figure out any combination of themes and conditions to make the
12121         MS control draw a horizontal line on a toolbar despite what the
12122         Divider property docs indicate.
12123         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
12124         conditions and incorrect layout.  Updated to coding standard.
12125         * ToolBarButton.cs: refactored layout and positioning code from
12126         ToolBar to here.  Invalidate wherever possible instead of forcing
12127         redraws of the whole toolbar. 
12128         (Known remaining issues: explicit ButtonSize smaller than provided
12129         images.)
12130
12131 2006-03-21  Mike Kestner  <mkestner@novell.com>
12132
12133         * ContextMenu.cs (Show): use the position parameter instead of just
12134         showing at the MousePosition.
12135
12136 2006-03-21  Jackson Harper  <jackson@ximian.com>
12137
12138         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
12139         control handle this.
12140         * TreeNodeCollection.cs: If we are clearing the root node we need
12141         to reset top_node so calcs can still happen.
12142         * ThemeWin32Classic.cs: This is a Flags so we need to check
12143         properly.
12144         
12145 2006-03-21  Jackson Harper  <jackson@ximian.com>
12146
12147         * DataGrid.cs: Create columns when the binding context has been
12148         changed.
12149         * X11Structs.cs: Keysyms are uints.
12150         - Add size to fix build.
12151
12152 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
12153
12154         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
12155           XplatUIOSX.cs: 
12156           - Added ResetMouseHover method to allow controls to retrigger
12157             hovering if they need it more than once
12158           - Implemented MouseHoverTime and MouseHoverSize properties
12159         * Timer.cs: Start() must reset the interval
12160         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
12161           properties
12162
12163 2006-03-21  Jackson Harper  <jackson@ximian.com>
12164
12165         * X11Keyboard.cs: improved layout detection. Move the nonchar
12166         tables into this file.
12167         * KeyboardLayouts.cs: Move the tables into resource files.
12168
12169 2006-03-21  Mike Kestner  <mkestner@novell.com>
12170
12171         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
12172
12173 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
12174
12175         * Mime.cs: Various speed optimizations. Looking up mime types
12176           is now 2 times faster than before
12177
12178 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
12179
12180         * CreateParams.cs: Added internal menu field
12181         * Control.cs: 
12182           - Switched call order for UpdateBounds; now we always call
12183             the one that also takes ClientSize, and we're calculating the 
12184             client size via driver method in the others. The previous
12185             method of tracking client size by difference wasn't working
12186             for forms where even the starting client size wouldn't match
12187             the overall form size (due to borders) (Part of fix for #77729)
12188           - CreateParams(): Do not use parent.Handle unless the handle is
12189             already created. Causes havoc with Nexxia and throws off our
12190             creation of controls
12191         * XplatUIX11.cs:
12192           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
12193           - Switched handling of ConfigureNotify over to new PerformNCCalc 
12194             method (consolidates code)
12195           - Changed RequestNCRecalc to use new PerformNCCalc method
12196           - Added calls to RequestNCRecalc when menus and borders are changed
12197             to allow app to set NC size. (Part of fix for #77729) This matches
12198             when MS send a WM_NCRECALC on Win32 windows.
12199           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
12200             (Part of fix for #77729). This matches what MS does, they also
12201             send that message when the form is made visible.
12202           - XException.GetMessage: Improved usability of X errors by including
12203             a translation of the window into Hwnd and Control class
12204           - Improved debug info for window creation, reparenting and destruction
12205           - Created helper method WindowIsMapped() [Currently not used]
12206         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
12207         * Form.cs:
12208           - CreateParams: Now setting our menu on the new internal menu field
12209           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
12210             avoid calculating the same property twice
12211         * Hwnd.cs:
12212           - Improved usability of ToString() for debugging purposes
12213           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
12214             determine the height of the menu, instead of just the font. This
12215             required to also create a graphics context and to keep a bmp 
12216             around (for performance reasons)
12217
12218 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
12219
12220         * MenuAPI.cs: Added OnMouseUp method
12221         * Form.cs:
12222           - Now remembering the requested client size, avoids size errors
12223           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
12224             instead of base if the menu is active. This is required due to
12225             control now capturing and releasing on down/up and it would
12226             prematurely release our menu capture
12227
12228 2006-03-17  Jackson Harper  <jackson@ximian.com>
12229
12230         * KeyboardLayouts.cs: Add the czech layouts.
12231
12232 2006-03-16  Jackson Harper  <jackson@ximian.com>
12233
12234         * Control.cs: Use the viewport space when sizing not the controls
12235         client size, so things like ScrollableControl that effect the
12236         viewport size (when scrollbars are added) are computed correctly.
12237         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
12238         of ManagerEntrys.
12239         - Handle creating BindingManagers for null data sources.
12240         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
12241         source, otherwise when rows are added they are added to the 'fake'
12242         datasource and we will crash when trying to set the position in
12243         those rows.
12244         - Use Implicit scrollbars on the datagrid so they arent
12245         selectable.
12246         
12247 2006-03-16  Jackson Harper  <jackson@ximian.com>
12248
12249         * Binding.cs:
12250         * InternalWindowManager.cs:
12251         * MdiWindowManager.cs:
12252         * X11Keyboard.cs: I really want Mike to love me again (fix
12253         compiler warnings).
12254
12255 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
12256
12257         * DataGrid.cs:
12258           - OnMouseDown: Switch to editing mode when clicking on the cell
12259                          even if we're clicking on the cell that's currently 
12260                          selected
12261           - ProcessGridKey: Left/Right now wrap like MS.Net does
12262           - ProcessGridKey: Tab now knows to add a new row when tab is
12263                             pressed in the cell of the last column of the 
12264                             last row
12265           - ProcessGridKey: Enter now adds another row  if pressed in the last
12266                             row and selectes the new row, same column cell
12267           - ProcessGridKey: Home/End navigate columns, not rows, like 
12268                             originally implemented
12269           - Broke ProcessKeyPreview code out into an extra Internal method
12270             so it can be called from the edit code
12271         * DataGridTextBox.cs (ProcessKeyMessage):
12272           - Switched to accept Tab keypresses
12273           - Added F2 handling to allow jumping to the end of the edited cell
12274           - Added logic to allow moving caret left/right inside edited cell
12275             and making the edited cell jump when the caret hits cell borders
12276           - Tab and Enter are now passed to the datagrid after being handled
12277         * TextBoxBase.cs:
12278           - Removed capture code now that Control handles it
12279           - set_SelectionStart now ensures caret is visible
12280
12281 2006-03-16  Jackson Harper  <jackson@ximian.com>
12282
12283         * TrackBar.cs: Debackwards the increment/decrement for handling
12284         mouse clicks on the bar with vertical trackbars.
12285         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
12286         bottom to match MS.
12287
12288 2006-03-16  Mike Kestner  <mkestner@novell.com>
12289
12290         * ListView.cs: make shift/ctrl keyboard and mouse selection 
12291         consistent with the MS control. Fix a bug in
12292         SelectedListViewItemCollection.Clear that was pissing me off for the
12293         better part of a day because the collection was being altered
12294         underneath us as we walked the list.
12295
12296 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
12297
12298         * Control.cs: Not sure how we could miss this so long, but it seems
12299           that MS.Net has Capture set all the way from before calling 
12300           OnMouseDown through sending the mouse events until after
12301           OnMouseUp. This will fix DataGrid's selection being set to end
12302           at the location of the MouseUp.
12303
12304 2006-03-15  Jackson Harper  <jackson@ximian.com>
12305
12306         * BindingContext.cs: Check the binding after its added so that it
12307           can initialize the binding managers and hookup to events.
12308         * Binding.cs: Data members seem to sometimes include rows/cols in
12309           the format Row.Column we now take this into account.
12310           - Hookup to the position changed event so we can update the
12311           control when the position has changed in the data set.
12312         * CurrencyManager.cs: Take into account the row/col naming
12313           convention when creating dataset tables.
12314         * BindingContext.cs: Using a newer better way of storing
12315           datasource/datamember pairs.  Hopefully this better matches MS for
12316           looking up binding managers.
12317
12318
12319 2006-03-15  Jackson Harper  <jackson@ximian.com>
12320
12321         * BindingContext.cs: The currency manager needs the data member
12322         name, if the member is a data set we use the name to find the
12323         correct table.
12324         * CurrencyManager.cs: When creating the list prefer an IList over
12325         an IListSource.
12326         - Attempt to create a DataTable from a DataSet (TODO: might need
12327         some better error checking here, although MS doesn't seem to have much)
12328         - If we have a DataTable create a view and use it as our list.
12329
12330 2006-03-15  Mike Kestner  <mkestner@novell.com>
12331
12332         * ListView.cs: keep a matrix of the icon mode layout to facilitate
12333         keyboard navigation. Support Up/Down/Left/Right selection correctly
12334         for all 4 View modes.
12335         * ListViewItem.cs: add internal row/col fields for icon layouts.
12336
12337 2006-03-15  Jackson Harper  <jackson@ximian.com>
12338
12339         * TabControl.cs: Redraw the tabs when we resize so their newly
12340         calculated sizes are drawn on screen.
12341         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
12342         composite characters.
12343         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
12344         - filter events so that composite characters can be created
12345         patches by peter
12346         * X11Structs.cs: Add XIMProperties enum.
12347
12348 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
12349
12350         * Control.cs (BringToFront, SendToBack): Don't use window or handle
12351           unless it's created
12352
12353 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
12354
12355         * Control.cs (PerformLayout): We don't need to consider visiblity
12356           for anchoring, only for docking. This fixes 'whacky' alignment
12357           in listbox and other controls that use implicit scrollbars after
12358           the previous PerformLayout patch
12359         * ListBox.cs: Switched to use implicit scrollbars
12360           
12361 2006-03-14  Mike Kestner  <mkestner@novell.com>
12362
12363         * ToolBar.cs: 
12364         * VScrollBar.cs:
12365         - chain up the "new event" overrides to base and use
12366         OnEvent to raise them.  Part of fix for bug #76509.
12367
12368 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
12369
12370         * FileDialog.cs: Do not select an item in the parent directory
12371           on backspace
12372
12373 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
12374
12375         * Control.cs (PerformLayout): It would seem that we considered
12376           invisible windows for our layout. Not quite the right thing
12377           to do. Now we don't any longer, thereby fixing bug #76889.
12378
12379 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
12380
12381         * Control.cs (CanFocus): I goofed. A control can have focus 
12382           even though it's not selectable. Made it match MS docs.
12383
12384 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12385
12386         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
12387           center by default (fixes #76895)
12388         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
12389           all uses of Border3DSides.All with the explicit ORd together
12390           Left|Right|Top|Bottom because I assume that nobody was aware 
12391           that All also implies a center fill. Most places I checked had
12392           a fill right above.
12393         * ProgressBarStyle.cs: Added
12394
12395 2006-03-13  Mike Kestner  <mkestner@novell.com>
12396
12397         * ListView.cs: fix breakage in drag shadow header positioning 
12398         from Peter's csc compilation fix.
12399
12400 2006-03-13  Mike Kestner  <mkestner@novell.com>
12401
12402         * ListView.cs: fix NRE produced by backspacing twice in a focused
12403         FileDialog.
12404
12405 2006-03-13  Mike Kestner  <mkestner@novell.com>
12406
12407         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
12408
12409 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12410
12411         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
12412           be changed
12413         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
12414           the allowed size before making programmatic size changes
12415
12416 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
12417
12418         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
12419           set, metacity is broken and will still use the emty sizes in 
12420           the struct. (Fix for #77089)
12421
12422 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
12423
12424         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
12425           WindowExStyles and marked both enums as Flags
12426         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
12427           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
12428           to match WindowStyles split
12429         * XplatUIX11.cs:
12430           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
12431           - Updated to match WindowStyles split
12432         * XplatUIWin32.cs:
12433           - Fixed FosterParent creation, was using ExStyle on the Style field
12434             (This should help with Popup focus issues)
12435           - Updated to match WindowStyles split
12436
12437 2006-03-13  Jackson Harper  <jackson@ximian.com>
12438
12439         * MdiWindowManager.cs: Use the system menu height. Fixes some
12440         strange sizing issues.
12441
12442 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
12443
12444         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
12445         * TextBoxBase.cs:
12446           - Scroll to caret after inserting text (#77672)
12447           - Make scroll range one pixel higher, fixes off-by-one error (and
12448             makes underlines visible on the last line)
12449
12450 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
12451
12452         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
12453           the keyboard state from being stuck with keys in 'pressed' state when
12454           focus is switched away via keyboard
12455         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
12456           reset the keyboard if no X11 KeyUp events are expected to come
12457         * X11Structs.cs: Switched type of Visible to bool to match driver
12458
12459 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
12460
12461         * TextControl.cs:
12462           - Switched caret to be just 1 pixel wide, matches MS and looks less
12463             clunky
12464           - Moved caret display 1 pixel down from the top of the control
12465             to improve view
12466           - InsertCharAtCharet: Update the selection start if moving the caret
12467             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
12468           - No longer always creating the caret when the caret methods are
12469             called. Only the actual ShowCaret/HideCaret will do that now
12470           - Only setting caret visible if the owner control has focus
12471           - UpdateView: Added invalidation-shortcut logic for center and right 
12472             aligned text. Previously we'd update all according to the left
12473             logic which caused drawing errors. Also fixed height of invalidated
12474             areas, now properly invalidating the whole area (was off-by-one)
12475           - owner_HandleCreated: Always generate the document when the
12476             handle is created; this ensures that 
12477         * TextBoxBase.cs:
12478           - Fixed situation where caret would disappear under the right
12479             window border, also improved scrolling behaviour on left-
12480             aligned textboxes
12481           - Fixed right-aligned textboxes to have a border to the
12482             right instead of the caret being under the right border
12483         * XplatUIX11.cs:
12484           - Switched from 'nested' to simple visible/not visible tracking 
12485             for caret (part of fix for #77671)
12486           - No longer passing through translated FocusIn/FocusOut messages
12487             since we were notifying too often and the wrong windows. Instead
12488             we just notify our focussed window of receiving or loosing focus
12489         * XplatUIWin32.cs: Switched from 'nested' show/hide 
12490           counting for caret to simple visible yes/no behaviour (part of 
12491           fix for #77671)
12492
12493 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
12494
12495         * Mime.cs: Remove debug code...
12496
12497 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
12498
12499         * MimeGenerated.cs: Removed
12500         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
12501           and subclasses) from /usr/(local/)share/mime and
12502           $HOME/.local/share/mime.
12503
12504 2006-03-10  Jackson Harper  <jackson@ximian.com>
12505
12506         * MdiWindowManager.cs: Recalc the NC area when a window is
12507         maximized/restored so that the menu area is drawn on forms that
12508         don't have a menu.
12509
12510 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12511
12512         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
12513           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
12514           us to force a WM_NCCALCRESIZE message being sent. This is needed
12515           for MDI maximizing.
12516
12517 2006-03-10  Jackson Harper  <jackson@ximian.com>
12518
12519         * Form.cs: We need to use the ActiveMenu when calculating menu
12520         height.
12521         - Fix nullref when the window manager hasn't been created yet.
12522         * Control.cs: Fix nullref when we try to bring a control to the
12523         front that has no parent.
12524         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
12525         height.
12526         - Add a dummy item to the maximized menu so it always has the
12527         correct height. Otherwise when there are no menus we don't get our
12528         icon and buttons.
12529         
12530
12531 2006-03-10  Jackson Harper  <jackson@ximian.com>
12532
12533         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
12534         stuff.
12535         * Form.cs: Make the window_state internal so the window managers
12536         can track it.
12537         - When an MDI child is maximized let its window manager create the
12538         main menu (so it can add its icon).
12539         - Notify the window managers of state changes
12540         - Let the window manager paint its buttons and handle button
12541         clicks on the menu when it is maximized.
12542         * InternalWindowManager.cs: Move the prev_bounds into the mdi
12543         window manager, since tool windows don't use it, only mdi windows.
12544         - Tell the main form that we don't want it to handle NCPAINT
12545         itself to avoid extra painting.
12546         - Handle clicks on a maximized windows menu.
12547         - Handle window state changes
12548         - Handle minimize/maximize clicks correctly by setting the window state.
12549         * MdiWindowManager.cs: Add an icon menu that (the menu you get
12550         when clicking on the forms icon).
12551         - New method to create a forms maximized menu. This is its normal
12552         menu + an icon.
12553         - Handle window state changes.
12554         - Handle sizing of maximized windows.  Maximized windows are just
12555         drawn bigger then the parent visible area. All controls are still
12556         there, they are just outside the visible area (this matches windows).
12557         * MdiClient.cs: No scrollbars when a child window is maximized.
12558         - Let the children windows figure out how big they should be when
12559         sizing maximized windows.
12560         - Implement a version of ArrangeIconicWindows somewhat similar to
12561         Windows version.  There are some little differences, but I don't
12562         think any app will rely on the layout of minimized mdi windows.
12563
12564 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12565
12566         * Padding.cs: Several fixes to allow compiling with csc 2.0
12567
12568 2006-03-09  Jackson Harper  <jackson@ximian.com>
12569
12570         * Menu.cs:
12571         * MenuItem.cs: Cheap hack so we can add items to the list without
12572         the events being raised.  This allows adding mdi items during
12573         drawing. TODO: Should probably find a better time to add the items.
12574
12575 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12576
12577         * ThemeWin32Classic.cs:
12578           - CheckBox_DrawText: Added logic to not wrap if not enough space
12579             is available (Fix for bug #77727)
12580           - RadioButton_DrawText: Added logic not to wrap if not enough
12581             space is available (Fix for bug #77727). Also removed some
12582             duplicate code, DrawString always drawing the regular text
12583             before hitting the if statement.
12584
12585 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
12586
12587         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
12588
12589 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
12590
12591         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
12592         * ContainerControl.cs: Partial implementation of some 2.0 scaling
12593           methods. Moved the new 2.0 properties into alphabetical order with
12594           other properties and added MonoTODO tags
12595
12596 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12597
12598         * AutoScaleMode.cs: Added. Fix build.
12599
12600 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12601
12602         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
12603           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
12604           and was requiring premature handle creation for calls from above
12605         * Form.cs, Control.cs: Removed handle arguments from calls to
12606           CalculateClientRect()
12607
12608 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12609
12610         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
12611           drag_column.column_rect is MarshalByRef and can't be used that way
12612
12613 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12614
12615         * AxHost.cs: Added deserialization constructor for 
12616           AxHost+State (fixes 77743)
12617
12618 2006-03-09  Mike Kestner  <mkestner@novell.com>
12619
12620         * ListView.cs: 
12621         - Added column drag reordering for details view.
12622         - fixed behavior when mouse is dragged off column and
12623         AllowColumnReorder is false.
12624         * ColumnHeader.cs: clone the format too in Clone.
12625         * Theme.cs: add DrawListViewHeaderDragDetails method.
12626         * ThemeWin32Classic.cs:
12627         - impl new method for drawing drag column shadows and targets.
12628         - support column offset for details mode in DrawListViewItem.
12629
12630 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12631
12632         * TextControl.cs: Reset the char_count when the document is cleared
12633           (Fixes bug reported on mono-winforms mailing list)
12634
12635 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
12636
12637         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
12638           of calling base we simply process the key ourselves, since both
12639           DefWindowProc and the handled method would set m.Result. 
12640           (Fixes #77732)
12641
12642 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
12643
12644         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
12645           method also moves the window; instead implemented a copy of
12646           Control.ScaleCore (Part of fix for #77456)
12647         * TextBoxBase.cs: 
12648           - Created new CreateGraphicsInternal method to allow providing
12649             a graphics context when no handle is created without triggering
12650             handle creation. (Part of fix for #77456)
12651           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
12652         * TextControl.cs: 
12653           - Switched Constructor to require TextBoxBase instead of Control (to
12654             allow uncast access to CreateGraphicsInternal)
12655           - Safeguarded use of owner.Handle property. No longer accessing it
12656             unless the handle is already created.
12657           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
12658           - Now triggering a recalc when owning control becomes visible
12659         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
12660           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
12661           premature handle creation (Part of fix for #77456)
12662         * Control.cs:
12663           - We now only destroy our double-buffering buffers when the
12664             control is resized or disposed, but not when visibility
12665             changes. (The code even re-created them twice every time)
12666           - Now requiring a redraw of the buffer on visibility changes
12667             (fixes bug 77654 part 2)
12668           - Not passing OnParentVisibleChanged up unless the control
12669             is visible
12670           - CanFocus: Fixed to match MS documentation
12671           - Focus: Fixed to return actual focus state and to check if
12672             setting focus is legal before setting it
12673
12674 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
12675
12676         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
12677           when to draw focus rectangle by looking at parent focus and
12678           selected state instead. This fixes TabPages on Linux sometimes
12679           having none or multiple focus rectangles.
12680         * XplatUIX11.cs (SetFocus): 
12681           - Don't set the focus if the same window already has focus
12682           - Use SendMessage instead of PostMessage (like it's Win32
12683             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
12684             to match MS behaviour
12685         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
12686           are not selectable.
12687
12688 2006-03-07  Jackson Harper  <jackson@ximian.com>
12689
12690         * PictureBox.cs: Revert line I accidently committed last week.
12691
12692 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
12693
12694         * Control.cs: 
12695           - Added new IsRecreating and ParentIsRecreating properties to
12696             allow testing if RecreateHandle has been called on ourselves
12697             or one of our parents
12698           - WndProc(WM_DESTROY): If our control handle is being recreated
12699             we immediately need to create the handle when receiving the
12700             destroy, that way our child windows find a valid parent handle
12701             when they themselves are being recreated upon WM_DESTROY receipt
12702             (fix for bug #77654 part 1)
12703         * XplatUIX11.cs:
12704           - DestroyWindow: WM_DESTROY must be sent to our own window before
12705             notifying any child windows. MS documents that child windows
12706             are still valid when WM_DESTROY is received. (Control now relies on
12707             this behaviour)
12708           - Added some fine-grain debug options
12709
12710 2006-03-06  Jackson Harper  <jackson@ximian.com>
12711
12712         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
12713         box and base calculations off this.
12714         * MdiChildContext.cs:
12715         * MdiWindowManager.cs: Don't need to ensure scrollbars here
12716         anymore.
12717         
12718 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
12719
12720         * Splitter.cs: In situations where the affected control is added
12721           to the parent's control list after the splitter, we would not
12722           populate affected. Now we try populating it on mousedown, if
12723           it's not already set, and force it to be re-set whenever our
12724           parent changes.
12725
12726 2006-03-03  Matt Hargett  <matt@use.net>
12727
12728         * Control.cs: implement Control.Padding
12729         * Padding.cs: -Padding.All returns -1 when constructing with the
12730         implicit default ctor
12731         -Padding.ToString() matches MS.NET
12732         * ContainerControl.cs: implement
12733         ContainerControl.AutoScaleDimensions
12734         * ListControl.cs: implement ListControl.FormattingEnabled
12735         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
12736         * ButtonBase.cs:
12737         * TabPage.cs: Implement UseVisualStyleBackColor.
12738         * PictureBox.cs: Implement PictureBox.InitialImage.
12739
12740 2006-03-03  Mike Kestner  <mkestner@novell.com>
12741
12742         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
12743         event declarations to proxy to base event.
12744         * ListViewItem.cs: update to use ItemControl.
12745         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
12746         * ThemeWin32Classic.cs: update to new ListView theme API and fix
12747         column header label rendering for 0 width columns.
12748
12749 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
12750
12751         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
12752           that causes the control to be created. Fixes #77476.
12753
12754 2006-03-02  Jackson Harper  <jackson@ximian.com>
12755
12756         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
12757         expose_pending.
12758
12759 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
12760
12761         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
12762           passed in for the EventArgs (fixes #77690)
12763
12764 2006-03-01  Jackson Harper  <jackson@ximian.com>
12765
12766         * ScrollBar.cs: Refresh afterbeing resized.
12767
12768 2006-02-28  Mike Kestner  <mkestner@novell.com>
12769
12770         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
12771         Clean up a tracker compile warning.
12772         * MenuItem.cs: add internal PerformPopup method.
12773         [Fixes #77457]
12774
12775 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12776
12777         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
12778           implicit expose) when the text is set to null
12779
12780 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
12781
12782         * RichTextBox.cs (FlushText): When newline is true, we always
12783           need to split the line, even if no text is on it and we may
12784           never eat newlines. (Fixes #77669)
12785
12786 2006-02-28  Mike Kestner  <mkestner@novell.com>
12787
12788         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
12789         and set Selected instead.
12790         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
12791         collections.
12792
12793 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
12794
12795         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
12796
12797 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
12798
12799         * FontDialog.cs:
12800           - Got rid of the panel. All controls are now directly added to
12801             the dialog form
12802           - It is now possible to set a font with the Font property
12803           - MinSize and MaxSize property do now what they should
12804           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
12805           - Searching and selecting a font with the font textbox works now,
12806             the same applies to the style and size textbox
12807           - Draw the correct 3D border in the example panel
12808           - Fixed a little mem leak (unused fonts didn't get disposed)
12809           - Many other internal updates/rewrites...
12810           - Fix typo
12811
12812 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
12813
12814         * TextControl.cs: 
12815           - InsertRTFFromStream: Added 'number of characters inserted' argument
12816           - set_SelectedRTF: Now using the number of characters to calculate
12817             the new location for the selection and cursor (x/y cannot be used
12818             due to potentially already wrapped text)
12819
12820 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
12821
12822         * TextControl.cs: Added property and implemented means to allow 
12823           disabling recalculation of a document (can be used to speed up
12824           multiple inserts and is needed to make RTF inserts predictable, see
12825           bug #77659)
12826         * RichTextBox.cs: Using the new NoRecalc property of Document to
12827           keep x/y insert locations predictable. Also makes it faster inserting
12828           large chunks of RTF
12829
12830 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
12831
12832         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
12833           it's easier for a child control to handle the other messages without
12834           having to duplicate the special functionality
12835         * TextBoxBase.cs
12836           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
12837             code to handle processing the key ourselves, in order to get 
12838             access to the result of KeyEventArgs.Handled. We now only call 
12839             ProcessKey if they key hasn't been handled already. Fixes #77526.
12840           - set_Text: If null or empty string is given, just clear the 
12841             document. Fixes part of #77526
12842
12843 2006-02-27  Jackson Harper  <jackson@ximian.com>
12844
12845         * SizeGrip.cs: Paint the background color before painting the grip
12846         so things look right.
12847         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
12848
12849 2006-02-27  Mike Kestner  <mkestner@novell.com>
12850
12851         * ListView.cs:
12852           - Restructure layout and invalidation model to remove a ton of
12853           flicker from the control and speed up performance in general.
12854           - Add manual column resize, flickers like crazy, but I already have
12855           some ideas on how I'll fix that. (#76822)
12856           - Merge the three Icon-based views into a single layout method.
12857           - Move item selection interaction logic from the item since 
12858           interaction with the collections is more appropriate to the view.
12859           - Deselection on non-item clicks.
12860         * ListViewItem.cs:
12861           - Encapsulate most of the layout. Add some internal props to trigger
12862           layout.  Move to a model where Items invalidate themselves instead
12863           of just invalidating the whole control every time something changes.
12864           - Invalidate on Text/Caption changes.
12865           - switch to an offset based layout model to avoid having to absolute
12866           position every element on item moves.
12867           - correct checkbox layout to conform to MS layout.
12868         * ThemeWin32Classic.cs:
12869           - refactor some column header drawing code.
12870           - fix string justification for column headers (#76821)
12871           - make SmallIcon labels top justified for compat with MS impl.
12872         * ThemeClearlooks.cs:
12873           - adjust to new ListViewItem internal checkbox bounds api.
12874
12875 2006-02-27  Jackson Harper  <jackson@ximian.com>
12876
12877         * Control.cs:  Change where implicit controls fall in the zorder.
12878         They are now on top of all children.
12879         - Synced AddImplicit code with Add
12880         - Removed unused enumerator.
12881         * SizeGrip.cs: Remove the TODO as its been TODONE.
12882
12883 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
12884
12885         * TextControl.cs(Insert): Combine the last lines unless the insertion
12886           string ends with \n\n, otherwise we leave one line too many (Fixes
12887           something I noticed with the testapp for #77526; the bug itself was
12888           already fixed in the previous checkin)
12889
12890 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
12891
12892         * RichTextBox.cs:
12893           - SelectionColor and SelectionFont methods no longer set absolute
12894             styles. Instead, the keep font or color respectively (This 
12895             resolves a long-standing FIXME in the code)
12896           - When flushing RTF text, the insert code now considers text trailing
12897             behind the insertion point (Fixes the bug where when replacing
12898             the selected text via SelectedRTF the remainder of the line behind 
12899             the selection would stay on the first insertion line)
12900         * TextBoxBase.cs:
12901           - AppendText now updates the selection points after inserting text
12902           - AppendText now ensures that the last tag (sometimes 0-length) of
12903             the document is used for the style information (Fixes part of 
12904             bug #77220)
12905         * TextControl.cs:
12906           - Created new FontDefiniton class to allow describing partial style
12907             changes
12908           - StreamLine() now takes a lines argument, to allow it to decide
12909             whether an encountered zero-length tag is the last in the document
12910             (which must be kept to not loose the font/color contained in it,
12911             for later appends)
12912           - Created Combine() and Split() methods for Marker structs, to 
12913             support marker updates due to reformatted documents (soft line
12914             wraps)
12915           - Implemented Document.CaretTag setter
12916           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
12917             of the last line (Not the cause, but also exposed by bug #77220)
12918           - Added LineTag argument to InsertString method, to allow callers
12919             to force a certain tag to be used (required to force use of the
12920             trailing zero-length tag of a document)
12921           - Now updating markers in Combine(), to avoid stale tag markers
12922           - Added some method descriptions to aid maintenance
12923           - Implemented new FormatText concept, allowing additive/subtractive
12924             formatting by only specifying the components that are to be 
12925             changed. This was needed for resolving the RTB.SelectedColor/
12926             RTB.SelectedFont fixmes
12927           - Added Break() support method to allow breaking up linetags (used
12928             for partial formatting)
12929           - Added GenerateTextFormat() method. It is used for partial 
12930             formatting and allows to generate a full font/color from given
12931             attributes and an existing tag.
12932
12933 2006-02-26  Jackson Harper  <jackson@ximian.com>
12934
12935         * XplatUIX11.cs:  Use the correct caption height.
12936         - Translate hittest coordinates to screen coords to match MS.
12937         * XplatUIWin32.cs: When we create MDI windows we need to reset
12938         some of the style flags, so we get a nice blank window, and can
12939         draw all the decorations ourselves.
12940         - Set a clipping rectangle on the non client paint event, the
12941         window manager drawing code needs one.
12942         * Form.cs: The window manager needs to know when the window state
12943         has been updated.
12944         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
12945         don't need to factor in border and title sizes in these
12946         methods. TODO: Remove the args and fix the call points.
12947         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
12948         properly.
12949         - Let the driver set the cursors.
12950         - Improve active window handling
12951         - Correct sizes for title bars and buttons.
12952         - Match MS drawing better
12953         * MdiWindowManager.cs: We don't need to handle border style
12954         updates specially anymore.
12955         - Check for scrollbars when windows are done moving
12956         - Handle Active properly.
12957         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
12958         correctly. I am spewing the exception though, so we don't hide the
12959         bugs.
12960         
12961 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
12962
12963         * DataGridViewRowPostPaintEventArgs.cs,
12964           DataGridViewCellPaintingEventArgs.cs,
12965           DataGridViewRowCollection.cs,
12966           DataGridViewRowPrePaintEventArgs.cs,
12967           DataGridViewCell.cs: Clear a few warnings and implement a few
12968           exceptions that should be thrown.
12969
12970 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
12971
12972         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
12973           'inheriting' our parent's (non-default) cursor. (Part of
12974            the fix for #77479)
12975
12976 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
12977
12978         * XplatUIX11.cs: Fixed cast to make csc happy
12979
12980 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
12981
12982         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
12983           it's for the client area (part of fix for #77479 and needed
12984           for MDI window cursor handling)
12985         * XplatUIX11.cs
12986           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
12987             the appropriate default cursors and also passing the message
12988             up the parent chain 
12989           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
12990             for non-client areas
12991
12992 2006-02-15  Jackson Harper  <jackson@ximian.com>
12993
12994         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
12995         is a real MDI window
12996
12997 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
12998
12999         * X11DesktopColors.cs: Instead of checking the desktop session
13000           string for "KDE" check if it starts with "KDE"
13001
13002 2006-02-10  Jackson Harper  <jackson@ximian.com>
13003
13004         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
13005         systems).
13006
13007 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13008
13009         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
13010           errors
13011         * ColorDialog.cs:
13012           - Got rid of the panel. All controls are now directly added to
13013             the dialog form
13014           - Changed to mono coding style
13015
13016 2006-02-10  Jackson Harper  <jackson@ximian.com>
13017
13018         * InternalWindowManager.cs: We don't need the set visibility to
13019         false hack anymore now that peter has written beautiful shutdown
13020         code.
13021
13022 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
13023
13024         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
13025           where already explicitly destroyed
13026
13027 2006-02-10  Jackson Harper  <jackson@ximian.com>
13028
13029         * MdiClient.cs: Handle the case where windows are too high or to
13030         the left and we need scrollbars.
13031
13032 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
13033
13034         * MimeIcon.cs: Added some icons
13035         * FileDialog.cs:
13036           - Fixed bug #77477
13037           - Got rid of the panel. All controls are now directly added to
13038             the dialog form
13039           - Changed to mono coding style
13040           - On Linux "My Computer" and "My Network" will now show some
13041             more usefull information. A new class, MasterMount, gathers
13042             this information from /proc/mount. Updated MWFFileView to make
13043             use of this information
13044           - Fixed a bug that caused FileDialog to crash when
13045             ".recently_used" file had a zero size
13046           - FilterIndex does now what it should
13047           - Some Refactoring
13048         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
13049             FileDialog changes
13050
13051 2006-02-09  Jackson Harper  <jackson@ximian.com>
13052
13053         * ComboBox.cs: Don't touch if null.
13054
13055 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
13056
13057         * Cursor.cs: 64bit safeness fix
13058         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
13059
13060 2006-02-09  Jackson Harper  <jackson@ximian.com>
13061
13062         * Form.cs: If a form is made into an MDI form update the styles so
13063         all the props can get set correctly.
13064         - Kill the mdi_container when we dont need it anymore.
13065         * InternalWindowManager.cs: Add missing NOT
13066
13067 2006-02-08  Jackson Harper  <jackson@ximian.com>
13068
13069         * InternalWindowManager.cs: Respek clipping when drawing MDi
13070         decorations.
13071
13072 2006-02-08  Jackson Harper  <jackson@ximian.com>
13073
13074         * Hwnd.cs: Add bits to track non client expose events.
13075         * XplatUIX11.cs: Track non client expose events on the hwnd. This
13076         gives us a proper invalid rect and will allow for some nice
13077         optimizations with NC client drawing
13078         - MDI windows are children windows, so move their style handling
13079         into the child window block.
13080         * InternalWindowManager.cs: Remove a state reset that was
13081         getting invoked at the wrong time. Fixes managed windows getting
13082         into a 'stuck' captured state.
13083
13084 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13085
13086         * TextControl.cs (Document.ctor): Now initializing 
13087           selection_anchor. Fixes #77493
13088
13089 2006-02-07  Jackson Harper  <jackson@ximian.com>
13090
13091         * TrackBar.cs: The increment/decrements were backwards.
13092
13093 2006-02-07  Mike Kestner  <mkestner@novell.com>
13094
13095         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
13096         to the instance itself.
13097
13098 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
13099
13100         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
13101           on ulongs and pointers, the size differs between 32bit and 64bit
13102           systems. 
13103
13104 2006-02-07  Mike Kestner  <mkestner@novell.com>
13105
13106         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
13107         for 64 bit platforms to work around a metacity bug. 
13108
13109 2006-02-07  Jackson Harper  <jackson@ximian.com>
13110
13111         * TrackBar.cs: Process the input keys we need, and hookup to
13112         KeyDown instead of using WndProc, so we get key messages.
13113
13114 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
13115
13116         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
13117           machine we're on. 
13118         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
13119           we need to translate the XdndVersion atoms array before sending it
13120
13121 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
13122
13123         * XplatUIX11.cs: 
13124           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
13125             number of bits for the property, not the number of bytes. The
13126             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
13127             but would not crash since it specified 8 bits instead of 4 bits)
13128           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
13129             defined as XID -> long in the C headers)
13130           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
13131             references since those are now IntPtr to begin with
13132           - Switched all Atom.XXX 'int' casts to IntPtr casts
13133           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
13134           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
13135           - Added XChangeActivePointerGrab DllImport (for X11DnD)
13136         * X11Structs.cs:
13137           - Changed 'int' type for Atoms in XEvent structures to IntPtr
13138           - Changed atom in HoverStruct to be IntPtr
13139         * X11DnD.cs:
13140           - Removed local DllImports, switched code to use those from XplatUIX11
13141           - Removed/fixed casts related to the switch of Atom to be a IntPtr
13142
13143 2006-02-06  Mike Kestner  <mkestner@novell.com>
13144
13145         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
13146         method signatures in the import region.  There may still be some
13147         lingering struct marshaling issues, as I didn't drill down into those.
13148         Yet.
13149
13150 2006-02-06  Jackson Harper  <jackson@ximian.com>
13151
13152         * ComboBox.cs: Dont manually set the top_item, this is computed
13153         when the scrollbar position is set.
13154
13155 2006-02-06  Mike Kestner  <mkestner@novell.com>
13156
13157         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
13158         startup crashes on amd64.  There's other fixes needed.  All pinvoke
13159         usage of Atom needs to be mapped to IntPtr for example.  And there are
13160         likely other int/long issues to be addressed.
13161
13162 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
13163
13164         * FileDialog.cs: One more...
13165
13166 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13167
13168         * FileDialog.cs: Next try
13169
13170 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13171
13172         * FileDialog.cs: First part of fix for #77464
13173
13174 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
13175
13176         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
13177           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
13178           AcceptButton border drawing.
13179
13180 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
13181
13182         * Form.cs: Moved positioning of form after auto scaling is applied,
13183           otherwise it would possibly use wrong form size.
13184
13185 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
13186
13187         * Control.cs (RecreateHandle): No need to re-create any child
13188           controls, the child windows will get destroyed automatically by
13189           the windowing system or driver, and re-created when the handle
13190           is being accessed the first time. Fixes #77456
13191         * Form.cs: No longer setting the form to closing if the handle is 
13192           being recreated. This seems like the right thing to do, don't
13193           have a bug or testcase for this, though.
13194
13195 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
13196
13197         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
13198           controls to avoid unwanted side effects
13199
13200 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
13201
13202         * Control.cs: 
13203           - ScaleCore needs to scale the bounds, not the ClientSize of the 
13204             control. Fixes #77416.
13205           - DefaultSize is 0,0 for control
13206         * TextBoxBase.cs: 
13207           - DefaultSize is 100, 20
13208           - SetBoundsCore: Now enforcing the height, no matter if the provided
13209             height is more or less than the preferred one, as long as AutoSize
13210             is on
13211         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
13212
13213 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
13214
13215         * Control.cs:
13216           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
13217             call unless both performLayout is true *and* we have a pending
13218             layout change
13219           - ResumeLayout: MS does not completely nest Suspend and Resume,
13220             they bottom out at 0, fixed our code to match that.
13221           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
13222             SetBoundsCore, we were updating even when we shouldn't. This fixes
13223             swf-anchors mis-anchoring when resizing the app fast and lots.
13224           - UpdateDistances: Now only setting the left and top distance if 
13225             we have a parent and are not suspended, this is based on
13226             a suggestion by Don Edvaldson in bug #77355.
13227           - OnVisibleChanged: Fixed logic when to create the control. We may
13228             not create the control if we have no parent or if it's not visible;
13229             switched to using Visible property instead of is_visible field 
13230             since the property also considers parent states. This fixes a bug
13231             when starting Paint.Net
13232
13233 2006-02-02  Jackson Harper  <jackson@ximian.com>
13234
13235         * Form.cs: If the forms handle hasn't been created yet don't call
13236         into xplatui to make it top most, just set the topmost flag on the
13237         form in CreateParams
13238         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
13239
13240 2006-02-01  Jackson Harper  <jackson@ximian.com>
13241
13242         * ScrollableControl.cs: Refactored the Recalculate method a
13243         little, this wasn't handling all the variants of bottom and right
13244         bars needed to be added and added/removed based on their
13245         counterparts being added/removed (which changes the drawable
13246         size). Also we special case client widths and heights of 0 and
13247         don't add the scrollbar for those.
13248
13249 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
13250
13251         * XplatUIX11.cs: 
13252           - Added method to get AbsoluteGeometry(); currently unused, but might
13253             be used in the future, if we try again to figure out toplevel
13254             coordinates with some more crappy window managers
13255           - Added FrameExtents() method to retrieve the WM set decoration size
13256           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
13257             to deal with at least KDE, FVWM and metacity (Fixes #77092)
13258         * Hwnd.cs: 
13259           - Added whacky_wm tracking var for metacity
13260           - Added logic to have default menu height if the actual menu height
13261             has not yet been calculated (part of fix for #77426)
13262         * Form.cs: Keep track whether client size has been set and re-set 
13263           it if a menu is added/removed afterwards (Fixes #77426)
13264
13265 2006-01-31  Jackson Harper  <jackson@ximian.com>
13266
13267         * Control.cs: When a new Site is set on the component attempt to
13268         pull the AmbientProperties from it.
13269
13270 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
13271
13272         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
13273           in the background of the owning form. Fixes #77332
13274
13275 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
13276
13277         * MimeIcon.cs: Fix for #77409
13278
13279 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
13280
13281         * XplatUIX11GTK.cs: Initial import
13282
13283 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
13284
13285         * FixedSizeTextBox: fixes class signature
13286
13287 2006-01-30  Jackson Harper  <jackson@ximian.com>
13288
13289         * FixedSizeTextBox.cs: New internal class that represents a
13290         textBox that will not be scaled.
13291         * TreeView.cs:
13292         * ComboBox.cs:
13293         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
13294         standard TextBox.
13295                 
13296 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
13297
13298         * XplatUIX11.cs: Retrieve default screen number instead of
13299           assuming 0. Attempted fix for #77318
13300
13301 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
13302
13303         * XplatUIWin32.cs: 
13304           - GetWindowPos: When a window is parented by FosterParent, use 
13305             the desktop instead of FosterParent as the base to get coordinates
13306           - CreateWindow: Don't make FosterParent the parent window for Popups
13307             if we don't want a taskbar entry, Popups automatically don't get one
13308         * Hwnd.cs: Need to call remove to actually remove the key from the
13309           hash table
13310
13311 2006-01-30  Mike Kestner  <mkestner@novell.com>
13312
13313         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
13314
13315 2006-01-30  Jackson Harper  <jackson@ximian.com>
13316
13317         * TreeView.cs:
13318         * TreeNode.cs: Raise events no matter how the treenode is
13319         checked. Patch by Don Edvalson.
13320
13321 2006-01-30  Jackson Harper  <jackson@ximian.com>
13322
13323         * TreeNode.cs: Signature fix.
13324
13325 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
13326
13327         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
13328
13329 2006-01-20  Mike Kestner  <mkestner@novell.com>
13330
13331         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
13332         event forwarding when menus are active.
13333         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
13334         Most of the patch is pdb's with a little rework.
13335
13336 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
13337
13338         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
13339           Removed GetMenuDC and ReleaseMenuDC methods; replaced
13340           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
13341         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
13342         * InternalWindowManager.cs: Added use of PaintEventStart/End to
13343           handling of WM_NCPAINT message, now passing the PaintEventArgs to
13344           the PaintWindowDecorations method
13345         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
13346         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
13347         * MenuAPI.cs: Made tracker window invisible
13348         * XplatUIWin32.cs:
13349           - Removed GetMenuDC and ReleaseMenuDC methods
13350           - Implemented the client=false path for PaintEventStart and
13351             PaintEventEnd
13352
13353 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
13354
13355         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
13356         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
13357           styles
13358         * Form.cs: 
13359           - MaximizeBox, MinimizeBox: Recreate the handle when setting
13360             the style
13361           - CreateParams: Reworked the styles to match MS look'n'feel,
13362             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
13363             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
13364
13365 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
13366
13367         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
13368           window is not mapped, since otherwise every form that's being 
13369           created is considered minimized, which is wrong.
13370         * Form.cs: Catching the exception and returning our internal value
13371           instead
13372
13373 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
13374
13375         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
13376           SetWindowMinMax() to have means to tell the driver about the minimum,
13377           maximum and maximized state window sizes. (Part of the fix for #76485)
13378         * Form.cs:
13379           - Implemented tracking of minimum and maximum window size, now calling
13380             new SetWindowMinMax() driver method to tell the driver (Part of the
13381             fix for #76485)
13382           - Finished handling of WM_GETMINMAXINFO method, now setting all values
13383             (Completes fix for #76485)
13384           - Calling new SetWindowMinMax driver method when the handle for a 
13385             form is created, to make sure the driver knows about it even if
13386             the values have been set before the window was created
13387           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
13388             to avoid messing up our anchoring calculations (partial fix
13389             for #77355)
13390         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
13391         * XplatUIX11.cs:
13392           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
13393           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
13394             (and presumably other freedesktop.org compliant WMs). Left the
13395             assumption unmapped=minimized, needed for SetVisible to work.
13396           - Now setting the window state when creating windows
13397           - Fixed SetVisible to consider/set the window state when mapping
13398             a Form. We cannot set the state before it's mapped, and we cannot
13399             use Form.WindowState once it's mapped (since it would ask the
13400             driver and get 'normal'. Therefore, we grab the state before
13401             mapping, map, and then set state.
13402           - Implmemented SetWindowMinMax method; Metacity does not seem to
13403             honor the ZoomHints, though.
13404         * XplatUIWin32.cs:
13405           - Removed MINMAXINFO (moved to XplatUIStructs)
13406           - Added SetWindowMinMax stub (on Win32 the only way to set that
13407             information is in response to the WM_GETMINMAXINFO message, which
13408             is handled in Form.cs)
13409           - Added logic to SetVisible to set the proper window state when a 
13410             form is made visible (fixes #75720)
13411
13412 2006-01-26  Jackson Harper  <jackson@ximian.com>
13413
13414         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
13415         same way we handle them with Invoke.
13416
13417 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
13418
13419         * Form.cs:
13420           - Added tracking of window state so CreateParams can return
13421             the appropriate style
13422           - Moved setting of WS_CAPTION style in CreateParams to allow
13423             styles without caption
13424         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
13425           control if the TextBox property is accessed. Fixes #77345
13426         * Control.cs:
13427           - get_Created: now uses is_disposed and is_created to determine
13428             return value (suggested by Jackson)
13429           - CreateHandle: No longer exits if the handle is being recreated
13430           - RecreateHandle: If the handle is not yet created call the 
13431             appropriate method to create either control or handle. If the
13432             control is already created CreateHandle will simply exit instead
13433             of just creating the handle
13434         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
13435           now SendMessage WM_DESTROY directly to the control when DestroyWindow
13436           is called.
13437         * XplatUIX11.cs: 
13438           - When DestroyWindow is called, instead of waiting for the 
13439             DestroyNotification from X11, we directly post it to the WndProc
13440             and immediately dispose the hwnd object.
13441             Same applies to DestroyChildWindows, and this obsoletes the
13442             expose_pending tracking. Contrary to Win32 behaviour we destroy our
13443             child windows before our own, to avoid X11 errors.
13444           - Removed the direct sending of WM_PAINT on UpdateWindow
13445         * XplatUIWin32.cs:
13446           - Reworked DoEvents and GetMessage to allow access to internal queue
13447             even when trying non-blocking access to the queue.  Fixes #77335. 
13448             Based on a patch suggestion by Don Edvalson. The new private
13449             GetMessage can now also be used as a backend for a PeekMessage
13450             frontend version.
13451         * XplatUI.cs: Improved debug output for CreateWindow
13452
13453 2006-01-25  Jackson Harper  <jackson@ximian.com>
13454
13455         * Help.cs: Allow param to be null. Patch by Don Edvalson.
13456
13457 2006-01-24  Jackson Harper  <jackson@ximian.com>
13458
13459         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
13460         when we have a MaxDropItems lower then the selected index.
13461
13462 2006-01-24  Jackson Harper  <jackson@ximian.com>
13463
13464         * Control.cs: Don't allow selection of non visible controls, allow
13465         selection of controls without parents.
13466
13467 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
13468
13469         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
13470         * DataGridDrawingLogic.cs: Add editing row only when is necessary
13471
13472 2006-01-23  Jackson Harper  <jackson@ximian.com>
13473
13474         * UpDownBase.cs: Make the textbox handle all the selection and
13475         tabbing. This fixes tabing to updown controls.
13476
13477 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
13478
13479         * TextBoxBase.cs: fixes exception thown the object was null
13480
13481 2006-01-23  Jackson Harper  <jackson@ximian.com>
13482
13483         * ButtonBase.cs: Just use the base CreateParams. They set
13484         visibility and enabled correctly.
13485         * ComboBox.cs:
13486         * TrackBar.cs:
13487         * MonthCalendar.cs: Lets let the base set as much of the
13488         createparams as possible so we don't have duplicate code all over
13489         the place.
13490
13491 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
13492
13493         * ThemeGtk.cs: Added TrackBar and some experimental code to
13494           get double buffering back
13495
13496 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
13497
13498         * DataGrid.cs: Allows row number set internally higher than the last
13499         when creating a new row. Restores the editing functionality.
13500
13501 2006-01-20  Mike Kestner  <mkestner@novell.com>
13502
13503         * MimeIcon.cs: delay Image creation until the icons are accessed
13504         instead of creating 190 scaled images on GnomeHandler startup.
13505
13506 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
13507
13508         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
13509           first call base before processing the event. Fixes #77279
13510
13511 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
13512
13513         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
13514           that the stride for the GDI bitmap would match the stride of
13515           a DIB or a Cursor.
13516
13517 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
13518
13519         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
13520
13521 2006-01-19  Jackson Harper  <jackson@ximian.com>
13522
13523         * ComboBox.cs: Hookup the text controls keydown event so we get
13524         those when the text control has the focus.
13525
13526 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
13527
13528         * Label.cs: Now using the base events instead of defining new ones;
13529           this allows us to just call the base properties without having to
13530           duplicate all base property logic 
13531
13532 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
13533
13534         * Label.cs: A label by default is not a tabstop (Fixes one of our
13535           failing nunit tests)
13536
13537 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
13538
13539         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
13540         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
13541
13542 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
13543
13544         * Cursor.cs: Reimplemented creating cursor bitmaps without using
13545           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
13546           This fixes #77218
13547         * XplatUIWin32.cs: 
13548           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
13549             constructor creates images that can't be saved. Part of the fix
13550             for #76103
13551           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
13552           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
13553             bug fix for handling window state in forms properly)
13554
13555 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13556
13557         * ThemeGtk.cs: Simplify ScrollBar drawing
13558
13559 2006-01-18  Jackson Harper  <jackson@ximian.com>
13560
13561         * Splitter.cs: Set the default dock style for the splitter control
13562         in the constructor.
13563
13564 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13565
13566         * ThemeGtk.cs: Corrected StateType and ShadowType for
13567           gtk_paint_box
13568
13569 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13570
13571         * Control.cs: Make use of Theme.DoubleBufferingSupported
13572         * ThemeGtk.cs:
13573           - Added drawing for flat style buttons
13574           - Added ScrollBar drawing
13575
13576 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
13577
13578         * ThemeClearlooks.cs: Removed some unneeded code.
13579         * ThemeGtk.cs: First part of ThemeGtk enhancements.
13580
13581 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
13582
13583         * LinkLabel.cs: We need to update the hover drawing when
13584           leaving the control as well.
13585
13586 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
13587
13588         * DataGrid.cs: Clicking on non empty areas in the columns
13589            area was giving an exception
13590
13591 2006-01-17  Jackson Harper  <jackson@ximian.com>
13592
13593         * ThemeWin32Classic.cs:
13594         * ListView.cs: Do not draw/clip the headers when the header style
13595         is None.
13596
13597 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
13598
13599         * DataGrid.cs: Fixes 77260
13600         
13601 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
13602
13603         * DataGrid.cs: Clicking on a column on a empty grid was giving
13604           an exception
13605
13606 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
13607
13608         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
13609           or any keypress will crash the grid.
13610
13611 2006-01-17  Mike Kestner  <mkestner@novell.com>
13612
13613         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
13614         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
13615         invisible/previously-visible items.
13616         [Fixes #76909]
13617
13618 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
13619
13620         * ThemeClearlooks.cs:
13621         - Added CL_Draw_Button method; now other theme controls that are 
13622           not derived from button or do not have a button can draw buttons
13623           too
13624         - Updated ComboBox drawing
13625         - Beautified RadioButton drawing
13626         - Corrected drawing of bottom and left tabs
13627         - Beautified DateTimePicker and MonthCalendar
13628         - Added CPDrawButton and CPDrawRadioButton
13629
13630 2006-01-16  Jackson Harper  <jackson@ximian.com>
13631
13632         * ComboBox.cs: Set the initial value of the scrollbar to the
13633         current index. Reduce the numbers of refreshs and IndexOfs called.
13634
13635 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
13636
13637         * FileDialog.cs: When the file listview is focused hitting the
13638           backspace key moves the fileview to the parent directory
13639
13640 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
13641
13642         * Form.cs: 
13643           - Added RecreateHandle call when changing taskbar visibility to 
13644             trigger reparenting in Win32 driver (Fixes #75719)
13645           - If a window has minimize or maximize buttons, it cannot have
13646             a help button
13647         * XplatUIWin32.cs:
13648           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
13649             the toplevel form with FosterParent (A toolwindow not on the
13650             taskbar) (Fixes #75719)
13651           - Made FosterParent a toolwindow
13652
13653 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13654
13655         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
13656
13657 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13658
13659         * ToolTip.cs: If SetToolTip is called from a control and the mouse
13660           is currently over that control, make sure that tooltip_window.Text
13661           gets updated
13662
13663 2006-01-13  Mike Kestner  <mkestner@novell.com>
13664
13665         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
13666
13667 2006-01-13  Jackson Harper  <jackson@ximian.com>
13668
13669         * TreeView.cs: On MS GetNodeAt never actually factors in the X
13670         value passed.  Also redraw the selected node when we recieve
13671         focus, so tabbing between trees works correctly.
13672
13673 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
13674
13675         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
13676           ~/.gconf/%gconf-tree.xml, so use
13677           .gconf/desktop/gnome/interface/%gconf.xml
13678
13679 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13680
13681         * TextControl.cs: Draw text in gray if control is disabled
13682
13683 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
13684
13685         * TreeView.cs: Draw the focus rectangle outside the highlight, to
13686           make sure it's always visible. Fixes #76680.
13687
13688 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
13689
13690         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
13691
13692 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
13693
13694         * PageSetupDialog.cs: Added.
13695         * PrintDialog.cs: Attributes.
13696         * PrintPreviewControl.cs: Updates.
13697         * PrintPreviewDialog.cs: Updates.
13698         
13699 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13700
13701         * Control.cs: Undid my selection check fix, since it's not needed
13702         * TextBoxBase.cs:
13703           - Now considering the presence of hscroll/vscroll when sizing
13704             vscroll/hscroll respectively. Fixed bug #77077
13705           - Added Left/Up/Down/Right to IsInputKey list to prevent
13706             ContainerControl from stealing them. This fixes what I broke
13707             with my last checkin.
13708
13709 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
13710
13711         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
13712           I finally understand how the property can be set without a setter :-)
13713
13714 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13715
13716         * Application.cs:
13717           - Switched RunLoop to use static Message.Create to create a 
13718             Message object
13719           - Added PreProcessMessage call in runloop for keyboard events; this
13720             is part of the fix for #77219, I overlooked this originally in the
13721             MSDN doc for PreProcessMessage
13722         * Control.cs:
13723           - Removed call to PreProcessMessage from handling of keyboard 
13724             messages; it's supposed to be done in the message pump
13725           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
13726             per MSDN documentation.
13727           - IsInputChar: All chars are input chars by default; removed the 
13728             parent calling chain, MS does not document that
13729           - PreProcessMessage: If IsInputChar is true, we want to return false
13730             to allow dispatching of the message
13731           - When selecting the next control, now also check that we're not
13732             selecting ourselves again and therefore return a false positive.
13733         * TextBoxBase.cs:
13734           - Tried to match return values for IsInputKey and ProcessDialogKey
13735             to what MS returns; moved processing of our special keys outside
13736             ProcessDialogKey since MS does not seem to return true on those.
13737           - Moved code that previously was in ProcessDialogKey into new private
13738             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
13739           - Reworked handling of WM_CHAR to not have to duplicate code from
13740             Control.cs anymore, instead we simply call down to base.
13741            
13742 2006-01-12  Jackson Harper  <jackson@ximian.com>
13743
13744         * ComboBox.cs: We always need to refresh the text area when
13745         EndUpdate is called. Fixes the combobox in the file dialog.
13746         * Control.cs: Don't create the creator_thread until the controls
13747         handle is created.  Also in InvokeRequired we check if the
13748         creator_thread is null. This gives the effect of InvokeRequired
13749         returning true if the controls handle is not created yet, and
13750         matches MS.
13751
13752 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13753
13754         * XplatUI.cs:
13755           - Added StartLoop() driver method. This is used to allow drivers to
13756             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
13757             loop for a particular thread
13758           - Added EndLoop() driver method. This is called once the message
13759             pump for the thread is shut down
13760           - Added SupportsTransparency method to allow the driver to indicate
13761             opacity support for windows
13762         * Form.cs:
13763           - Removed TODO attribute, completed AllowTransparency property
13764           - Added documented logic to Opacity
13765         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
13766           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
13767           versions of CompatibleTextRendering
13768         * X11Structs.cs: Added opacity atom to our atom enumeration
13769         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
13770           of a form might be set before it's reparented by the WM, and we need
13771           the opacity value without calling up to Form)
13772         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
13773           SupportsTransparency() driver methods
13774         * Application.cs: Now calling StartLoop and EndLoop driver methods
13775         * XplatUIX11.cs:
13776           - Added opacity atom registration
13777           - Added StartLoop()/EndLoop() methods. They're empty right now but
13778             will need to get implemented when we switch to a per-thread queue
13779           - Implemented SupportsTransparency() method
13780           - Implemented SetWindowTransparency() method
13781           - Added support for setting the opacity value when a window is
13782             reparented (since the opacity needs to be set on the WM frame)
13783         * XplatUIOSX.cs, XplatUIWin32.cs:
13784           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
13785
13786 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13787
13788         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
13789
13790 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
13791
13792         * FileDialog.cs: Added ToolTip for MWFFileView
13793         * MimeIcon.cs: Rewrote GnomeHandler.
13794           - Get currently used gnome icon theme from
13795             ($HOME)/.gconf/%gconf-tree.xml
13796           - Make use of inherited icon themes
13797           - Support SVG icon themes like Tango via librsvg
13798
13799 2006-01-12  Miguel de Icaza  <miguel@novell.com>
13800
13801         Revert's Jackson's revert which broke 2.0 builds.   Fix both
13802         builds. 
13803         
13804         * Application.cs: Move the use_compatible_text_rendering outside
13805         the NET_2_0 define.  If we ever need to use the
13806         use_compatible_text_rendering on the individual controls they will
13807         access the variable from the common shared code paths.
13808
13809 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
13810
13811         * XplatUI.cs:
13812           - Added more granular debug options
13813           - Added method to print both window text and id
13814           - Switched debug output to use new Window() debug method
13815           - Added IsEnabled() driver method
13816           - Added EnableWindow() driver method
13817         * Form.cs:
13818           - Removed end_modal; no longer needed, new loop handles termination
13819             via 'closing' variable
13820           - If form is modal, setting DialogResult will now initiate loop
13821             termination via 'closing' variable
13822           - Added support for is_enabled/WS_DISABLED to CreateParams
13823           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
13824             does all the work
13825           - Removed code that's now in RunLoop from ShowDialog()
13826           - Added various documented sanity checks to ShowDialog()
13827           - Added handling of WM_DESTROY message; we set 'closing' on getting
13828             the message to indicate the message pump to terminate
13829           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
13830             send by the Application.ExitThread method. (We send the message
13831             to destroy the window after all other events have been
13832             processed through the queue, instead of destroying the handle 
13833             directly)
13834           - Moved code from Close() method to WM_CLOSE handler; added logic
13835             to only send close-related events if the form is not displayed
13836             modal
13837         * Splitter.cs (..ctor): Fixed typo in resource name
13838         * Control.cs:
13839           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
13840             brush now
13841           - set_Cursor: Now only setting calling into XplatUI if the handle for
13842             the control is already created; this avoids implict handle creation
13843             or crashes if it's not created
13844           - set_Enabled: Now setting the enabled state via the new driver method
13845             instead of just tracking it
13846           - CreateParams: Added logic to set WS_DISABLED based on enabled state
13847           - CreateControl: Reordered event firing and method calls to more
13848             closely fire events in the order MS does. Now setting the
13849             enabled state in the driver when creating the control.
13850           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
13851             match MS order
13852         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
13853           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
13854         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
13855         * Hwnd.cs:
13856           - Added tracking of window enabled state (get_Enabled/set_Enabled)
13857           - Added EnabledHwnd property to easily allow a driver to find the
13858             handle of the first enabled window in the parent chain (this is
13859             used by drivers to pass up input events of disabled windows)
13860         * XplatUIDriver.cs: Added IsEnabled() method
13861         * Application.cs:
13862           - Removed crude and obsolete exiting tracking variable
13863           - Removed internal ModalRun(); replaced by RunLoop()
13864           - Implemented private CloseForms() method to allow closing all 
13865             windows owned by a particular (or all) threads
13866           - Exit() now properly closes all windows without forcing the message
13867             pump to quit
13868           - Removed obsolete InternalExit() method
13869           - Changed Run() methods to use new RunLoop() message pump
13870           - Implemented new RunLoop() method for both modal and non-modal forms
13871         * CommonDialog.cs:
13872           - get_CreateParams: Added setting of WS_DISABLED
13873           - Simplified ShowDialog(); now all the work is done in RunLoop(),
13874             invoked via Form.ShowDialog()
13875         * NativeWindow.cs: We don't remove the window from the collection when
13876           the handle is destroyed; there might still be messages for it in the
13877           queue (mainly the resulting WM_DESTROY); instead it will be removed
13878           when Control calls InvalidateHandle in the WM_DESTROY handler
13879         * XplatUIX11.cs:
13880           - CreateWindow: Added logic to handle the WS_DISABLED window style
13881           - EnableWindow: Implemented based on Hwnd.Enabled
13882           - GetMessage: Reset PostQuitState so the method can be called again
13883           - Implemented support for disabled windows (passing messages to the
13884             first enabled parent) in handling all input messages
13885           - Added optimizations for handling Expose events
13886           - Implemeted new driver method IsEnabled()
13887           - Now always resetting paint pending tracking vars when we start paint
13888           - Re-implemented UpdateWindow via just sending a WM_PAINT message
13889         * XplatUIOSX.cs: Added IsEnabled method stub
13890         * XplatUIWin32.cs: Implemented new IsEnabled() method
13891
13892 2006-01-11  Jackson Harper  <jackson@ximian.com>
13893
13894         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
13895         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
13896         variables a little.
13897         * ColorDialog.cs: Clear out the old form before adding the new
13898         panel.  
13899
13900 2006-01-11  Jackson Harper  <jackson@ximian.com>
13901
13902         * X11Dnd.cs: Make sure to add all the text formats when adding
13903         strings to the data object.
13904         * TreeNodeCollection.cs: When adding to a sorted tree we need to
13905         do some redrawing too.  Also change the UpdateNode to an
13906         UpdateBelow so the newly added node gets painted.
13907         
13908 2006-01-11  Miguel de Icaza  <miguel@novell.com>
13909
13910         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
13911         LinkLabel.cs, PropertyGrid.cs: Implement the
13912         UseCompatibleTextRendering property for 2.x
13913
13914         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
13915
13916 2006-01-11  Jackson Harper  <jackson@ximian.com>
13917
13918         * TreeView.cs: Use the property for setting the selected node so
13919         the correct events get raised.
13920         * TreeNode.cs: Update the tree when the fore/back colours of a
13921         node are set.
13922
13923 2006-01-10  Jackson Harper  <jackson@ximian.com>
13924
13925         * TreeView.cs: Allow setting SelectedNode to null.
13926
13927 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13928
13929         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
13930
13931 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13932
13933         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
13934
13935 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13936
13937         * PrintDialog.cs: Added attributes and set default property values.
13938
13939 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13940
13941         * PrintControllerWithStatusDialog.cs: 
13942         Added PrintControllerWithStatusDialog.
13943
13944 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13945
13946         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
13947         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
13948
13949 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
13950
13951         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
13952
13953 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13954
13955         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
13956         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
13957
13958 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
13959
13960         * MimeIcon.cs: Added internal class SVGUtil.
13961
13962 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
13963
13964         * FileDialog.cs: Don't crash if there are two files with the
13965           same name but different locations.
13966
13967 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
13968
13969         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
13970         dates across multiple month grids. Used to not highlight entire 
13971         month, but does now.
13972         
13973 2006-01-06  Jackson Harper  <jackson@ximian.com>
13974
13975         * MonthCalendar.cs: Removed DoEvents call to prevent a running
13976         message loop. Change timer intervals to numbers that seem more
13977         natural.
13978
13979 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
13980
13981         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
13982           object for location info since screen object is now implemented.
13983
13984 2006-01-05  Jackson Harper  <jackson@ximian.com>
13985
13986         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
13987         * AsyncMethodResult.cs: We no longer use a WeakReference for the
13988         AsyncMethodResult, this is because we ALWAYS want the
13989         ManualResetEvent to get set.
13990         * Control.cs: When disposing use an async invoke to call shutdown
13991         code, so that thigns don't block on the finalizer thread.  Also
13992         check if we even have a message loop before trying to send
13993         messages, if we don't then don't bother sending messages.
13994         - No more weak references for async methods
13995         * XplatUIDriver.cs: No more weak references for async methods.
13996
13997 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
13998
13999         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
14000           returns two FontFamily with the same name
14001
14002 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14003
14004         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
14005           drawing disabled text. Instead using the ColorGrayText color
14006
14007 2006-01-04  Jackson Harper  <jackson@ximian.com>
14008
14009         * TreeNode.cs: redraw the node when its image index is changed.
14010
14011 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
14012
14013         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
14014           time I checked there are no others like it.
14015
14016 2006-01-04  Jackson Harper  <jackson@ximian.com>
14017
14018         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
14019         this gives the behavoir I was looking for.
14020         * Control.cs: Special case Invoking EventHandlers, this matches MS
14021         and fixes part of bug #76326.
14022
14023 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14024
14025         * ThemeClearlooks.cs, FileDialog.cs:
14026           - Reflect the latest Theme class changes
14027           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
14028             with DateTime
14029             
14030 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
14031
14032         * Theme.cs: Cache UI resource images and resize them if needed
14033
14034 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14035
14036         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
14037           is called. This fixes the crash in Nexxia when setting the font
14038           attributes in the chat. [However, RTF needs a look-over to make sure
14039           that all SelectionXXX methods handle the special case that selection
14040           is empty and therefore the change must be applied to all text starting
14041           at the cursor/selection start]
14042
14043 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
14044
14045         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14046           XplatUIOSX.cs: Added SendMessage and PostMessage methods
14047         * X11Keyboard.cs: Switched to new way of calling PostMessage
14048
14049 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
14050
14051         * Theme.cs: Added theme interface for images to allow the theme to
14052           control what images are used for things like FileDialog, MessageBox
14053           icons, etc.
14054         * MessageBox.cs: Now uses the new Theme icon/image interfaces
14055
14056 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
14057
14058         * FileDialog.cs:
14059           - Removed some dead code
14060           - Opening a recently used file does work now
14061           - Small UI enhancements
14062           - Refactoring
14063
14064 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14065
14066         * FileDialog.cs: Forgot too add __MonoCS__
14067
14068 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
14069
14070         * FileDialog.cs: We are able to read recently used files now let's
14071           go on and write them.
14072
14073 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
14074
14075         * FileDialog.cs: Breathe some life into "last open"/"recently used"
14076           button
14077         * MimeIcon.cs: Do a check for the top level media type also
14078
14079 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14080
14081         * ThemeClearlooks.cs:
14082           - Added CPDrawStringDisabled
14083           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
14084             some chars if the text doesn't fit into text_rect
14085           - DrawListViewItem: If View = View.LargeIcon center the image;
14086             rewrote the drawing of ListViewItem.Text if View = 
14087             View.LargeIcon
14088
14089 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
14090
14091         * MimeIcon.cs: Use default KDE icon theme if there is no
14092           "48x48" directory for the current icon theme, fixes #77114
14093         * Mime.cs: Disable not working and actually not used code. 
14094         * ThemeWin32Classic.cs:
14095           - Replace "new SolidBrush" in GetControlBackBrush and
14096             GetControlForeBrush with ResPool.GetSolidBrush
14097           - Changed DrawListViewItem from private to protected virtual
14098         * FileDialog.cs:
14099           - Added form.MaximizeBox = true
14100           - Don't throw an exception if there is a broken symbolic link
14101
14102 2005-12-23  Jackson Harper  <jackson@ximian.com>
14103
14104         * TabControl.cs: Give the panels focus, keyboard navigation is
14105         fixed so this works correctly now.
14106         - We need these key events also.
14107         * ToolBar.cs: Remove some of the poor mans double buffering.
14108         
14109 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
14110
14111         * ComboBox.cs: The internal TextBox now returns the focus.
14112
14113 2005-12-23  Jackson Harper  <jackson@ximian.com>
14114
14115         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
14116
14117 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14118
14119         * Control.cs: Removed debug code
14120         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
14121           implicit children
14122
14123 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
14124
14125         * Control.cs: When creating the control, update the Z-order after
14126           all it's children are created, too. (Fixes nexxia not showing
14127           picturebox bug)
14128
14129 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
14130
14131         * Control.cs: Do not update the anchoring distances if layout is
14132           suspended, instead do it once layout is resumed
14133
14134 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
14135
14136         * Control.cs: 
14137           - After many hours of debugging, for both Jackson and
14138             myself, it turns out that it helps to set the parent of a control
14139             if you want to actually see it onscreen. In the spirit of that
14140             discovery, we're now setting the parent of the control and
14141             it's children when the control's handle is created. This fix
14142             will make Lutz Roeder's Reflector run happily. 
14143           - now just creating the handle instead of the whole control when
14144             getting a graphics context for the control.
14145
14146 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14147
14148         * ScrollableControl.cs: When calculating the canvas, don't consider
14149           the scrollbar widths. Instead, predict if horizontal scrollbar
14150           will affect canvas when deciding on vertical display and vice versa.
14151
14152 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
14153
14154         * RichTextBox.cs: Set default RTF font for documents that don't
14155           have a font table (Fixes #77076)
14156
14157 2005-12-22  Jackson Harper  <jackson@ximian.com>
14158
14159         * TextBoxBase.cs: It's difficult to do, but you can have an empty
14160         clipboard. This prevents a NullRef in that case.
14161         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
14162         clipboard. PRIMARY is for the currently selected text only. (We
14163         should implement PRIMARY at some point.
14164
14165 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14166
14167         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
14168           a Unicode function with a structure that was defined in Ansi way.
14169           This fixes #76942.
14170
14171 2005-12-21  Jackson Harper  <jackson@ximian.com>
14172
14173         * StatusBar.cs: Statusbar handles its fore/back colours on it's
14174         on. Because thats how it rolls. (and this avoids it using ambient
14175         colours).
14176         * ThemeWin32Classic.cs: Use the proper back color for filling.
14177         * Menu.cs: Use the system menu bar color for drawing menu
14178         bars. Using the window back color will bring ambient colours into
14179         the picture.
14180
14181 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
14182
14183         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
14184           Bitmaps were created and not disposed.
14185
14186 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14187
14188         * Control.cs (CreateControl): Don't do anything if the control is
14189           already created, otherwise we'd fire the OnCreated event more than
14190           once
14191
14192 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
14193
14194         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
14195           will always match. Instead return -1. Fixes #76464.
14196
14197 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
14198
14199         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
14200           neither the beginning nor the end of the line (Fixes bug #76479)
14201
14202 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
14203
14204         * Control.cs:
14205           - ControlNativeWindow.ControlFromHandle(): Now handling situation
14206             where handle is invalid
14207           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
14208             instead of slower linear search
14209         * NativeWindow.cs: Don't remove the window from the hashtable until
14210           after the driver has destroyed it (since the driver might use
14211           Control.FromHandle to lookup the control object
14212         * Hwnd.cs: Added DestroyPending property to track if a window is 
14213           already destroyed as far as the driver is concerned and only hasn't
14214           yet notified the control
14215         * XplatUIX11.cs:
14216           - Activate(): Check if the window is still valid before using the 
14217             handle
14218           - Implemented DestroyChildWindow() method to mark child windows as
14219             destroyed when a window is destroyed. This prevents situations 
14220             where we might call an X method based on queued events for a
14221             window that already has been destroyed but we haven't yet pulled
14222             the destroy method from the queue.
14223           - Added a call to the new DestroyChildWindow() method to the drivers
14224             DestroyWindow code. Also now marking the destroyed window itself
14225             as pending
14226
14227 2005-12-20  Jackson Harper  <jackson@ximian.com>
14228
14229         * StatusBar.cs:
14230         * StatusBarPanel.cs: Don't calculate panel sizes on draw
14231         anymore. Just do them when needed, also track the rects of panels
14232         so that we can optimize refreshing more in the future.
14233
14234 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
14235
14236         * ColorDialog.cs: Fixed focus drawing in small color controls
14237
14238 2005-12-19  Jackson Harper  <jackson@ximian.com>
14239
14240         * InternalWindowManager.cs:
14241         * MdiWindowManager.cs: Cleanup some coordinate system changes so
14242         moving windows works properly.
14243
14244 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
14245
14246         * Control.cs: 
14247           - Removed call to InitLayout() from SetBoundsCore(); doc says
14248             it's only called when a control is added to a container
14249           - Split InitLayout logic, moved to separate UpdateDistances() method
14250             since we need to perform those calculations more often than just
14251             when adding the control to a container. (Needed to fix #77022)
14252           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
14253           - Reduced the OnBindingContextChanged events count, don't send them
14254             unless the control is created, we still aren't totally matching
14255             MS, but I can't quite figure out some of their rules
14256
14257 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14258
14259         * ThemeClearlooks.cs: Corrected distance between ProgressBar
14260           stripes
14261
14262 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14263
14264         * ThemeClearlooks.cs:
14265           - Updated ProgressBar drawing
14266           - Corrected drawing of ScrollBars and scroll buttons
14267           - Some temporary fixes for minor pixel artefacts
14268
14269 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
14270
14271         * Control.cs:
14272           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
14273             cause events to be sent in the same order as MS does.
14274           - Added ChangeParent() method to trigger various OnXXXChanged events
14275             that need to be fired when a parent changes (This is a reworking
14276             of the patch from r54254, with the X11 errors fixed)
14277           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
14278             since on MS we get OnLayoutChanged events when calling Clear()
14279           - Changed Enabled property to consider parent state as well, if a
14280             parent is not enabled, the control will not be either
14281           - Changed Parent property to simply call Controls.Add() since that
14282             now does all the work required, this way we avoid code duplication
14283           - Threw in a few OnBindingsContextChanged calls to try and match
14284             when MS sends them. We seem to send a few too many, though.
14285           - Added call to CreateControl when adding the control to a parent.
14286             We were never calling CreateControl. Still needs some work, in
14287             some places we treat HandleCreated and ControlCreated as equal, 
14288             which is wrong
14289           - Removed obsolete commented out code from UpdateZOrder()
14290
14291 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
14292
14293         * ThemeClearlooks.cs: Updated TrackBar drawing.
14294
14295 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
14296
14297         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
14298
14299 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
14300
14301         * FileDialog.cs: Add the Help button and the open readonly
14302           checkbox only if needed
14303
14304 2005-12-16  Jackson Harper  <jackson@ximian.com>
14305
14306         * Control.cs: Make sure we have an active menu before trying to
14307         process commands on it. Prevents menu-less forms from crashing
14308         when Alt is pressed.
14309         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
14310         Dieter Bremes.
14311         * RichTextBox.cs: Expand statement to help out gmcs and fix the
14312         2.0 build.
14313
14314 2005-12-16  Jackson Harper  <jackson@ximian.com>
14315
14316         * InternalWindowManager.cs: Don't translate tool windows screen
14317         coordinates. This fixes windows 'bouncing' around when being moved.
14318
14319 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
14320
14321         * TextBoxBase.cs:
14322           - MaxLength now treats 2^31-1 equal to unlimited length (this is
14323             not quite MS compatible, MS uses that number only for single line
14324             and 2^32-1 for multi-line, but I figure it won't hurt keeping
14325             the limit at 2GB)
14326           - Now enforcing the MaxLength limit when entering characters
14327           - Added argument to internal Paste() method to track if it's called
14328             from programatically or via keyboard, since keyboard driven pastes
14329             need to enforce max-length
14330           - Added logic to Paste to only paste as many chars as MaxLength 
14331             allows
14332         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
14333         * TextControl.cs:
14334           - Added Length property to return number of characters in document
14335           - Added private CharCount property which only tracks actual chars
14336             in the document (no linefeeds) and fires event when CharCount
14337             changes
14338           - Added tracking of character count to all methods that alter it
14339           - Added LengthChanged event to allow applications to subscribe
14340             to any changes to the document
14341
14342 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
14343
14344         * TextBox.cs: 
14345           - Removed local password_char field (moved to TextBoxBase)
14346           - Now setting the document's password var when password is
14347             set
14348         * TextBoxBase.cs:
14349           - Added password_char field (needed here so MultiLine can
14350             access it)
14351           - Added logic to MultiLine property setter to set the document's
14352             variable when password display is allowed
14353           - Removed debug code and made some debug code conditional
14354         * TextControl.cs:
14355           - Added RecalculatePasswordLine() method to handle special password
14356             char only lines
14357           - Added PasswordChar property, also added related tracking vars
14358           - Draw() method now uses local text var for grabbing text to draw,
14359             this var is set to line.text unless we're doing password display,
14360             then it is set to the pre-generated all-password-chars line
14361           - Added calling RecalculatePasswordLine() method for password lines
14362
14363 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
14364
14365         * Hwnd.cs: 
14366           - Added Reparented property to allow tracking of Window Manager
14367             reparenting actions (which affect X/Y calculations of toplevel 
14368             windows)
14369           - Made ToString() print window handles in hex
14370         * XplatUIX11.cs:
14371           - AddConfigureNotify(): Now uses reparented state off Hwnd to
14372             determine if X/Y needs offsetting
14373           - AddConfigureNotify(): Fixed offset calculations
14374           - Now adds ReparentNotify messages into the queue
14375           - Now processes ReparentNotify messages and causes a 
14376             WM_WINDOWPOSCHANGED message to be sent upstream if a window
14377             is reparented (as most likely it's X/Y coordinates are changed
14378             due to that)
14379
14380 2005-12-14  Jackson Harper  <jackson@ximian.com>
14381
14382         * XplatUIX11.cs: Tool windows still need to respek focus.
14383
14384 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
14385
14386         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
14387           have a working release
14388
14389 2005-12-13  Jackson Harper  <jackson@ximian.com>
14390
14391         * Form.cs: Update styles after setting the border style regardless
14392         of whether or not the window is using a window manager.
14393
14394 2005-12-13  Jackson Harper  <jackson@ximian.com>
14395
14396         * Form.cs: We now hook into an internal window manager instead of just an
14397         MDI subsystem, this is so we can have properly behaving tool windows.
14398         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
14399         * InternalWindowManager.cs: New internal class that acts as a
14400         window manager for tool windows and as a base for mdi windows.
14401         * MdiWindowManager.cs: New class that acts as a window manager for
14402         mdi windows.
14403
14404 2005-12-12  Jackson Harper  <jackson@ximian.com>
14405
14406         * Control.cs: Updates so we match behavoir for for implicit
14407         controls. Fixes explosions in MDI.
14408
14409 2005-12-12  Jackson Harper  <jackson@ximian.com>
14410
14411         * Control.cs: Implement Invalidate (Region).
14412
14413 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
14414
14415         * Control.cs: 
14416           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
14417             the same events as MS does. MS fires events for each property 
14418             except, for unknown reasons, Cursor, when the control is reparented. 
14419             I can't seem to totally match add/remove since MS also fires some 
14420             VisibleChanged events, which makes no sense. Consolidated the
14421             parenting code into a separate method so it can be called from
14422             both Add and Remove. set_Parent no longer needs any special logic
14423             as it calls the parent's add method which implicitly fires
14424             all events
14425           - Removed some obsolete code and debug output
14426           - Enabled state is inherited from parents, if this is enabled
14427
14428 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
14429
14430         * Form.cs: Removed commented out code
14431
14432 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
14433
14434         * Control.cs:
14435           - Added internal version of Invoke, with additional argument 
14436             indicating if we're calling it from a Dispose() handler. That
14437             way we can avoid BeginInvoke throwing an exception if we're
14438             calling for an already destroyed window.
14439           - Added a dispose argument to BeginInvokeInternal, and made the
14440             check if a valid window handle chain exists conditional on
14441             it not being a dispose call
14442           - Removed code in DestroyHandle to destroy our children. Since we
14443             now handle the WM_DESTROY message we will catch all our children
14444             being destroyed.
14445           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
14446         * Form.cs:
14447           - Added a field to track the application context of the form.
14448           - No need to set closing variable as response to WM_CLOSE, instead
14449             we destroy the window. We also call PostQuitMessage if the form
14450             has an application context (which makes it the main app form,
14451             which, when closed terminates the app)
14452         * XplatUI.cs:
14453           - Dropped Exit() method, it's naming was confusing
14454           - Added PostQuitMessage() which causes GetMessage to return false
14455             once the message queue is empty
14456         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
14457           PostQuitMessage()
14458         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
14459           no longer a valid XplatUI method, but left it in since it's used
14460           internally. Added empty PostQuitMessage() method.
14461         * MenuAPI.cs: Replaced call to Exit() with call to
14462           PostQuitMessage, even though this is probably no longer needed.
14463         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
14464         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
14465         * Application.cs:
14466           - Replaced call to XplatUI.Exit() with PostQuitMessage()
14467           - Removed old debug code that would call XplatUI for exception
14468             display, enabled standard exception handling (Still not enabled
14469             though, until NativeWindow's ExternalExceptionHandler define
14470             is removed
14471         * NativeWindow.cs:
14472           - Added internal method to allow control to update NativeWindow
14473             after a window has been destroyed
14474           - Added handling of already destroyed windows when calling i
14475             DestroyWindow
14476           - Added removal of handle from list on ReleaseHandle
14477         * XplatUIX11.cs:
14478           - Dropped GetMessageResult var and related code
14479           - Added PostQuitState to field to track if PostQuitMessage has been
14480             called
14481           - Dropped Exit() method
14482           - Added PostQuitMessage() method
14483           - GetMessage now will return false if PostQuitState is set and no
14484             more messages are in the queue.
14485           - Expose handler will no longer generate WM_PAINT messages if we are
14486             in PostQuitState since it's very likely any windows have already
14487             been destroyed, and since Hwnd won't get updated until we have
14488             processed the DestroyNotify we'd be causing X errors.
14489         
14490 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14491
14492         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
14493           Thanks to Mike for pointing out the err of my ways.
14494
14495 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14496
14497         * Control.cs(PreProcessMessage): Moved menu handling back, but
14498           after all other key handling, to match MS (who handles Menu in
14499           DefWndProc)
14500         * Menu.cs (WndProc): Removed my brainfart
14501
14502 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14503
14504         * Control.cs(PreProcessMessage): Removed special menu handling 
14505         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
14506
14507 2005-12-07  Mike Kestner  <mkestner@novell.com>
14508
14509         * Control.cs : special case SYSKEYUP so that we can adjust keynav
14510         state according in tracker.
14511         * Menu.cs : promote tracker field to base class and provide a tracker
14512         lookup capability.  Add/Remove shortcuts dynamically if the top menu
14513         has a tracker. Unparent items that are removed from the collection.
14514         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
14515         * Theme*.cs: add always_show_hotkeys field to support configurability
14516         of mnemonic display.  win32 doesn't show mnemonics until Alt is
14517         pressed.
14518
14519 2005-12-07  Jackson Harper  <jackson@ximian.com>
14520
14521         * MdiChildContext.cs: Use Control.ResetCursor.
14522         * Control.cs: ResetCursor needs to set the property so that the
14523         correct XplatUI call gets made.
14524
14525 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14526
14527         * Control.cs: More fixes to make our key events match MS. We
14528           were not setting the modifier state on KeyData, and we were
14529           not generating any events when Alt was pressed with a key
14530           since handling of WM_SYSxxx was missing for the OnKey methods.
14531
14532 2005-12-07  Jackson Harper  <jackson@ximian.com>
14533
14534         * MdiChildContext.cs: reenable the sizing code.
14535         - When the mouse leaves a window reset its cursor.
14536
14537 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
14538
14539         * ThemeClearlooks.cs: Reflect latest Hwnd changes
14540
14541 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
14542
14543         * Hwnd.cs: Now using the theme 3d bordersize to calculate
14544           widths of Fixed3D borders
14545
14546 2005-12-07  Jackson Harper  <jackson@ximian.com>
14547
14548         * MdiClient.cs: Fix warnings. Earn Mike's love.
14549
14550 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
14551
14552         * ThemeClearlooks.cs:
14553           - Adjusted mouse over button color
14554           - Added first parts of CheckBox drawing
14555           - Added correct color for selected text background
14556           - Fixed ComboBox drawing
14557           - Added CPDrawBorder3D and CPDrawBorder
14558
14559 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
14560
14561         * XplatUIX11.cs: Added call to XBell for AudibleAlert
14562
14563 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
14564
14565         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
14566           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
14567           alert users via sound. We could add an enum arg with different
14568           types of alerts in the future
14569
14570 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
14571
14572         * Control.cs: Fix behaviour problems pointed out by Mike
14573
14574 2005-12-05  Mike Kestner  <mkestner@novell.com>
14575
14576         * StatusBarPanel.cs: add Invalidate method and hook it into all the
14577         prop setters.  Calls parent.Refresh for now, but could be maybe be
14578         optimized with an internal method on StatusBar at some point.
14579         [Fixes #76513]
14580
14581 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
14582
14583         * RichTextBox.cs: Implemented get_SelectionColor
14584
14585 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
14586
14587         * ThemeClearlooks.cs:
14588           - Removed dead code
14589           - Draw black button border only if button is Form.AcceptButton
14590           - Draw correct button color for pressed RadioButton if the mouse 
14591             has entered the button
14592           - Updated ProgressBar drawing!
14593           - Updated CPDrawSizeGrip drawing
14594           - Updated StatusBarPanel drawing
14595
14596 2005-12-05  Mike Kestner  <mkestner@novell.com>
14597
14598         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
14599         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
14600
14601 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
14602
14603         * ThemeClearlooks.cs: Initial check-in, activate with
14604           export MONO_THEME=clearlooks
14605         * ThemeEngine.cs: Added ThemeClearlooks
14606
14607 2005-12-03  Mike Kestner  <mkestner@novell.com>
14608
14609         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
14610         [Fixes #76897]
14611
14612 2005-12-02  Jackson Harper  <jackson@ximian.com>
14613
14614         * Form.cs: If the child form has no menu the default main menu is
14615         used as the active menu.
14616
14617 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
14618
14619         * ListBox.cs: Check if any items exist before trying to resolve 
14620           coordinates into items
14621
14622 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
14623
14624         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
14625           as the second color for the background hatch
14626
14627 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
14628
14629         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
14630         * RichTextBox.cs: FormatText position arguments are 1-based, now making
14631           sure that what we pass to FormatText is always 1-based. Fixes #76885
14632
14633 2005-11-29  Miguel de Icaza  <miguel@novell.com>
14634
14635         * NumericUpDown.cs (EndInit): When we are done initializing,
14636         reflect any updates on the UI.
14637
14638 2005-12-02  Jackson Harper  <jackson@ximian.com>
14639
14640         * ImplicitHScrollBar.cs:
14641         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
14642         their container controls.
14643         * TreeView.cs: Use the new implicit scrollbars.
14644
14645 2005-12-02  Jackson Harper  <jackson@ximian.com>
14646
14647         * TreeView.cs: Make top_node internal so the TreeNodeCollections
14648         can play with it.
14649         * TreeNodeCollection.cs: If we remove the topnode we need to
14650         update topnode to the next node in line.
14651         - When clearing nodes go through the same process as removing
14652         them, so they get depareneted and checked if they are top node.
14653
14654 2005-12-01  Jackson Harper  <jackson@ximian.com>
14655
14656         * TreeView.cs: When imagelists are used the image area is
14657         selectable as well as the text.
14658         - If there are no selected nodes select the first one.
14659         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
14660         so don't do it more then we need to.
14661
14662 2005-12-01  Jackson Harper  <jackson@ximian.com>
14663
14664         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
14665         that arrows can be scaled.
14666
14667 2005-12-01  Jackson Harper  <jackson@ximian.com>
14668
14669         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
14670         fail. Patch by Dieter Bremes
14671
14672 2005-11-30  Jackson Harper  <jackson@ximian.com>
14673
14674         * Form.cs: Property is 2.0 only
14675         * PrintDialog.cs: Signature fix.
14676
14677 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14678
14679         * TextControl.cs: 
14680           - No longer artificially moves text 2 pixels down (now that we have
14681             borders this is no longer needed)
14682           - Added calcs for left, hanging and right indent
14683
14684 2005-11-23  Mike Kestner  <mkestner@novell.com>
14685
14686         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
14687
14688 2005-11-30  Jackson Harper  <jackson@ximian.com>
14689
14690         * MdiChildContext.cs: Set the cloned menus forms, as these don't
14691         get cloned as part of CloneMenu ().
14692         * Menu.cs: Make sure the parent of the items get set correctly
14693         when they are added.  And the owners are notified of the changes.
14694         * Form.cs: Create an ActiveMenu property, so that when MDI is used
14695         we can change the menu being displayed/handled by the form without
14696         changing the menu assosciated with the form.
14697         - Don't let Mdi children draw/handle menus.
14698         
14699 2005-11-30  Jackson Harper  <jackson@ximian.com>
14700
14701         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
14702         a MenuChanged event. Just to make the API a little more
14703         consistent.
14704         * MainMenu.cs:
14705         * MenuItem.cs: Use the new OnMenuChanged
14706         * MdiChildContext.cs: Handle menu merging.
14707         * Form.cs: Implement MergedMenu.
14708         
14709 2005-11-30  Jackson Harper  <jackson@ximian.com>
14710
14711         * Menu.cs: We were misusing Add. Add goes behind the specified
14712         index according to the docs, and does not replace the specified
14713         index. So I added an Insert method.
14714
14715 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
14716
14717         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
14718           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
14719           is for Jackson
14720         * RichTextBox.cs: Added calls to base for DnD events
14721
14722 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
14723
14724         * TextControl.cs:
14725           - Fixed drag-selection related crash; style fixes
14726           - Implemented undo class
14727             o Implemented method to capture document state for specified
14728               range in document tree
14729             o Implemented method to restore captured document state
14730             o Implemented cursor tracking
14731             o Implemented basic undo stack
14732           - Added undo cursor tracking to methods altering cursor location
14733           - Added undo tracking to selection deletion (still missing
14734             other text-altering hookups)
14735         * RichTextBox.cs:
14736           - Added SelectionLength property
14737           - Implemented CanPaste()
14738           - Implemented Paste()
14739           - Added missing protected methods
14740           - Fixed RTF->Document conversion; now uses font index 0 and color 
14741             index 0 as the default font for the parsed text
14742           - Fixed RTF<->Document font size translation
14743           - Fixed RTF generation, now properly handles cross-tag boundaries
14744             for single line selection
14745           - No longer always appends blank line to generated RTF
14746           - Removed TODOs
14747           - Added missing attributes
14748           - Hooked up undo-related methods
14749         * TextBoxBase.cs:
14750           - Implemented Copy()
14751           - Implemented Paste()
14752           - Implemented Cut()
14753           - Fixed caret mis-behaviour on backspace across line-boundaries
14754
14755 2005-11-29  Jackson Harper  <jackson@ximian.com>
14756
14757         * MdiClient.cs: Add a method for activating mdi children. Very
14758         basic right now. I imagine someday it might need more girth.
14759         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
14760         children windows names are added to the menu item.
14761         * ThemeWin32Classic.cs: Draw the arrow if the item is an
14762         mdilist. This happens regardless of whether or not there are any
14763         mdi windows to see in the list, and according to my tests happens
14764         before the items are even added. Also happens if there isn't even
14765         an mdi client to get windows from.
14766
14767 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
14768
14769         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
14770         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
14771
14772 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
14773
14774         * DataGridTableStyle.cs:
14775           - Create always the styles for the missing columns even if they are
14776             provided by the user (not default table style)
14777         * DataGrid.cs:
14778           - Fixes bug 76770
14779           - Fixes SetDataBinding (always re-attach source)
14780           - Fixes SetNewDataSource (only clear styles if they are not for 
14781             this source)
14782          -  Expands OnTableStylesCollectionChanged to handle style refresh 
14783             and remove properly
14784
14785 2005-11-29  Jackson Harper  <jackson@ximian.com>
14786
14787         * FileDialog.cs: Implement missing bits, remove some dead
14788         code.
14789         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
14790         creation of the panel so that the options set on the dialog are
14791         seen when the panel is created.
14792         * TreeView.cs: raise a click when items are clicked.
14793         
14794 2005-11-29  Jackson Harper  <jackson@ximian.com>
14795
14796         * MdiClient.cs: Pass some signature methods through to base.
14797
14798 2005-11-28  Jackson Harper  <jackson@ximian.com>
14799
14800         * ListView.cs: Raise the click event when items are clicked.
14801
14802 2005-11-28  Jackson Harper  <jackson@ximian.com>
14803
14804         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
14805         a nullref.
14806
14807 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
14808
14809         * ThemeNice.cs: - Removed 1 pixel bitmaps
14810           - Use SmoothingMode.AntiAlias where it makes sense
14811             (ScrollButton arrow for example)
14812           - Enhanced Button focus drawing
14813           - Fixed ComboBox drawing (no artefacts anymore, focus
14814             rectangle is back again, reduced size of ComboButton, etc.)
14815           - Fixed RadioButton focus drawing for Appearence.Button
14816           - Slight ScrollButton redesign
14817           - Some LinearGradientBrush size fixes
14818           - GroupBoxes have now rounded edges
14819           - Fixed StatusBar drawing
14820
14821 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
14822
14823         * ThemeNice.cs: - Remove dead code
14824           - use correct background colors for menus, etc.
14825           - Fake pixel drawing with 1 pixel bitmaps
14826
14827 2005-11-24  Jackson Harper  <jackson@ximian.com>
14828
14829         * MdiClient.cs: Size the scrollbars when resizing the window.
14830         - Resize the maximized windows when the client is resized
14831         * Form.cs: Make the child context available
14832         
14833 2005-11-23  Jackson Harper  <jackson@ximian.com>
14834
14835         * MdiChildContext.cs: Don't size windows if they are maximized.
14836
14837 2005-11-23  Mike Kestner  <mkestner@novell.com>
14838
14839         * ContextMenu.cs: use MenuTracker.
14840         * Control.cs: remove menu handle usage.
14841         * Form.cs: remove menu handle usage.
14842         * Hwnd.cs: remove menu handle usage.
14843         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
14844         motion and clicks to the new Tracker handlers.
14845         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
14846         and handle usage.
14847         * MenuAPI.cs: refactored to combine popup and menubar event handling.
14848         Killed the MENU and MENUITEM data types and associated collections
14849         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
14850         MenuTracker class that exposes the leftovers from the old MenuAPI
14851         static methods. Restructured Capture handling so that only one grab is
14852         done for the entire menu hierarchy instead of handing off grabs to
14853         submenus. Tracker now has an invisible control to Capture when active.
14854         * MenuItem.cs: add sizing accessors, kill Create
14855         and handle usage.
14856         * Theme.cs: remove menu handle and MENU(ITEM) usage.
14857         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
14858         MENU(ITEM). remove menu handle usage, use Menu directly.
14859         * XplatUIDriver.cs: remove menu handle usage.
14860         * XplatUIOSX.cs: remove menu handle usage.
14861         * XplatUIWin32.cs: remove menu handle usage.
14862         * XplatUIX11.cs: remove menu handle usage.
14863
14864 2005-11-22  Jackson Harper  <jackson@ximian.com>
14865
14866         * Hwnd.cs: Don't compute the menu size for
14867         DefaultClientRectangle.
14868         - Reenable menu sizes being computed for GetClienRectangle.
14869         * Form.cs: Remove comment of trechery
14870         
14871 2005-11-22  Jackson Harper  <jackson@ximian.com>
14872
14873         * Hwnd.cs: The adjustments for the menu bar are made when it is
14874         attached to the form.
14875
14876 2005-11-19  Jackson Harper  <jackson@ximian.com>
14877
14878         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
14879         (just like on windows).
14880
14881 2005-11-19  Jackson Harper  <jackson@ximian.com>
14882
14883         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
14884         use real buttons anymore because they are in non client area. The
14885         one TODO here is that I need to somehow invalidate a section of
14886         the non client area.
14887
14888 2005-11-18  Jackson Harper  <jackson@ximian.com>
14889
14890         * Control.cs: Put the enum check back in now that MDI doesnt have
14891         to use this to set border styles.
14892         * Form.cs: Only set mdi child windows borders if the handle has
14893         been created.
14894         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
14895         this directly on to the driver.
14896         - Get the move start position before adjusting for the titlebar
14897         height, this fixes the windows "skipping" when they are first
14898         moved.
14899
14900 2005-11-18  Jackson Harper  <jackson@ximian.com>
14901
14902         * XplatUIX11.cs: Just compute the mdi borders separately as they
14903         don't totally match up with normal form borders.
14904
14905 2005-11-18  Jackson Harper  <jackson@ximian.com>
14906
14907         * Control.cs: Set WS_ styles for borders, so that the driver does
14908         not have to retrieve the control instance to figure out what kind
14909         of borders it should have.
14910         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
14911         driver can know its an mdi child easily.
14912         * XplatUIX11.cs: Get the border styles and whether the window is
14913         MDI from the Styles and ExStyles params instead of having to get a
14914         control. This prevents a chicken and egg problem.       
14915
14916 2005-11-18  Jackson Harper  <jackson@ximian.com>
14917
14918         * MdiClient.cs: Fix typo so scrollbars show up correctly.
14919
14920 2005-11-18  Jackson Harper  <jackson@ximian.com>
14921
14922         * MdiClient.cs: Calculate when to add and remove scrollbars
14923         correctly.
14924         * MdiChildContext.cs: Adjust the y position to take the titlebar
14925         into account.
14926         - No height for FormBorderStyle.None
14927
14928 2005-11-18  Jackson Harper  <jackson@ximian.com>
14929
14930         * Control.cs: Allow non enum values to be used for
14931         InternalBorderStyle.  MDI does this to set a special border style.
14932         - New utility methods for converting points to/from client coords
14933         - Add the newly created control to the Controls collection before
14934         updating its style. This way UpdateStyle can walk the control
14935         heirarchy to find the control if needed.
14936         so I don't need to create a new Point object all the time.
14937         * Form.cs: Let MDI windows handle their border styles.
14938         - Set styles on MDI windows so the correct title style is derived.
14939         * MdiChildContext.cs: Move all the painting and window handling
14940         into the non client area.
14941         - Use correct sizing and put correct buttons on frames based on
14942         the FormBorderStyle.
14943         - Notify the mdi client about scrolling
14944         - Need to handle the buttons ourselves now, because they are all
14945         in non client areas and we can't add controls there.
14946         * MdiClient.cs: Halfway to scrolling, this implementation is
14947         somewhat broken though, we need to check to make sure other
14948         windows aren't causing scrolling before removing the bars. Also
14949         the bars need to be drawn on top, maybe I can switch implicit
14950         controls to be on top.
14951         * Hwnd.cs: caption_height and tool_caption_height are now
14952         properties of an hwnd, this way they can be set by the driver
14953         based on the type of window they are.  In X11 the window manager
14954         handles the decorations so caption_height is zero unless its an
14955         MDI window.
14956         - Add 3 pixel borders for MDI windows (0xFFFF).
14957         - Get rid of some code duplication, have DefaultClientRectanle
14958         just call GetClientRectangle.
14959         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
14960         Hwnd now.
14961         - Set border styles differently for mdi windows.
14962         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
14963         Hwnd now.
14964         
14965 2005-11-15  Mike Kestner  <mkestner@novell.com>
14966
14967         * Menu.cs: when adding an item to the collection, if item is already 
14968         parented, remove it from the parent.
14969
14970 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
14971
14972         * X11DesktopColors.cs: Added KDE support
14973
14974 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
14975
14976         * XplatUIWin32.cs: 
14977           - Clipboard methods now can translate Rtf format
14978           - No longer removes clipboard contents whenever a new format is added
14979             to allow placing multiple formats on the clipboard
14980         * Clipboard.cs: Clipboard now supports getting a IDataObject and
14981           will place all formats contained in it onto the clipboard. Also
14982           now cleans the clipboard before placing a new object onto it
14983         * RichTextBox.cs:
14984           - Implemented set_Rtf
14985           - Implemented set_SelectedRtf
14986           - Created InsertRTFFromStream() method to allow single code base
14987             for all properties and methods that insert RTF into document
14988           - Removed debug output
14989         * TextControl.cs:
14990           - Fixed Delete(int) to fix up line numbers
14991           - Fixed ReplaceSelection to combine start and end line
14992           - Fixed serious DeleteChars bug that would leave the document tree
14993             broken
14994           - Improved DumpTree with several logic checks to detect broken
14995             document trees
14996           - Removed debug lines
14997           - Fixed Caret.WordForward/WordBack moving code, now always also 
14998             updates caret.tag (fixes crash when word-selecting across tag
14999             boundaries via keyboard)
15000           - Added Insert() method for inserting multiline text into documents
15001           - Fixed DeleteChars() calculation errors that would cause a broken
15002             tag chain with multiple tag lines
15003           - DeleteChars() no longer crashes on multi-tag lines if not all tags
15004           - Split() no longer moves caret if split is at caret location
15005           - ReplaceSelection() now updates the cursor and re-displays it
15006           - ReplaceSelection() now uses new Insert() method to avoid code
15007             duplication
15008           - FormatText() can now handle formatting partial lines
15009         * TextBoxBase.cs:
15010           - Append now uses new TextControl.Insert() method (this avoids 
15011             duplicate code)
15012           - Implemented Ctrl-X (Cut) (
15013           - Implemented Ctrl-C (Copy)
15014           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
15015             regeneration when pasting text; roundtripping Copy&Paste within
15016             edit control still fails due to some calculation bugs in GenerateRTF)
15017           - The Delete key will now remove the current selection if it is visible
15018         * TextBox.cs: Removed debug lines
15019         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
15020           driver to be initialized and can't therefore be done via a static ctor)
15021
15022 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
15023
15024         * TextControl.cs: Added backend code for finding char arrays and strings
15025         * TextBoxBase.cs:
15026           - Added mouse wheel scroll support
15027           - Added support for VScroll and HScroll events
15028         * RichTextBox.cs:
15029           - Implemented all seven Find() variants
15030           - Implemented GetCharFromPosition()
15031           - Implemented GetCharIndexFromPosition()
15032           - Implemented GetLineFromIndex()
15033           - Implemented GetPositionFromCharIndex();
15034           - Implemented SaveFile for PlainText and UnicodeText
15035           - Fixed set_Font, now setting a new font applies that font to
15036             the whole document
15037           - Implemented generic Document to RTF converter
15038           - Implemented SaveFile for RichText format (still missing unicode
15039             conversion for non-ansi chars)
15040           - Implemented get_Rtf
15041           - Implemented get_SelectedRtf
15042
15043 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
15044
15045         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
15046           to allow any captures to be released before triggering OnClick. This
15047           way a click handler may capture the mouse without interference.
15048         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
15049           This way we send them even though X may not allow a grab (if the window
15050           isn't visible, for example)
15051
15052 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
15053
15054         * DataGridViewRowEventArgs.cs: DataGridView implementation
15055         * DataGridViewElement.cs: DataGridView implementation
15056         * DataGridViewComboBoxCell.cs: DataGridView implementation
15057         * DataGridViewDataErrorContexts.cs: DataGridView implementation
15058         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
15059         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
15060         * ImageLayout.cs: DataGridView implementation
15061         * DataGridViewComboBoxColumn.cs: DataGridView implementation
15062         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
15063         * DataGridViewSelectionMode.cs: DataGridView implementation
15064         * IDataGridViewEditingControl.cs: DataGridView implementation
15065         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
15066         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
15067         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
15068         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
15069         * DataGridViewColumnSortMode.cs: DataGridView implementation
15070         * DataGridView.cs: DataGridView implementation
15071         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
15072         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
15073         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
15074         * Padding.cs: DataGridView implementation
15075         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
15076         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
15077         * DataGridViewRowEventHandler.cs: DataGridView implementation
15078         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
15079         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
15080         * DataGridViewButtonCell.cs: DataGridView implementation
15081         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
15082         * DataGridViewEditMode.cs: DataGridView implementation
15083         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
15084         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
15085         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
15086         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
15087         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
15088         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
15089         * DataGridViewCellEventHandler.cs: DataGridView implementation
15090         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
15091         * DataGridViewCellStyleConverter.cs: DataGridView implementation
15092         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
15093         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
15094         * DataGridViewColumnEventArgs.cs: DataGridView implementation
15095         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
15096         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
15097         * QuestionEventArgs.cs: DataGridView implementation
15098         * IDataGridViewEditingCell.cs: DataGridView implementation
15099         * DataGridViewTriState.cs: DataGridView implementation
15100         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
15101         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
15102         * DataGridViewColumnCollection.cs: DataGridView implementation
15103         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
15104         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
15105         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
15106         * DataGridViewColumn.cs: DataGridView implementation
15107         * DataGridViewCellBorderStyle.cs: DataGridView implementation
15108         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
15109         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
15110         * DataGridViewRow.cs: DataGridView implementation
15111         * DataGridViewImageCellLayout.cs: DataGridView implementation
15112         * DataGridViewImageCell.cs: DataGridView implementation
15113         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
15114         * DataGridViewCheckBoxCell.cs: DataGridView implementation
15115         * DataGridViewHeaderCell.cs: DataGridView implementation
15116         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
15117         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
15118         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
15119         * DataGridViewTextBoxColumn.cs: DataGridView implementation
15120         * QuestionEventHandler.cs: DataGridView implementation
15121         * DataGridViewCellStyleScopes.cs: DataGridView implementation
15122         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
15123         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
15124         * DataGridViewCell.cs: DataGridView implementation
15125         * DataGridViewCellEventArgs.cs: DataGridView implementation
15126         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
15127         * DataGridViewCellStyle.cs: DataGridView implementation
15128         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
15129         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
15130         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
15131         * TextFormatFlags.cs: DataGridView implementation
15132         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
15133         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
15134         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
15135         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
15136         * DataGridViewButtonColumn.cs: DataGridView implementation
15137         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
15138         * HandledMouseEventArgs.cs: DataGridView implementation
15139         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
15140         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
15141         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
15142         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
15143         * DataGridViewRowCollection.cs: DataGridView implementation
15144         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
15145         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
15146         * DataGridViewHitTestType.cs: DataGridView implementation
15147         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
15148         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
15149         * DataGridViewColumnEventHandler.cs: DataGridView implementation
15150         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
15151         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
15152         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
15153         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
15154         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
15155         * DataGridViewContentAlignment.cs: DataGridView implementation
15156         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
15157         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
15158         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
15159         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
15160         * DataGridViewPaintParts.cs: DataGridView implementation
15161         * DataGridViewCellCollection.cs: DataGridView implementation
15162         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
15163         * DataGridViewImageColumn.cs: DataGridView implementation
15164         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
15165         * DataGridViewElementStates.cs: DataGridView implementation
15166         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
15167         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
15168         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
15169         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
15170         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
15171         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
15172         * DataGridViewRowHeaderCell.cs: DataGridView implementation
15173         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
15174         * DataGridViewTextBoxCell.cs: DataGridView implementation
15175         * DataGridViewBand.cs: DataGridView implementation
15176         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
15177         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
15178         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
15179         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
15180         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
15181         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
15182         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
15183         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
15184         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
15185         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
15186         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
15187
15188 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
15189
15190         * ThemeWin32Classic.cs: 
15191           - Draw the outside focus rectangle around buttons
15192           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
15193             doesn't use end caps for every dash of a line anymore. This
15194             workaround ignores the forecolor.
15195
15196 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
15197
15198         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
15199           endian safe.
15200
15201 2005-11-07  Jackson Harper  <jackson@ximian.com>
15202
15203         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
15204
15205 2005-11-07  Jackson Harper  <jackson@ximian.com>
15206
15207         * ScrollableControl.cs: Calculate the maximum and change vars
15208         (more) correctly so that scrollbars appear as a sensible size.
15209
15210 2005-11-04  Jackson Harper  <jackson@ximian.com>
15211
15212         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
15213         collection.
15214         * TreeView.cs: When the tree is sorted null out the top_node so
15215         that it is recalculated.
15216         - Use dotted lines instead of dashed lines to match MS better.
15217
15218 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
15219
15220         * ListView.cs: 
15221           - Implements key search for items. Useful when browsing files with FileDialog
15222           - When changing view mode or when clear the items reset scrollbar positions
15223
15224 2005-11-04  Jackson Harper  <jackson@ximian.com>
15225
15226         * CurrencyManager.cs: Implement the MetaDataChanged event, the
15227         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
15228         as to what the method may do as there is no real way of creating a
15229         derived CurrencyManager and calling the method. 
15230
15231 2005-11-03  Jackson Harper  <jackson@ximian.com>
15232
15233         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
15234         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
15235         method which seems to just be used internally to refresh the tabs.
15236
15237 2005-11-03  Jackson Harper  <jackson@ximian.com>
15238
15239         * TabControl.cs: Implement the remove method. Fix some broken
15240         comments.
15241
15242 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15243
15244         * DateTimePicker.cs:
15245           - Added missing DateTimePickerAccessibleObject class
15246           - Added missing events
15247           - Added OnFontChanged method
15248         * Form.cs: Added missing attributes
15249         * TreeView.cs: Added missing attributes
15250
15251 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
15252
15253         * GridItemCollection.cs: Fix signatures
15254
15255 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15256
15257         * XplatUI.cs: Updated build rev/date
15258         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
15259           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
15260         * Application.cs: Trigger context-specific ExitThread events
15261
15262 2005-11-03  Jackson Harper  <jackson@ximian.com>
15263
15264         * Menu.cs:
15265         * MainMenu.cs:
15266         * GridTableStylesCollection.cs:
15267         * Timer.cs:
15268         * TabPage.cs:
15269         * HelpProvider.cs:
15270         * StatusBar.cs:
15271         * MonthCalendar.cs: Signature fixes
15272
15273 2005-11-03  Jackson Harper  <jackson@ximian.com>
15274
15275         * TreeNodeCollection.cs: Remove should not be virtual.
15276         * TreeView.cs: Implement the last of the missing methods.
15277
15278 2005-11-03  Jackson Harper  <jackson@ximian.com>
15279
15280         * TreeNodeConverter.cs: Implement to get off my class-status back.
15281
15282 2005-11-03  Jackson Harper  <jackson@ximian.com>
15283
15284         * TreeView.cs: Hookup the bits for drag and drop.
15285         * TreeNode.cs: Don't cache the tree_view or index anymore, now
15286         that nodes can be moved from tree to tree easily this just causes
15287         all sorts of problems.
15288         * TreeNodeCollection: Don't need to give treenodes an index and
15289         treeview anymore when they are added, these are computed on the
15290         fly. Also make sure to remove a node before its added.
15291
15292 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
15293
15294         * TextControl.cs:
15295           - Added CaretSelection enum
15296           - Added comparison methods to Marker struct, makes selection code
15297             more readable
15298           - Added SelectionStart and SelectionEnd as 'moveable' location for
15299             the CaretDirection enum and handler
15300           - Added selection_prev variable to track optimized invalidation for
15301             word and line selection
15302           - Added SelectionVisible property (returns true if there is a valid 
15303             selection)
15304           - Switched CaretHasFocus to only display the caret if there is no
15305             visible selection
15306           - Avoiding StringBuilder.ToString to retrieve a single char, instead
15307             using the direct character index; should be much faster
15308           - Added various conditional debug statements
15309           - Fixed invalidation calculation for selection ranges
15310           - Added ExpandSelection() method to support word and line selection
15311           - Switched SetSelectionToCaret to use new Marker compare overloads
15312           - Added central IsWordSeparator() method to determine word 
15313             separators/whitespace and FindWordSeparator() to streamline common
15314             usage of IsWordSeparator()
15315         * TextBoxBase.cs:
15316           - Removed unneeded grabbed variable, it was just mirroring
15317             Control.Capture
15318           - No longer firing OnTextChanged event when Text setter is called,
15319             since the base will fire the event for us
15320           - Added handling of Ctrl-Up/Down selection
15321           - Added handling of Shift-Cursorkey selection
15322           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
15323             words
15324           - Added handling of Shift and Ctrl-Shift-Home/End selection
15325           - Removed some debug output
15326           - Added handling for single/double/tripple-click to place caret/
15327             select word/select line respectively (Fixes bug #76031)
15328           - Added support for drag expansion of word/line selection
15329         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
15330           current selection
15331
15332 2005-11-02  Jackson Harper  <jackson@ximian.com>
15333
15334         * X11Dnd.cs: If the drag is going to and from a MWF window just
15335         copy the data instead of sending it out through the X Selection
15336         mechanism.
15337
15338 2005-11-02  Jackson Harper  <jackson@ximian.com>
15339
15340         * X11Dnd.cs:
15341         * XplatUIX11.cs: When in a drag we don't want motion notify
15342         messages to get passed on to the other controls. This prevents
15343         mouse move messages from showing up in the drag source.
15344
15345 2005-11-02  Jackson Harper  <jackson@ximian.com>
15346
15347         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
15348         the correct button is release to end a drag.
15349         * XplatUIX11.cs: Make the button state internal so the drag system
15350         can access it.  Dragging needs to know about all button releases,
15351         not just left button.
15352
15353 2005-11-02  Miguel de Icaza  <miguel@novell.com>
15354
15355         * Form.cs (Icon): If the icon is null, reset the icon to the
15356         default value. 
15357
15358         * Cursor.cs: When writing the AND-mask bitmap do not include the
15359         number of colors, but hardcode those to two (black and white),
15360         fixes the loading of color cursors (Paint Dot Net).
15361
15362         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
15363         turn off autoscaling.
15364
15365         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
15366
15367 2005-11-02  Jackson Harper  <jackson@ximian.com>
15368
15369         * X11Dnd.cs: Make sure to send a status message if the pointer
15370         enters a control that can not accept a drop, otherwise the cursor
15371         isn't updated correctly. Also tried to compress the lines of code
15372         a bit.
15373
15374 2005-11-02  Jackson Harper  <jackson@ximian.com>
15375
15376         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
15377         set actions correctly.  This isn't perfect as XDND and win32 have
15378         some differences on how you allow actions. I'll clear this up by
15379         adding a path for drag from MWF to MWF windows.
15380         * XplatUIX11.cs: Hook into the dnd system.
15381
15382 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
15383
15384         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
15385         previously shown but they are no longer need it. Very obvious when 
15386         browsing files with FileDialog.
15387
15388 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
15389
15390         * Control.cs: We always need to call OnPaintBackground. We pretty much
15391           ignore AllPaintingInWmPaint and always do the painting there, whether 
15392           it's set or not, since we always ignore the WM_ERASEBKGND message 
15393           (which we don't generate on X11). This fixes #76616.
15394         * Panel.cs: Removed unneeded background painting. This happens properly
15395           in Control.cs already
15396
15397 2005-10-31  Mike Kestner  <mkestner@novell.com>
15398
15399         * Menu.cs: Add items to collection before setting their index.
15400         * MenuItem.cs : add range checking with ArgumentException like MS.
15401         [Fixes #76510]
15402
15403 2005-10-31  Jackson Harper  <jackson@ximian.com>
15404
15405         * ListBox.cs: Invalidate if the area is visible at all not just
15406         contained in the visible rect. Fixes unselection of semi visible
15407         items.
15408
15409 2005-10-31  Jackson Harper  <jackson@ximian.com>
15410
15411         * Control.cs: Consistently name the dnd methods. Make them
15412         internal so we can override them to match some MS behavoir
15413         internally.
15414         * Win32DnD.cs: Use the new consistent names.
15415
15416 2005-10-31  Jackson Harper  <jackson@ximian.com>
15417
15418         * TreeView.cs: Don't draw the selected node when we lose focus.
15419
15420 2005-10-31  Jackson Harper  <jackson@ximian.com>
15421
15422         * X11Dnd.cs: We still need to reset the state even though a full
15423         reset isn't being done, otherwise status's still get sent all over
15424         the place.
15425
15426 2005-10-31  Jackson Harper  <jackson@ximian.com>
15427
15428         * Control.cs: Make the dnd_aware flag internal so the dnd
15429         subsystem can check it. Catch exceptions thrown in dnd handlers to
15430         match MS behavoir.
15431         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
15432         * X11Dnd.cs: Handle null data in the converters. Set the XDND
15433         version when sending a XdndEnter. Use the control/hwnd dnd_aware
15434         flags to reduce the number of dnd enters/status's sent.
15435
15436 2005-10-31  Jackson Harper  <jackson@ximian.com>
15437
15438         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
15439
15440 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
15441
15442         * PictureBox.cs: Fixes 76512
15443
15444 2005-10-28  Jackson Harper  <jackson@ximian.com>
15445
15446         * X11Dnd.cs: Early implementation to support winforms being a drag
15447         source for data on X11. Also restructured the converters so they
15448         can go both ways now.
15449         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
15450         
15451 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
15452
15453         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
15454           clipboard requests
15455
15456 2005-10-27  Jackson Harper  <jackson@ximian.com>
15457
15458         * TreeNode.cs: Implement serialization so my DnD examples will work.
15459
15460 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
15461
15462         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
15463           TreeView.cs: Don't dispose objects that are not owned.
15464           
15465 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
15466
15467         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
15468           should retrieve the current cursor and report that, but XplatUI
15469           doesn't (yet) have an interface for that (and I'm not sure I even
15470           can, on X11)
15471         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
15472           until any message loop processing is done (and the WM_SETCURSOR
15473           replaces the cursor to the proper one)
15474         * XplatUIX11.cs: 
15475           - Fixed override behaviour, we can't set the cursor globally on X11, 
15476             just for our windows.
15477           - Invalidating the System.Drawing X11 display handle when we are
15478             shutting down
15479         * Control.cs: Fix to make csc happy
15480
15481 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
15482
15483         * TextBoxBase.cs: 
15484           - get_Text: Add last line (without trailing newline) to returned
15485             value (Fixes 76212)
15486           - get_TextLength: Count last line in returned length
15487           - ToString: Call Text property instead of duplicating code
15488
15489 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
15490
15491         * ImageList.cs: Dispose ImageAttributes objects.
15492
15493 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
15494
15495         * ImageList.cs: Use attribute constructors with less arguments where
15496           possible.
15497
15498 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
15499
15500         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
15501           Use typeof instead of strings when assembly is referenced. Added
15502           some more comments.
15503
15504 2005-10-21  Jackson Harper  <jackson@ximian.com>
15505
15506         * ListView.cs: Raise a double click event. Also tried to somewhat
15507         fix when the selectedindexchanged event is raised. Its still
15508         broken though.
15509
15510 2005-10-21  Jackson Harper  <jackson@ximian.com>
15511
15512         * TreeView.cs: New method to invalidate the plus minus area of a
15513         node without invalidating the whole node (maybe this can be used
15514         in some more places).
15515         * TreeNodeCollection.cs: When adding to an empty node we need to
15516         invalidate its plus minus area so the little block shows up.
15517         
15518 2005-10-21  Jackson Harper  <jackson@ximian.com>
15519
15520         * TreeView.cs: Make sure that when we invalidate a node the bounds
15521         are big enough to cover the selected box and the focus
15522         rectangle. Use a different colour for the lines connecting nodes
15523         so they show up with all themes.
15524
15525 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
15526
15527         * NativeWindow.cs: Don't call anything that could call into the driver,
15528           we might be on a different thread.
15529
15530 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
15531
15532         * Control.cs(Dispose): Since Dispose might run on a different thread,
15533           make sure that we call methods that could call into the driver via
15534           invoke, to avoid thread issues
15535
15536 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
15537
15538         * XplatUI.cs: Removed finalizer
15539         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
15540           not allowing to be called on the finalizer thread.
15541
15542 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
15543
15544         * ImageList.cs:
15545           - Reverted r51889 and r51891.
15546           - Added ImageListItem class that stores unmodified image items and image
15547             properties required to create list images until handle is created.
15548           - Added AddItem and moved image creation logic to AddItemInternal.
15549           - Added CreateHandle method that creates images based on unmodified items.
15550           - Added DestroyHandle that changes state to store unmodified items.
15551           - Add and AddStrip methods no more create handle.
15552           - ReduceColorDepth has no return value.
15553           - Dispose destroys handle.
15554           - Modified other methods to reflect the above changes.
15555           - Implemented key support.
15556           - Added profile 2.0 members and attributes.
15557           - Added private Reset and ShouldSerialize methods that provide the same
15558             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
15559             them as they are private.
15560           - Added some more comments about implementation details.
15561
15562 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15563
15564         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
15565
15566 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15567
15568         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
15569
15570 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
15571
15572         * DataGridDrawingLogic.cs: Fixes column hit calcultation
15573         * DataGridColumnStyle.cs: Remove debug message
15574
15575 2005-10-20  Jackson Harper  <jackson@ximian.com>
15576
15577         * TreeView.cs: We can always get input keys regardless of whether
15578         or not editing is enabled. They are used for navigation.
15579
15580 2005-10-20  Jackson Harper  <jackson@ximian.com>
15581
15582         * TreeNode.cs: Use the viewport rect for determining if a node
15583         needs to be moved for visibility. Don't use Begin/End edit. This
15584         calls a full refresh when its done.
15585         * TreeView.cs: New SetBottom works correctly.  Make the viewport
15586         rect property internal so the treenodes can see it. When clicking
15587         on a node we need to ensure that its visible because it might just
15588         be partly visible when clicked.
15589
15590 2005-10-20  Jackson Harper  <jackson@ximian.com>
15591
15592         * TreeNodeCollection.cs: Remove debug code.
15593
15594 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
15595
15596         * Datagrid.cs: Implements column sorting in Datagrid
15597         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
15598
15599 2005-10-20  Jackson Harper  <jackson@ximian.com>
15600
15601         * TreeNodeCollection.cs: Remove items properly. Update the correct
15602         area after removing them.
15603
15604 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
15605
15606         * Datagrid.cs: Should not call base.OnPaintBackground
15607
15608 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
15609
15610         * XplatUIX11.cs (GetMessage):
15611           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
15612             window instead of client window
15613           - Now properly calculates NC_xBUTTONUP message coordinates
15614           - ScreenToMenu now properly calculates it's coordinates of whole 
15615             window, since menus are in the whole window, not in the client
15616             window
15617           - Added WholeToScreen coordinate translation method
15618
15619 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
15620
15621         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
15622           want to return a message, loop back to the beginning of the function
15623           and grab the next real message to process instead.
15624
15625 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
15626
15627         * Splitter.cs: Properly set limits if no filler control is used
15628
15629 2005-10-19  Jackson Harper  <jackson@ximian.com>
15630
15631         * ColorDialog.cs: Don't show the help button if it is not enabled
15632         instead of disabling it (this is what MS does). Don't create the
15633         panel until the dialog is run, otherwise the vars (such as
15634         ShowHelp) are not set yet.
15635
15636 2005-10-19  Jackson Harper  <jackson@ximian.com>
15637
15638         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
15639         are reduced when adding nodes.
15640         * TreeNode.cs:
15641         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
15642         tree.
15643         
15644 2005-10-19  Jackson Harper  <jackson@ximian.com>
15645
15646         * FolderBrowserDialog.cs: End editing our treeview so the window
15647         actually gets refreshed.
15648
15649 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
15650
15651         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
15652           Obsoleted handling of WM_ERASEBKGND, now always draws our background
15653           inside of WM_PAINT
15654
15655 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15656
15657         * MenuAPI.cs: Returns after Hidding window
15658         * XplatUIX11.cs: Added TODO found while debugging menu issues
15659
15660 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
15661
15662         * XplatUIX11.cs: Do not re-map the whole window when it's size
15663           becomes non-zero unless it's supposed to be actually visible
15664
15665 2005-10-18  Jackson Harper  <jackson@ximian.com>
15666
15667         * TreeView.cs: We don't need to keep a count anymore.
15668         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
15669         use the Grow method.
15670
15671 2005-10-18  Jackson Harper  <jackson@ximian.com>
15672
15673         * TreeNodeCollection.cs: Insert is not supported on arrays, so
15674         implement it manually here.
15675
15676 2005-10-18  Jackson Harper  <jackson@ximian.com>
15677
15678         * ImageList.cs: Dont kill the list when the colour depth is
15679         changed, just change the colour depth of all the images.
15680         - Same goes for setting the image size. Just resize them all
15681         instead of killing the list softly.
15682
15683 2005-10-18  Jackson Harper  <jackson@ximian.com>
15684
15685         * Control.cs: Don't invalidate empty rectangles.
15686
15687 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15688
15689         * ListViewItem.cs:
15690           - Adds checked item to the Checked/Item lists (where empty before)
15691           - Do not add items to the Selected lists if they are already present
15692         * ListView.cs:
15693           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
15694           - When deleting items make sure that we delete them for the Selected
15695           and Checked list also.
15696
15697 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
15698
15699         * Label.cs: Dispose objects no longer used
15700         * ThemeWin32Classic.cs: Dispose objects no longer used
15701
15702 2005-10-18  Jackson Harper  <jackson@ximian.com>
15703
15704         * TabControl.cs: Don't refresh the whole control when the tabs are
15705         scrolled, we just need to refresh the tab area.
15706
15707 2005-10-17  Jackson Harper  <jackson@ximian.com>
15708
15709         * XplatUIX11.cs: Compress code a little bit. Only calculate the
15710         after handle when we need it.
15711
15712 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15713
15714         * Control.cs: When the parent size changes, recalculate anchor 
15715           positions. Partial fix for #76462
15716
15717 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
15718
15719         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
15720           drawn. Fixes #76462
15721
15722 2005-10-17  Jackson Harper  <jackson@ximian.com>
15723
15724         * MonthCalendar.cs: Don't create the numeric up down until our
15725         handle is created. Otherwise our handle is created in the
15726         constructor and we don't know if we are a WS_CHILD or WS_POPUP
15727         yet.
15728
15729 2005-10-17  Jackson Harper  <jackson@ximian.com>
15730
15731         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
15732         correctly.
15733
15734 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15735         * TreeNode.cs : small logical fix (was using local var instead of field)
15736         
15737 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15738
15739         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
15740
15741 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
15742
15743         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
15744
15745 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
15746
15747         * Control.cs: 
15748           - Re-implemented anchoring code. My first version was really broken.
15749             This fixes bug #76033. Unlike the previous implementation we will
15750             no longer have round errors since all numbers are calculated from
15751             scratch every time. Removed various anchor-related obsolete vars.
15752           - InitLayout no longer causes layout event firing and layout to be 
15753             performed
15754
15755 2005-10-16  Jackson Harper  <jackson@ximian.com>
15756
15757         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
15758         which was broken).
15759
15760 2005-10-16  Jackson Harper  <jackson@ximian.com>
15761
15762         * TabControl.cs: Remove debug code.
15763
15764 2005-10-16  Jackson Harper  <jackson@ximian.com>
15765
15766         * XEventQueue.cs: Increase the default queue size (very simple
15767         apps needed to grow the queue).
15768         * Hwnd.cs: No finalizer so we don't need to suppress
15769         finalization. Compute the invalid area manually so a new rectangle
15770         does not newto be created.
15771         * ScrollableControl.cs: Don't set any params (otherwise visibility
15772         isn't set correctly).
15773         * MdiChildContext.cs: New constructor takes the mdi parent so it
15774         doesn't have to be computed and avoids a crash on windows. Draw
15775         the window icon properly, and allow the text to be seen.
15776         * Form.cs: Use new MdiChildContext constructor. Make sure the
15777         child context isn't null in wndproc.
15778         * TabControl.cs: Don't set focus, this is muddling keyboard
15779         behavoir. Expand the tab rows when a window size increase will
15780         allow extra tabs to be seen. Don't allow tabs smaller than the
15781         width of a window to be scrolled out of view.
15782         * TreeNode.cs:
15783         * TreeView.cs: Use measure string to calculate a nodes width, the
15784         width is cached and only updated when the text or the font is
15785         changed. Don't check for expand/collapse clicks on the first level
15786         nodes if root lines are disabled.
15787         
15788 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
15789
15790         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
15791
15792 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15793
15794         * DataGridBoolColumn.cs: fixes warning
15795
15796 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
15797
15798         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
15799         to match more to match more precisely the MS Net behavior
15800
15801 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15802
15803         * Hwnd.cs: Added field to track if window is mapped
15804         * XplatUIX11.cs: 
15805           - Unmap windows if they become 0-size, re-map when 
15806             they are >0 again; fixes #76035
15807           - Re-set our error handler after initializing X11Desktop
15808             to override any error handlers Gtk or whatever was called
15809             may have set.
15810
15811 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
15812
15813         * CheckedListBox.cs: Removed unused vars
15814         * ListView.cs: Fixed signatures
15815         * RichTextBox.cs: Removed unused vars
15816         * TextBoxBase.cs: Removed unused vars
15817         * XplatUIWin32.cs: Removed unused vars
15818         * XplatUIX11.cs: Removed unused vars
15819         * XplatUI.cs: Updated version and date to latest published
15820
15821 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
15822
15823         * Cursor.cs: Added private .ctor to work around a bug in
15824           resourceset (Thanks to Geoff Norton for the help on this)
15825         * SplitterEventArgs.cs: Made fields accessible so we don't
15826           waste boatloads of objects and can reuse the same one
15827           in Splitter
15828         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
15829           any captions and borders when generating screen coordinates
15830         * Splitter.cs: Reimplemented control, now fully complete, uses
15831           rubberband drawing, supports and obeys all properties, has
15832           proper cursors
15833
15834 2005-10-13  Miguel de Icaza  <miguel@novell.com>
15835
15836         * Form.cs (Form): Setup default values for autoscale and
15837         autoscale_base_size;  Make these instance variables, not static
15838         variables. 
15839
15840         (OnLoad): on the first load, adjust the size of the form.
15841
15842 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
15843
15844         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
15845           width argument to DrawReversibleRectangle()
15846         * XplatUIWin32.cs, XplatUIX11.cs: 
15847           - Implemented width for DrawReversibleRectangle()
15848           - Added logic to DrawReversibleRectangle that recognizes a zero
15849             width or height and only draws a line in that situation
15850         
15851 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
15852
15853         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
15854         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
15855         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
15856           method (it uses our FosterParent window to get a graphics context)
15857
15858 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
15859
15860         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
15861           and SetWindowBackground methods
15862         * Control.cs:
15863           - Setting proper ControlStyles
15864           - We no longer call XplatUI.SetWindowBackground and XplatUI.
15865             EraseWindowBackground, instead we draw the window background
15866             ourselves in PaintControlBackground. This behaviour is
15867             required to match MS, where, when OnPaintBackground is not
15868             called, the background is not drawn.
15869           - Removed unneeded Refresh() in set_Text
15870         * Hwnd.cs: Dropped the ErasePending support. No longer needed
15871         * XplatUIX11.cs:
15872           - Created DeriveStyles method to translate from CreateParams to
15873             FormBorderStyle and TitleStyle, also handles BorderStyle (which
15874             matches FormBorderStyle enum values)
15875           - Consolidated SetHwndStyles and CalculateWindowRect border/title
15876             style calculations into single DeriveStyles method
15877           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
15878             from redrawing the whole window on any resize or expose.
15879           - Fixed CreateWindow usage of SetWindowValuemask. Before not
15880             all styles were applied to our whole/client window appropriately
15881           - Removed EraseWindowBackground() and SetWindowBackground() methods
15882           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
15883             no longer clear/redraw the background through X
15884           - Removed handling of erase_pending bit, we have no use for it (or
15885             so it seems)
15886         * XplatUIOSX.cs:
15887           - Removed generation and handling of WM_ERASEBKGND message
15888           - Removed EraseWindowBackground() and SetWindowBackground() methods
15889           - Removed handling of hwnd.ErasePending flag
15890         * XplatUIWin32.cs:
15891           - Removed EraseWindowBackground() and SetWindowBackground() methods
15892           - We no longer call EraseWindowBackground on PaintEventStart, we 
15893             ignore the fErase flag, erasing is handled in Control in the
15894             background handler
15895         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
15896           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
15897           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
15898           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
15899           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
15900           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
15901           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
15902
15903 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
15904
15905         * PropertyGrids.cs: Get sub properties
15906         * PropertyGridView.cs: Fix drawing code
15907
15908 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15909
15910         * ListBox.cs: Fixes 76383
15911
15912 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15913
15914         * DataGridTextBoxColumn.cs: Sets location and size before attachment
15915         * ThemeWin32Classic.cs: Fixes border drawing and calculations
15916         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
15917
15918
15919 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15920
15921         * ComboBox.cs: Fixes border drawing
15922
15923 2005-10-10  Miguel de Icaza  <miguel@novell.com>
15924
15925         * MimeIcon.cs: Ignore errors if the file can not be read.
15926
15927 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
15928
15929         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
15930          - Fixed border calculations
15931          - Fixed horizontal scrolling in single column listboxes
15932          - Fixed drawing issues
15933
15934 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
15935
15936         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
15937           FormBorderStyle enum
15938         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
15939           code to determine FormBorderStyles from CreateParams
15940         * Form.cs:
15941           - Fixed bug where we'd set the wrong window styles if we were
15942             not creating an MDI window
15943           - Added call to XplatUI.SetBorderStyle when form borders are set
15944         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
15945         * Hwnd.cs:
15946           - Removed obsolete edge style
15947           - Switched from BorderStyle to FormBorderStyle
15948         
15949 2005-10-10  Jackson Harper  <jackson@ximian.com>
15950
15951         * Form.cs: Use the property to get the window handle instead of
15952         accessing it directly. Prevents a null reference exception.
15953
15954 2005-10-10  Jackson Harper  <jackson@ximian.com>
15955
15956         * TreeView.cs: Don't adjust the rect given to DrawString now that
15957         our libgdiplus draws correctly.
15958
15959 2005-10-08  Jackson Harper  <jackson@ximian.com>
15960
15961         * TreeView.cs: Don't try to find the clicked on node if there are
15962         no nodes in the tree.
15963
15964 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
15965
15966         * RichTextBox.cs:
15967
15968           restore
15969
15970 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
15971
15972         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
15973           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
15974           ErrorProvider.cs:
15975           Use ResPool for brushes and dispose System.Drawing objects that
15976           are not used anymore.
15977
15978 2005-10-07  Jackson Harper  <jackson@ximian.com>
15979
15980         * MdiChildContext.cs: Use the new borders instead of drawing them
15981         ourselves.
15982
15983 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
15984
15985         * Calling UpdateBounds after changing the window's BorderStyle 
15986         since the style can change the ClientSize
15987
15988 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
15989
15990         * Control.cs: Made PaintControlBackground virtual
15991         * Panel.cs: Overriding PaintControlBackground instead of using paint
15992           event; paint event method was interfering with 'real' users of the
15993           event.
15994
15995 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
15996
15997         * ThemeWin32Classic.cs: remove border drawing since it is handled
15998         by the base control class now and was causing double border drawing.
15999
16000 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16001
16002         * Panel.cs: Redraw our background on paint. Not a pretty solution,
16003           but it does seem to match MS behaviour. This fixes bug #75324
16004
16005 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16006
16007         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
16008           somewhat hackish looking
16009
16010 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16011
16012         * TextBoxBase.cs:
16013           - We now accept Enter even if AcceptEnter is false, if the containing
16014             form does not have an AcceptButton configured (fixes bug #76355)
16015           - Calculations are now fixed to no longer use Width/Height, but
16016             ClientSize.Width/Height, since we now support borders (this was
16017             a result of fixing borders and therefore bug #76166)
16018           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
16019             true (fixes bug #76354)
16020         
16021 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16022
16023         * Control.cs: 
16024           - Defaulting BorderStyle and setting it in XplatUI when our window 
16025             is created
16026           - Added enum check to InternalBorderStyle setter
16027         * XplatUIX11.cs: 
16028           - Added drawing of window borders
16029           - Now properly calculates WM decorations offset for toplevel 
16030             windows (fixes bug #74763)
16031         * XplatUIWin32.cs: 
16032           - Implemented BorderStyles for windows (we're letting win32 draw 
16033             the border for us)
16034           - Fixed the signature for SetWindowLong
16035         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
16036           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
16037           setting borders
16038         * UpDownBase.cs: Remove drawing of borders, this is handled by
16039           the driver, outside the client area
16040         * ListView.cs: Removed bogus border calculations. The control should
16041           be oblivious to borders, since those are not part of the client
16042           area. 
16043         * X11DesktopColors.cs: Commented out (currently) unneeded variables
16044         * ThemeWin32Classic.cs: Removed border calculations from ListView 
16045           drawing code
16046
16047 2005-10-06  Jackson Harper  <jackson@ximian.com>
16048
16049         * MdiChildContext.cs: Clear out the old virtual position remove
16050         all the unneeded calls to CreateGraphics.
16051
16052 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16053
16054         * TextControl.cs: Use proper color for highlighted text; fixes #76350
16055
16056 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
16057
16058         * Form.cs: 
16059           - Added loading and setting of our new default icon
16060           - Only set icon if window is already created
16061
16062 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
16063
16064         * Label.cs:
16065           - Do not explicitly set the foreground and background colors, to
16066             allow inheriting from parents (fixes #76302)
16067           - Use Control's InternalBorderStyle property to deal with borders
16068
16069 2005-10-06  Jackson Harper  <jackson@ximian.com>
16070
16071         * MdiChildContext.cs: Use the new xplatui function to draw a
16072         reversible rect.
16073
16074 2005-10-06  Jackson Harper  <jackson@ximian.com>
16075
16076         * Form.cs: Add the parent before creating the child context cause
16077         we need the parent when setting up the child.
16078
16079 2005-10-06  Jackson Harper  <jackson@ximian.com>
16080
16081         * FolderBrowserDialog.cs: redo the tree population code so a
16082         second thread isn't used. Should be a lot faster and more stable
16083         now.
16084
16085 2005-10-05  Jackson Harper  <jackson@ximian.com>
16086
16087         * TreeView.cs: There are no expand/collapse boxes if the node has
16088         no children.
16089
16090 2005-10-05  Jackson Harper  <jackson@ximian.com>
16091
16092         * X11DesktopColors.cs: Get menu colours for the gtk theme.
16093
16094 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
16095
16096         * FileDialog.cs: Fix InitialDirectory
16097
16098 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16099
16100         * ComboBox.cs:
16101                 - Fixes changing between styles
16102                 - Fixes simple mode
16103                 - Fixes last item crashing when navigating with keyboard
16104
16105 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
16106
16107         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
16108
16109 2005-10-05  Jackson Harper  <jackson@ximian.com>
16110
16111         * TreeView.cs: If updating the root node do a full refresh.
16112         * TreeNode.cs: The root node should be expanded by default. Also
16113         added a utility prop to tell if we are the root node.
16114         * TreeNodeCollection.cs: Only refresh if the node we are being
16115         added to is expanded. Also added a comment on a potential
16116         optimization.
16117         
16118 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
16119
16120         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
16121           in dispose method. Fixes #76330
16122
16123 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
16124
16125         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
16126
16127                 - Implements vertical and horizontal scrolling using XplatUI
16128                 - Fixes keyboard navagation
16129                 - Fixes EnsureVisible
16130                 - Drawing fixes
16131                 - Handles and draws focus properly
16132
16133
16134 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
16135
16136         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
16137           Create handle. NET_2_0: Destroy handle when value is null.
16138
16139 2005-10-03  Jackson Harper  <jackson@ximian.com>
16140
16141         * ScrollBar.cs: My last scrollbar patch was broken. This is a
16142         revert and a new patch to prevent the thumb from refreshing so
16143         much.
16144
16145 2005-10-02  Jackson Harper  <jackson@ximian.com>
16146
16147         * ScrollBar.cs: Don't update position if it hasn't actually
16148         changed. This occurs when you hold down the increment/decrement
16149         buttons and the thumb gets to the max/min.
16150
16151 2005-10-01  Jackson Harper  <jackson@ximian.com>
16152
16153         * Form.cs:
16154         * MdiChildContext.cs:
16155         * MdiClient.cs: Implement ActiveMdiChild in Form.
16156
16157 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
16158
16159         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
16160
16161 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
16162
16163         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
16164           be found
16165
16166 2005-09-30  Jackson Harper  <jackson@ximian.com>
16167
16168         * ListBox.cs: Don't do a full refresh unless some data has
16169         actually changed.
16170
16171 2005-09-30  Jackson Harper  <jackson@ximian.com>
16172
16173         * TreeView.cs: Make sure that the checkboxes size is factored in
16174         even when not visible.
16175
16176 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
16177
16178         * FileDialog.cs: Fix Jordi's build break
16179
16180 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
16181
16182         * FileDialog.cs: 
16183                 - Use standard the Windows colours for the combobox as espected
16184                 - Dispose objects that use resouces when no longer need them
16185
16186 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
16187
16188         * X11DesktopColors.cs: Initial incomplete implementation
16189         * XplatUIX11.cs: Added call to initialize X11DesktopColors
16190
16191 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
16192
16193         * Theme.cs: 
16194           - Switched Theme color names to match the names defined in 
16195             System.Drawing.KnownColors. Life's hard enough, no need to make 
16196             it harder.
16197           - Added setters to all theme color properties so themes can set
16198             their color schemes. The setters also propagate the color changes
16199             to System.Drawing.KnownColors via reflection
16200         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
16201           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
16202           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
16203           use the new, more logical theme color names
16204         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
16205           post-NT colors
16206         * ThemeWin32Classic.cs:
16207           - Removed code to set the old classic Windows colors. Instead it
16208             now relies on the colors returned by System.Drawing.KnownColors
16209             which will be either modern static colors (Unix) or colors
16210             read from the user's configuration (Win32)
16211           - Updated to use the new, more logical theme color names
16212           - Switched DataGrid drawing code to use only Theme colors instead of
16213             a mix of System.Drawing.KnownColors and Theme colors
16214           - DrawFrameControl(): Removed code that fills the button area, the
16215             fill would overwrite any previous fill done by a control. This
16216             fixes bug #75338 
16217           - Added DrawReversibleRectangle() stub
16218         * ScrollableControl.cs: Set visible state to false when scrollbars
16219           are removed (pdn fix)
16220         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
16221           DrawReversibleRectangle() method to allow drawing primitive 
16222           'rubber bands'
16223         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
16224
16225 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16226
16227         * ImageList.cs: Add(Icon): Create handle.
16228
16229 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
16230
16231         * ListView.cs:
16232         * ThemeWin32Classic.cs:
16233                 - Fixes detail mode
16234                 - Sets clippings
16235                 - Issues with drawing
16236
16237 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16238
16239         * ImageList.cs: Moved RecreateHandle back to ImageList as event
16240           source has to be the ImageList.
16241
16242 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16243
16244         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
16245
16246 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16247
16248         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
16249
16250 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16251
16252         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
16253
16254 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
16255         * GridItem.cs: Fixed TODOs
16256         * GridItemCollection.cs: Added ICollection interface
16257
16258 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
16259
16260         * ImageList.cs: Resize icons when needed.
16261
16262 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
16263
16264         * ListViewItem.cs
16265                 - Fixes GetBounds and returns on screen rects
16266         * ListView.cs:
16267                 - Fixes vertical and horzintal scrolling of items
16268         * ThemeWin32Classic.cs:
16269                 - Fixes drawing
16270                 
16271 2005-09-29  Raja R Harinath  <harinath@gmail.com>
16272
16273         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
16274
16275 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
16276
16277         * ImageList.cs: Added comments about handle creation. Moved Handle,
16278           HandleCreated and OnRecreateHandle implementations to ImageCollection.
16279           Handle is created in Add methods.
16280
16281 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
16282          
16283         * DataGridDrawingLogic.cs: 
16284                 - Takes rows into account on Colum calculations
16285                 - Returns the column when clickig
16286         * DataGrid.cs:
16287                 - Fixes default HitTestInfo values
16288                 - Fixes HitTestInfo.ToString
16289                 - Fixes ResetBackColor          
16290         
16291 2005-09-28  Jackson Harper  <jackson@ximian.com>
16292
16293         * MdiChildContext.cs: Obey rules for fixed sized windows (no
16294         sizing or cursor changes). Also added some temp code to draw the
16295         titlebars text (Makes dev a little easier).
16296
16297 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
16298
16299         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
16300
16301 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
16302          
16303         * ListBox.cs: Fixes bug 76253
16304
16305 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
16306
16307         * ImageList.cs: Added comments about the current implementation. Added
16308           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
16309           Format32bppArgb to preserve transparency and can use Graphics.FromImage
16310           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
16311           with Bitmap.LockBits for better performance. Revised the whole file to
16312           match MS.NET behaviour and provide better performance. Non-public
16313           interface members are calling public members even when they throw
16314           NotSupportedException for better maintainability. Moved ColorDepth,
16315           ImageSize, ImageStream and TransparentColor implementations to
16316           ImageCollection for better performance as these properties are not used
16317           by ImageList.
16318         * ImageListStreamer.cs: Added a new internal constructor that takes an
16319           ImageList.ImageCollection and serializes Images based on
16320           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
16321           match ImageList property name.
16322
16323 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
16324
16325         * ListBox.cs: Fixes IndexFromPoint for last item
16326
16327 2005-09-27  Jackson Harper  <jackson@ximian.com>
16328
16329         * Form.cs: Set the position of new mdi children correctly.
16330
16331 2005-09-27  Jackson Harper  <jackson@ximian.com>
16332
16333         * MdiClient.cs: New mdi children need to be added to the back of
16334         the controls collection so the zorder is set correctly. Also add a
16335         count of all the child windows that have been created.
16336
16337 2005-09-27  Jackson Harper  <jackson@ximian.com>
16338
16339         * Form.cs (CreateParams): Setup MDI forms correctly.
16340
16341 2005-09-27  Jackson Harper  <jackson@ximian.com>
16342
16343         * MdiChildContext.cs:
16344         * MonthCalendar.cs:
16345         * UpDownBase.cs:
16346         * ListBox.cs:
16347         * ListView.cs:
16348         * TextBoxBase.cs:
16349         * TreeView.cs:
16350         * ScrollableControl.cs:
16351         * ComboBox.cs: Add implicit controls using the new implict control
16352         functionality in ControlCollection. Also try to block multiple
16353         control add in a suspend/resume layout to save some cycles.
16354         
16355 2005-09-27  Jackson Harper  <jackson@ximian.com>
16356
16357         * Control.cs: Add functionality to the controls collection to add
16358         'implicit controls' these are controls that are created by the
16359         containing control but should not be exposed to the user. Such as
16360         scrollbars in the treeview.
16361         * Form.cs: The list var of the ControlsCollection is no longer
16362         available because of the potential of implicit controls getting
16363         ignored by someone accessing the list directly.
16364
16365 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
16366
16367         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
16368           loose it's parent. (Fixed bug introduced in r49103 when we added
16369           setting the child parent to null on Remove)
16370
16371 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
16372
16373         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
16374         * Splitter.cs: Added missing attributes for BorderStyle property.
16375         * TextBoxBase.cs: Marked Calculate* methods internal.
16376         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
16377         MS.NET.
16378
16379 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
16380          
16381         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
16382
16383 2005-09-25  Jackson Harper  <jackson@ximian.com>
16384
16385         * TreeView.cs: Update the node bounds correctly regardless of
16386         whether the node is visible.
16387
16388 2005-09-25  Jackson Harper  <jackson@ximian.com>
16389
16390         * ImageList.cs: Don't dispose the image after it is added to the
16391         image list. Only reformat images that need to be resized.
16392
16393 2005-09-25  Jackson Harper  <jackson@ximian.com>
16394
16395         * ImageList.cs: Don't set the format when changing the image.
16396
16397 2005-09-25  Jackson Harper  <jackson@ximian.com>
16398
16399         * TreeView.cs: We can't just assume the node has a font. Use the
16400         treeviews font if no node font is available.
16401
16402 2005-09-25  Jackson Harper  <jackson@ximian.com>
16403
16404         * TreeView.cs: Allow the scrollbars to be reset with negative
16405         values.
16406         - Don't add scrollbars to negative sized windows.
16407
16408 2005-09-23  Jackson Harper  <jackson@ximian.com>
16409
16410         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
16411         old Mono.Posix. Also remove some stray code that shouldn't have
16412         been committed.
16413
16414 2005-09-23  Jackson Harper  <jackson@ximian.com>
16415
16416         * TreeView.cs: Attempt at proper sizing of the horizontal
16417         scrollbar. Also don't resize the scrollbars unless they are
16418         visible.
16419
16420 2005-09-23  Jackson Harper  <jackson@ximian.com>
16421
16422         * TreeView.cs: We don't need to expand the invalid area when the
16423         selection changes, as this is all drawn in the node's bounding
16424         box. The area needs to be expanded (previous typo was contracting
16425         it) when the focus rect moves.
16426
16427 2005-09-23  Jackson Harper  <jackson@ximian.com>
16428
16429         * TreeView.cs: Display the selection box under the correct
16430         circumstances. We were rendering white text with no selection box
16431         before.
16432
16433 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
16434
16435         * TextControl.cs(Split): Now updates selection start/end if it points 
16436           into a line that's being split. Fixes a FIXME and bug #75258
16437
16438 2005-09-23  Jackson Harper  <jackson@ximian.com>
16439
16440         * Binding.cs:
16441         * ListControl.cs: Don't use the path when retrieving binding
16442         managers from the binding context. My bat sense tells me that the
16443         path is only used on insertion.
16444
16445 2005-09-22  Jackson Harper  <jackson@ximian.com>
16446
16447         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
16448
16449 2005-09-22  Jackson Harper  <jackson@ximian.com>
16450
16451         * Splitter.cs: There are special cursors used for splitting.
16452         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
16453
16454 2005-09-22  Jackson Harper  <jackson@ximian.com>
16455
16456         * Splitter.cs: Change the cursor appropriately when the splitter
16457         is moused over, so the user actually knows there is a splitter
16458         there.
16459
16460 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
16461
16462        * Label.cs : Fix ToString method to give same output as MS.NET
16463
16464 2005-09-22  Jackson Harper  <jackson@ximian.com>
16465
16466         * TreeView.cs: Create the scrollbars when the handle is created
16467         and add them right away, just make them invisble. Also account for
16468         the window being shrunk vertically to the point that the vert
16469         scrollbar needs to be added.
16470         - Remove some 0.5 adjustments to get around anti aliasing issues.
16471         
16472 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
16473          
16474         * MainMenu.cs: Fixes default value
16475         * MenuItem.cs: Fixes default value
16476
16477 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
16478
16479         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
16480
16481 2005-09-21  Jackson Harper  <jackson@ximian.com>
16482
16483         * Control.cs: Don't try to set the border style on the window if
16484         it hasn't been created. When the window is created the border
16485         style will be used.
16486
16487 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
16488
16489         * Control.cs (Update): Don't call XplatUI if we don't have a
16490           window handle yet
16491
16492 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
16493
16494         * ContainerControl.cs: Instead of throwing an exception, print
16495           a one-time warning about Validate not being implemented
16496         * XplatUIWin32.cs: Removed debug output
16497
16498 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
16499
16500         * Control.cs: Only set XplatUI background if we expect the windowing
16501           system to handle the background. This stops controls that draw their
16502           own background from flickering
16503
16504         * XplatUIX11.cs: Support custom visuals and colormaps for window 
16505           creation. This allows, amongst other things, using MWF X11 windows 
16506           with OpenGL.
16507
16508 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
16509
16510         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
16511           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
16512           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
16513           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
16514           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
16515           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
16516           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
16517           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
16518           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
16519           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
16520           GridColumnStylesCollection.cs, 
16521           IDataGridColumnStyleEditingNotificationService.cs,
16522           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
16523           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
16524           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
16525           TreeNodeCollection.cs, AmbientProperties.cs, 
16526           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16527           DataObject.cs, ErrorProvider.cs, Splitter.cs,
16528           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
16529           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
16530           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
16531           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
16532           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
16533           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
16534           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
16535           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
16536           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
16537           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
16538           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
16539           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
16540           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
16541           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
16542           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
16543           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
16544           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
16545           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
16546           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
16547           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
16548           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
16549           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
16550           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
16551           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
16552           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
16553           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
16554           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
16555           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
16556           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
16557           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
16558           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
16559           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
16560           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
16561           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
16562           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
16563
16564 2005-09-21  Jackson Harper  <jackson@ximian.com>
16565
16566         * TreeNode.cs: Call Before/After Expand not Collapse when
16567         expanding.
16568
16569 2005-09-20  Jackson Harper  <jackson@ximian.com>
16570         
16571         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
16572
16573 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
16574          
16575         * ListViewItem.cs:
16576                 - Fixes bug 76120
16577                 - Fixes proper storing of subitems
16578                 - Fixes not updated items
16579
16580 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
16581
16582         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
16583           things if our window handle isn't created yet. Also disabled 
16584           debug for TextBoxBase
16585
16586 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
16587
16588         * MenuAPI.cs: Remove filtering of events to allow menu usage
16589
16590 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16591
16592         * Cursor.cs: Allow null to be passed to Cursor.Current.
16593
16594 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
16595
16596         * ThemeWin32Classic.cs:
16597           - Change some private methods/fields to protected virtual so that 
16598             they can be accessed and overriden in derived classes
16599           - First refactoring of some methods. Derived themes now don't 
16600             need to duplicate the complete code from ThemeWin32Classic
16601         * ThemeNice.cs:
16602           - Added nice StatusBar
16603           - Derive from ThemeWin32Classic and not Theme
16604           - Removed duplicate ThemeWin32Classic code
16605
16606 2005-09-20  Miguel de Icaza  <miguel@novell.com>
16607
16608         * Control.cs (ControlCollection.Add): If the value null is passed
16609         the control is ignored. 
16610
16611         Optimize this loop.
16612
16613 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
16614
16615         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
16616           PostQuitMessage state.
16617         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
16618
16619 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
16620
16621         * Application.cs: Our constructor will never get called, move 
16622           initialization to fields; fixes bug #75933
16623
16624 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
16625
16626         * FileDialog.cs :
16627                 - Allow files to be selected properly using file name
16628                 combo box.
16629                 - Add ability to change diretory (absolute / relative)
16630                 using file name combo box.
16631
16632 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
16633          
16634         * ListBox.cs: 
16635                 - Fixes Multicolumn listboxes item wrong calculations
16636                 - Allows to click when only one item is in the listbox
16637                 - Fixes crash when no items using keyboard navigation
16638
16639 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
16640
16641         * ComboBox.cs: Reverted almost everything from the latest patch which
16642           broke ComboBox
16643
16644 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
16645         
16646         * ToolTip.cs:
16647                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
16648         * ComboBox.cs:
16649                 - When DropDownStyle is Simple, it does not show scrollbar 
16650                 to the last item of the list.
16651                 - When DropDownStyle is Simple, it crashed when the list was 
16652                 scrolled down with the down cursor key.
16653                 - Fixed a bug that when DropDownStyle is DropDownList, the 
16654                 selected item was not shown.
16655                 - The position of the selected item was not preserved when 
16656                 the next dropdown happened.
16657         * ThemeWin32Classic.cs:
16658                 - Items were wrapped at the right end.
16659         * CheckedListBox.cs:
16660                 - Fixed Add method
16661         * ListBox.cs:
16662                 - Items should be fully shown.
16663                 - When resizing and vertical scrollbar disappeared, the item 
16664                 of index 0 should be on the top of the list.
16665                 - GetItemRectangle should consider the size of ver. scrollbar
16666         * StatusBar.cs:
16667                 - SizingGrip area should not be allocated when it is not 
16668                 displayed.
16669                 - Now it reflects MinWidth of the containing panel and 
16670                 fixed a crash that happens when its width becomes so small.
16671
16672 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16673
16674         * CheckedListBox.cs: Fixes bug 76028
16675         * ListBox.cs: Fixes bug 76028
16676
16677 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
16678
16679         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
16680         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
16681
16682 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
16683
16684         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
16685
16686 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16687
16688         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
16689
16690 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
16691
16692         * IRootGridEntry.cs: Added
16693         * PropertyGridCommands.cs: Added
16694         * PropertiesTab.cs: Added missing methods and property
16695         * PropertyGridView.cs: Made class internal
16696         * PropertyGridTextBox.cs: Made class internal
16697
16698 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16699
16700         * MimeIcon.cs: Try to check some other environment variables
16701           if "DESKTOP_SESSION" returns "default"
16702
16703 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16704
16705         * ThemeNice.cs: Corrected background colors (e.g. menus)
16706         * ColorDialog.cs: Use correct background colors for controls
16707
16708 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
16709
16710         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
16711
16712 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
16713
16714         * RichTextBox.cs: Added initial implementation
16715         * lang.cs: Removed. Was accidentally checked in long time ago
16716         * TODO: Removed. Contents were obsolete
16717
16718 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16719                                                                                 
16720         * PropertiesTab.cs : Added
16721
16722 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
16723                                                                                 
16724         * PropertyGrid.cs : Update
16725         * PropertyGridView.cs : Update
16726         * System.Windows.Forms.resx : Added images and strings
16727
16728 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
16729
16730         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
16731  
16732 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
16733
16734         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
16735           a busy loop right after the Ungrab the X11 display is otherwise 
16736           blocked
16737
16738 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
16739
16740         * ThemeWin32Classic.cs: Optimise the use of clipping
16741
16742 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
16743
16744         * DataGrid.cs: fixes recursion bug
16745
16746 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
16747
16748         * ThemeNice.cs: 
16749           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
16750           - Cleanup
16751
16752 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
16753
16754         * ThemeNice.cs: Draw nice ProgressBars
16755
16756 2005-09-01  Miguel de Icaza  <miguel@novell.com>
16757
16758         * VScrollBar.cs: Another buglet found by Aaron's tool. 
16759
16760         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
16761         bug finder.
16762
16763 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
16764
16765         * ThemeNice.cs:
16766           - Added nicer menu drawing
16767           - Updated DrawTab
16768           - some refactoring
16769
16770 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16771
16772         * CreateParams.cs (ToString): Made output match MS
16773         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
16774             handle is already created (to avoid forcing window creation)
16775         * XplatUIX11.cs: Set window text to caption after creating window,
16776           in case Text was set before window was created
16777         * Form.cs: Use this.Text instead of a static string as caption
16778
16779 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16780
16781         * NotifyIcon.cs: Don't set the window to visible; this screws
16782           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
16783           OnPaint without a bitmap)
16784         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
16785           happen very often anyway; we could add the check to the WM_PAINT 
16786           event generation code
16787
16788 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
16789
16790         * NotifyIcon.cs: Fill the icon area with a background color, to 
16791           avoid 'residue' when transparent icons are drawn
16792         * XplatUIX11.cs:
16793           - Handle whole_window == client_window when destroying windows
16794           - SystrayAdd(): Set client_window to whole_window value to
16795             get mouse and other events passed to NotifyIcon
16796
16797 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
16798
16799         * Form.cs: Set proper default for Opacity property
16800         * NotifyIcon.cs:
16801           - ShowSystray(): Don't bother creating telling the OS
16802             about the systray item if no icon is provided
16803           - Now handles WM_NCPAINT message to deal with whole/client window
16804             split
16805           - Create window as visible to not get caught by Expose optimization
16806         * Hwnd.cs: Removed debug message
16807         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
16808           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
16809             PaintEventStart/End to use new client argument
16810         * TextBoxBase.cs:
16811           - Commented out debug messages
16812           - Switched PaintEventStart/End to use new client argument
16813         * XplatUI.cs: Added client window bool to PaintEventStart()/
16814           PaintEventEnd() calls, to support drawing in non-client areas
16815         * XplatUIDriver.cs: 
16816           - Added client window bool to PaintEventStart()/PaintEventEnd() 
16817             calls, to support drawing in non-client areas
16818           - Added conditional compile to allow using MWF BeginInvoke 
16819             on MS runtime
16820         * XplatUIX11.cs:
16821           - Added some conditional debug output
16822           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
16823             whole/client window split
16824           - Implemented handling of client argument to PaintEventStart()/End()
16825         * Control.cs:
16826           - Throw exception if BeginInvoke() is called and the window handle
16827             or one of the window's parent handles is not created
16828           - Added conditional compile to allow using MWF BeginInvoke on
16829             MS runtime
16830           - get_Parent(): Only sets parent if handle is created. This avoids
16831             forcing window handle creation when parent is set.
16832           - Now fires Layout and Parent changed events in proper order
16833           - Switched to use Handle instead of window.Handle for Z-Order setting,
16834             the get_Parent() patch above causes us to possibly get null for 'window'
16835           - Implemented handling of client argument to PaintEventStart()/End()
16836           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
16837             default handling)
16838           - Now sends a Refresh() to all child windows when Refresh() is called
16839
16840 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
16841
16842         * Form.cs: Added (non-functional) Opacity property
16843         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
16844
16845 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
16846         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
16847           use export MONO_THEME=nice to activate it.
16848           Currently supported controls:
16849           - Button
16850           - ComboBox
16851           - ScrollBar
16852           - TabControl (TabAlignment.Top only, other will follow)
16853         * ThemeEngine.cs: Add theme nice
16854         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
16855           if enabled
16856
16857 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
16858
16859         * Splitter.cs: Resize docked control and its neighbor.
16860
16861 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16862         -- Making Windows with Menus layout correctly --
16863         * Form.cs : The first leg of the fix
16864                 Menu setter - adjust Client Size as needed to make space for the menu
16865                 SetClientSizeCore - doesn't call base version to be able to pass the 
16866                         menu handle to XplatUI.CalculateWindowRect
16867         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
16868         * XplatUIX11.cs: The critical second leg of the fix
16869                 GetWindowPos needs to use a recalculated client_rect
16870                 so that resizing the window doesn't break layout of child controls. 
16871                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
16872                 Lots of \t\n killed
16873
16874 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
16875
16876         * Label.cs: Now properly recalculates width and height on Font and Text
16877           changes if AutoSize is set
16878
16879 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
16880         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
16881
16882 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
16883
16884         * ImageList.cs: Makes ToString method compatible with MS
16885
16886 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
16887
16888         * MenuAPI.cs: fixes bug 75716
16889
16890 2005-08-11 Umadevi S <sumadevi@novell.com>
16891         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
16892
16893 2005-08-11 Umadevi S <sumadevi@novell.com>
16894         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
16895
16896 2005-08-10  Umadevi S <sumadevi@novell.com>
16897         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
16898
16899 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
16900
16901         * Menu.cs: fixes bug 75700
16902         * MenuAPI.cs: fixes navigation issues
16903
16904 2005-08-09  Umadevi S <sumadevi@novell.com>
16905         * CheckedListBox.cs - simple fix for GetItemChecked.
16906
16907 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
16908
16909         * ComboBox.cs: Serveral fixes
16910         * ListBox.cs: Serveral fixes
16911
16912 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
16913
16914         * ComboBox.cs: Fixes FindString methods and GetItemHeight
16915         * ListBox.cs: Fixes FindString methods
16916
16917 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
16918
16919         * DataGrid.cs: fixes bugs exposed by new tests
16920
16921 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
16922
16923         * Mime.cs: Compile Mono assembly references only if compiling
16924           with Mono (Allows to build with VS.Net again)
16925
16926 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
16927
16928         * Control.cs (PaintControlBackground): Draw background image
16929         corrrectly.
16930         (CheckForIllegalCrossThreadCalls): Stubbed.
16931         
16932         * Form.cs (OnCreateControl): Center when should be centered.
16933         
16934         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
16935
16936 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
16937
16938         * Binding.cs: Binding to properties should be case unsensitive
16939
16940 2005-07-18 vlindos@nucleusys.com
16941
16942         * DataGrid.cs: fixes setmember order
16943
16944 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
16945
16946         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
16947         * FileDialog.cs: FileDialog is now resizable and uses the new
16948           MimeIconEngine
16949
16950 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
16951
16952         * DataGridTextBoxColumn.cs: default value
16953         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
16954         * GridTableStylesCollection.cs: fixes checking MappingName
16955         * DataGridDrawingLogic.cs: fixes drawing logic issues
16956         * DataSourceHelper.cs: rewritten to make compatible with more data sources
16957         * DataGrid.cs: fixes    
16958
16959 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
16960
16961         * MimeGenerated.cs: Use case sensitive comparer for
16962           NameValueCollections
16963
16964 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
16965
16966         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
16967         * ThemeWin32Classic.cs: bug fixes, code refactoring
16968         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
16969         * DataGrid.cs: bug fixes, code refactoring
16970         * DataGridTextBox.cs: bug fixes, code refactoring
16971         * DataGridColumnStyle.cs:  bug fixes, code refactoring
16972         * Theme.cs:  bug fixes, code refactoring
16973
16974 2005-07-01  Peter Bartok  <pbartok@novell.com> 
16975
16976         * TextControl.cs: Quick fix for the reported crash on ColorDialog
16977           and other text box usage
16978
16979 2005-07-01  Jackson Harper  <jackson@ximian.com>
16980
16981         * TabControl.cs: Make sure the bottom of the tab covers the pages
16982         border.
16983
16984 2005-06-30  Peter Bartok  <pbartok@novell.com> 
16985
16986         * Form.cs (ShowDialog): Assign owner of the dialog
16987         * TextBoxBase.cs: Always refresh caret size when deleting, caret
16988           might have been moved to a tag with different height
16989
16990 2005-06-30  Jackson Harper  <jackson@ximian.com>
16991
16992         * Form.cs: Don't create an infinite loop when setting focus
16993         * MenuItem.cs: Don't dirty the parents if we don't have any
16994
16995 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
16996
16997         * LibSupport.cs: Rename
16998
16999 2005-06-29  Peter Bartok  <pbartok@novell.com>
17000
17001         * TextBoxBase.cs: Re-align caret after deleting a character
17002         * TextControl.cs:
17003           - DeleteChars(): Ensure that tag covers the provided position
17004           - StreamLine(): Drop reference for dropped tag
17005
17006 2005-06-29  Peter Bartok  <pbartok@novell.com> 
17007
17008         * TextControl.cs: 
17009           - Selections now work properly, anchoring at the initial location
17010             and properly extending in either direction (SetSelectionToCaret(),
17011             SetSelectionStart() and SetSelectionEnd())
17012           - No longer redraws the whole control on selection change, now
17013             calculates delta between previous and new selection and only
17014             invalidates/redraws that area
17015           - Fixed FindPos() math off-by-one errors
17016           - Changed DeleteChars() to verify the provided tag covers the
17017             provided position, selections may have a tag that doesn't cover
17018             the position if the selection is at a tag border
17019           - Fixed off-by-one errors in DeleteChars()
17020           - Added missing streamlining check in DeleteChars() to remove
17021             zero-length tags
17022           - Implemented Invalidate() method, now properly calculates exposures
17023             between two given lines/positions
17024           - Implemented SetSelection()
17025           - Obsoleted and removed FixupSelection()
17026           - Improved RecalculateDocument() logic, removing code duplication
17027
17028 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17029
17030         * LibSupport.cs: changes to match different input/output arguments.
17031
17032 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17033
17034         * LibSupport.cs: added libsupport.so init routine.
17035
17036 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
17037         
17038         * ControlBindingsCollection.cs
17039                 - Throws an exception on null datasource when adding
17040                 - Checks for duplicated bindings when adding
17041
17042 2005-06-28  Jackson Harper  <jackson@ximian.com>
17043
17044         * TreeView.cs (OnKeyDown): Support left and right properly
17045         (navigates as well as expanding and collapsing.
17046         - Add support for Multiply, this expands all the selected nodes
17047         children.
17048         - Fix some tabbing.
17049
17050 2005-06-28  Jackson Harper  <jackson@ximian.com>
17051
17052         * TreeView.cs: Implement keyboard navigation, currently supports,
17053         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
17054         support for toggling checkboxes with the space bar.
17055
17056 2005-06-28  Jackson Harper  <jackson@ximian.com>
17057
17058         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
17059         tree.
17060
17061 2005-06-28  Jackson Harper  <jackson@ximian.com>
17062
17063         * TreeView.cs: Add missing event.
17064
17065 2005-06-27  Peter Bartok  <pbartok@novell.com> 
17066
17067         * TextControl.cs:
17068           - Made line ending size configurable (now allows for counting 
17069             lineendings as \n or \r\n)
17070           - Added margin to viewport to keep caret visible on right side
17071           - Fixed translation routines for line/pos to documentpos to consider
17072             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
17073           - Fixed some line-endings to be unix style
17074           - Fixed Document.FormatText to perform it's calculations 1-based
17075           - Added descriptions for a few methods that might otherwise get 
17076             used wrong
17077           - Added NOTE section with some basic conventions to remember at 
17078             the top of the file
17079           - Major fixup for RichTextBox selection drawing:
17080             * Fixed crashes when multiple tags on a single line were selected
17081             * fixed selection box drawing not overlaying text
17082             * fixed bogus offset calculation for tags not starting at index 1
17083             * Switched behaviour from using multiple Substrings of a 
17084               StringBuilder.ToString() to using multiple 
17085               StringBuilder.ToString(start, length) statements, hoping this is
17086               faster (kept original version commented out in the code, in case
17087               original version was faster)
17088         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
17089           alignment != Left
17090         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
17091           call it as well
17092
17093 2005-06-27  Jackson Harper  <jackson@ximian.com>
17094
17095         * TabControl.cs: Move to the left and right with the arrow
17096         keys. These keys don't cycle beyond first and last like
17097         tab. Refresh all the tabs when scrolling them to the left or
17098         right.
17099
17100 2005-06-27  Jackson Harper  <jackson@ximian.com>
17101
17102         * TabControl.cs:
17103           - ToString: Added method
17104           - CreateParams: Remove TODO and comment
17105           - OnKeyDown: Cycle through bounds properly.
17106           - SelectedIndex: Scroll to the right or left if we need to
17107           display the newly selected tab.
17108
17109 2005-06-23  Jackson Harper  <jackson@ximian.com>
17110
17111         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
17112         set.
17113
17114 2005-06-23  Jackson Harper  <jackson@ximian.com>
17115
17116         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
17117         CTRL-SHIFT-TAB, and HOME, END are there any others?
17118
17119 2005-06-23  Jackson Harper  <jackson@ximian.com>
17120
17121         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
17122
17123 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17124         
17125         * DataGridTextBoxColumn.cs: fixes and enhancements
17126         * ThemeWin32Classic.cs: fixes and enhancements
17127         * DataGridBoolColumn.cs:  fixes and enhancements
17128         * DataGridDrawingLogic.cs:  fixes and enhancements
17129         * CurrencyManager.cs: fixes and enhancements
17130         * DataGrid.cs: fixes and enhancements
17131         * DataGridColumnStyle.cs:  fixes and enhancements
17132
17133 2005-06-22  Jackson Harper  <jackson@ximian.com>
17134
17135         * TabControl.cs: Add some missing methods that just call into the
17136         base. Make the TabPageCollection's IList interface behave in the
17137         same manner as the MS implementation.
17138
17139 2005-06-22  Peter Bartok  <pbartok@novell.com> 
17140
17141         * TextControl.cs: Added sanity check
17142         * TextBoxBase.cs: 
17143           - Fixed wrapping behaviour, don't set wrap on single line controls
17144             (this fixes the breakage of colordialog introduced in an earlier
17145              checkin)
17146           - Added rudimentary support for autoscrolling right-aligned controls
17147             (still needs fixing, also, center alignment scroll is missing)
17148
17149 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
17150         
17151         * ScrollBar.cs: Fixes thumbpos on Maximum values
17152
17153 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
17154         
17155         * PropertyGridView.cs: Pass context information to UITypeEditors 
17156
17157 2005-06-21  Peter Bartok  <pbartok@novell.com> 
17158
17159         * TextBoxBase.cs:
17160           - Now calling PositionCaret with absolute space coordinates
17161           - Enabled vertical scrolling
17162           - Better tracking of scrollbar changes, tied into WidthChange
17163             event
17164           - Improved cursor tracking
17165           - Removed debug output
17166         * TextControl.cs:
17167           - PositionCaret coordinates are now works in absolute space, not 
17168             the canvas
17169           - Improved tracking of document size
17170           - Added events for width and height changes
17171
17172 2005-06-21  Peter Bartok  <pbartok@novell.com>
17173
17174         * Form.cs: Set focus to active control when form is activated
17175         * TextControl.cs: 
17176           - Added word-wrap functionality to RecalculateLine() 
17177           - Added some short function descriptions for VS.Net to aid in
17178             writing dependent controls
17179           - Added Caret property, returning the current coords of the caret
17180           - Added ViewPortWidth and ViewPortHeight properties
17181           - Added Wrap property
17182           - Added CaretMoved event
17183           - Removed some old debug code
17184           - Split() can now create soft splits
17185           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
17186           - Added method to format existing text
17187           - Fixed size/alignment calculations to use viewport
17188           - RecalculateDocument now can handle changing line-numbers while
17189             calculating lines
17190
17191         * TextBox.cs:
17192           - Added some wrap logic, we don't wrap if alignment is not left
17193           - Added casts for scrollbar var, base class switched types to
17194             also support RichTextBoxA
17195           - Implemented handling of scrollbar visibility flags
17196
17197         * TextBoxBase.cs:
17198           - Switched scrollbars type to RichTextBoxScrollBars to support
17199             RichTextBox
17200           - Added tracking of canvas width/height
17201           - Switched scrollbars to be not selectable (to keep focus on text)
17202           - Added central CalculateDocument() method to handle all redraw
17203             requirements
17204           - Added ReadOnly support
17205           - Added WordWrap support
17206           - Fixed handling of Enter key (we now treat it as a DialogKey)
17207           - Fixed caret positioning when h or v scroll is not zero
17208           - Fixed placing/generation of vertical scrollbar
17209           - Added CalculateScrollBars() method to allow updating scrollbar
17210             limits and visibility
17211           - Fixed handling of horizontal scroll
17212           - Added handling of vertical scroll
17213           - Implemented auto-'jump' when caret moves to close to a left or
17214             right border and there is text to be scrolled into view (currently
17215             there's the potential for a stack overflow, until a bug in
17216             scrollbar is fixed)
17217
17218 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
17219         
17220         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
17221
17222 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
17223
17224         * Mime.cs:
17225         - added inodes.
17226         - return application/x-zerosize for files with size zero
17227           (if no extension pattern matches).
17228         - check matches collection for strings too.
17229         - return only the first mime type if the name value
17230           collection has more than one mime type.
17231
17232 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
17233         
17234         * PropertyGrid.cs: Cleaned up some TODOs
17235         * PropertyGridView.cs: Added support for UITypeEditors
17236
17237 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
17238         
17239         * DataGrid.cs: clears cached value
17240
17241 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
17242
17243         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
17244         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
17245         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
17246         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
17247         
17248 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
17249
17250         * ThemeWin32Classic.cs: fixes colour
17251
17252 2005-06-15  Peter Bartok  <pbartok@novell.com>
17253
17254         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
17255         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
17256         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
17257         * Control.cs: Added some MWFCategory and MWFDescription attributes
17258         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
17259
17260 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
17261
17262         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
17263         usage
17264
17265 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
17266
17267         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
17268         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
17269         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
17270         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
17271         * DataGrid.cs: default datagrid settings for Default Styles, fixes
17272         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
17273
17274 2005-06-13  Jackson Harper  <jackson@ximian.com>
17275
17276         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
17277         isn't printed when the user enables dropping. (X11 does accept
17278         drops).
17279         
17280 2005-06-13  Jackson Harper  <jackson@ximian.com>
17281
17282         * TreeView.cs: Remove some TODOS.
17283
17284 2005-06-13  Jackson Harper  <jackson@ximian.com>
17285
17286         * Form.cs: Hook into the mdi framework.
17287         * MdiClient.cs: Use the base control collections add method so
17288         parents get setup correctly. Set the default back colour and dock
17289         style.
17290         * MdiChildContext.cs: New class, this bad actor handles an
17291         instance of an MDI window. Right now there is only basic
17292         support. You can drag, close, and resize windows. Minimize and
17293         Maximize are partially implemented.
17294
17295 2005-06-13  Jackson Harper  <jackson@ximian.com>
17296
17297         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
17298         freaky when both vals are negative. NOTE: There are probably other
17299         places in XplatUIX11 that this needs to be done.
17300
17301 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
17302
17303         * DataGrid.cs: implement missing methods, move KeyboardNavigation
17304         * DataGridColumnStyle.cs: fixes signature
17305
17306 2005-06-12  Jackson Harper  <jackson@ximian.com>
17307
17308         * XplatUIX11.cs: Use sizing cursors similar to the ones on
17309         windows.
17310
17311 2005-06-11  Jackson Harper  <jackson@ximian.com>
17312
17313         * StatusBarPanel.cs: Signature cleanups. Implement
17314         BeginInit/EndInit.
17315
17316 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
17317
17318         * DataGridTextBoxColumn.cs: Honors aligment
17319         * GridColumnStylesCollection.cs: Contains is case unsensitive
17320         * GridTableStylesCollection.cs: several fixes
17321         * DataGridTableStyle.cs: default column creation
17322         * DataGridDrawingLogic.cs: fixes
17323         * CurrencyManager.cs: ListName property
17324         * DataGrid.cs: multiple styles support
17325         * DataGridColumnStyle.cs: fixes
17326         
17327
17328 2005-06-10  Peter Bartok  <pbartok@novell.com>
17329
17330         * Control.cs(Select): Moved SetFocus call to avoid potential
17331           loops if controls change the active control when getting focus
17332         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
17333           the up/down buttons
17334
17335 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
17336
17337         * ImageListConverter.cs: Implemented
17338
17339 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
17340
17341         * MonthCalendar.cs: Wired in NumericUpDown control for year
17342
17343 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
17344
17345         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
17346           DoubleClick events, since they are not meant to be fired.
17347
17348 2005-06-09  Peter Bartok  <pbartok@novell.com>
17349
17350         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
17351           Jonathan's standalone controls into MWF, implemented missing
17352           events, attributes and methods; added xxxAccessible classes
17353         * AccessibleObject.cs: Made fields internal so other classes
17354           can change them if needed
17355
17356 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
17357
17358         * UpDownBase.cs: Complete implementation
17359         * NumericUpDown.cs: Complete implementation
17360         * DomainUpDown.cs: Complete implementation
17361
17362 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
17363
17364         * DataGridTextBoxColumn.cs: drawing fixes
17365         * DataGridCell.cs: fixes ToString method to match MSNet
17366         * DataGridTableStyle.cs: fixes
17367         * DataGridBoolColumn.cs: fixes, drawing
17368         * DataGridDrawingLogic.cs: fixes, new methods
17369         * DataGridTextBox.cs: Keyboard and fixes
17370         * DataGrid.cs:
17371                 - Keyboard navigation
17372                 - Scrolling fixes
17373                 - Row selection (single, multiple, deletion, etc)
17374                 - Lots of fixes
17375         
17376 2005-06-07  Jackson Harper  <jackson@ximian.com>
17377
17378         * ThemeWin32Classic.cs: Clear the background area when drawing
17379         buttons.
17380
17381 2005-06-06  Peter Bartok  <pbartok@novell.com>
17382
17383         * ImageListStreamer.cs: Fixed signature for GetData
17384         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
17385         * ComboBox.cs:
17386           - Added missing ChildAccessibleObject class
17387           - Added missing OnXXXFocus overrides, switched to using those
17388             instead of the event handler
17389         * Control.cs:
17390           - Added Parent property for ControlAccessibleObject
17391           - Fixed signatures
17392           - Fixed attributes
17393           - Added ResetBindings()
17394         * ListBindingConverter.cs: Implemented some methods
17395         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
17396         * ImageList.cs: Implemented basic handle scheme, removed TODOs
17397         * ContainerControl.cs: Fixed signature, now subscribing to the
17398           ControlRemoved event instead of overriding the handler, LAMESPEC
17399         * CurrencyManager.cs: Added missing attribute
17400         * MonthCalendar.cs: Added missing properties
17401
17402 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
17403
17404         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
17405         
17406 2005-06-06  Gaurav Vaish and Ankit Jain
17407
17408         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
17409         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
17410         
17411 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
17412
17413         * Control.cs: fixes CreateParams Width / Height.
17414
17415 2005-06-05  Peter Bartok  <pbartok@novell.com>
17416
17417         * Win32DnD.cs: Removed compilation warnings
17418
17419 2005-06-05  Peter Bartok  <pbartok@novell.com>
17420
17421         * Control.cs (CreateParams): Since we don't know if one of the
17422           properties we use is overridden, lets make sure if we fail accessing
17423           we continue with a backup plan
17424
17425 2005-06-05  Peter Bartok  <pbartok@novell.com>
17426
17427         * Win32DnD.cs:
17428           - Removed debug output
17429           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
17430             struct
17431           - Plugged resource leak
17432         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
17433           MS size
17434
17435 2005-06-05  Peter Bartok  <pbartok@novell.com>
17436
17437         * XplatUIWin32.cs: Removed DnD code
17438         * Win32DnD.cs: Implemented drop source and drop target functionality
17439
17440 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17441
17442         * UpDownBase.cs: remove duplicate addition of event, enable some code
17443         that was commented out.
17444         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
17445         Validate input when a key is pressed. It works fine now for every
17446         combination of Hexadecimal. Only missing some drawing love when sharing
17447         space with other controls.
17448
17449 2005-06-04  Peter Bartok  <pbartok@novell.com>
17450
17451         * Control.cs:
17452           - We need to pass a window for DragDrop, so enable callback events
17453           - Added DnD callback events when being a DragSource
17454         * XplatUI.cs (StartDrag): Added window handle argument
17455         * XplatUIDriver.cs (StartDrag): Added window handle argument
17456         * QueryContinueDragEventArgs: Made fields internally accessible so
17457           drivers can set them
17458         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
17459           can set them
17460
17461 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
17462
17463         * DataGridTextBoxColumn.cs: column text editing
17464         * DataGridTableStyle.cs: Respect columns styles created by the user
17465         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
17466         * DataGridBoolColumn.cs: bool column editing
17467         * DataGrid.cs: fixes to scrolling, properties, etc
17468         * DataGridTextBox.cs: handle keyboard
17469         * DataGridColumnStyle.cs: fixes
17470
17471 2005-06-02  Jackson Harper  <jackson@ximian.com>
17472
17473         * ImageListStreamer.cs: Somewhat broken implementation of
17474         GetObjectData. The RLE needs some work to match MS properly.
17475
17476 2005-06-02  Jackson Harper  <jackson@ximian.com>
17477
17478         * X11Dnd.cs: Attempting to keep at least one file in MWF
17479         monostyled.
17480
17481 2005-06-02  Peter Bartok  <pbartok@novell.com>
17482
17483         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
17484           that way
17485
17486 2005-06-02  Peter Bartok  <pbartok@novell.com>
17487
17488         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
17489         * XplatUI.cs: Added DoDragDrop() method
17490         * XplatUIDriver.cs: Added DoDragDrop() method
17491
17492 2005-06-02  Jackson Harper  <jackson@ximian.com>
17493
17494         * Splitter.cs: Implement BorderStyle.
17495
17496 2005-06-02  Jackson Harper  <jackson@ximian.com>
17497
17498         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
17499         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
17500         X11 using XDND.
17501
17502 2005-06-02  Peter Bartok  <pbartok@novell.com>
17503
17504         * DataObject.cs:
17505           - Added Data setter
17506           - Fixed broken insertion code for SetData, now also
17507             overwrites any existing entry of the same format name
17508         * Hwnd.cs: Added list of pointers that automatically gets
17509           freed when the window is disposed
17510         * XplatUI.cs: Call driver initialization method when loading
17511           a driver
17512         * Control.cs:
17513           - OnDragLeave takes EventArgs, not DragEventArgs
17514           - Added setting of WS_EX_ACCEPTFILES style when dropping is
17515             supported
17516           - Forces style update when drop state changes
17517         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
17518           not perfect since we cannot (yet) call the IDataObject.GetData()
17519           method, we keep getting 0x80004005 error, dunno why)
17520
17521 2005-06-02  Peter Bartok  <pbartok@novell.com>
17522
17523         * DragEventArgs.cs: Make fields internal so we can cache the
17524           object and re-set the fields from XplatUI
17525
17526 2005-06-02  Jackson Harper  <jackson@ximian.com>
17527
17528         * Control.cs: Add some internal methods so the DnD subsystem can
17529         raise DnD events. Also call into the driver when AllowDrop is set.
17530         * XplatUI.cs:
17531         * XplatUIDriver.cs: New method for setting whether or not a window
17532         is allowed to accept drag and drop messages.
17533                 
17534 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
17535         
17536         * ScrollBar.cs: Make sure that values sent in Scroll events
17537         are always between Maximum and Minimum.
17538
17539 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
17540
17541         * Menu.cs: Call MenuChanged when menuitem visibility has been
17542         changed.
17543         * MenuItem.cs: Rebuild menu when item is (not) visible.
17544         * MainMenu.cs: MainMenu has special MenuChanged.
17545         * Theme.cs: Caption and FrameBorderSize are not fixed.
17546         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
17547         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
17548         * XplatUIX11.cs,
17549         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
17550         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
17551
17552 2005-05-30  Jackson Harper  <jackson@ximian.com>
17553
17554         * DataFormat.cs: We can't statically initialize this stuff because
17555         it calls into the xplatui and could create a loop. So we lazy init
17556         it.
17557
17558 2005-05-28  Jackson Harper  <jackson@ximian.com>
17559
17560         * Control.cs: Proper implementation of Product(Name/Version).
17561
17562 2005-05-27  Jackson Harper  <jackson@ximian.com>
17563
17564         * DataObject.cs: Dont crash if no data is found.
17565
17566 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
17567         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
17568                 as per status page, guessing it should be set to true
17569
17570 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
17571
17572         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
17573         * DataGridTableStyle.cs: set proper formatting text, def header text
17574         * ThemeWin32Classic.cs: new themable paramaters
17575         * DataGridBoolColumn.cs: paint check box, get data, fixes
17576         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
17577         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
17578         * DataGridColumnStyle.cs: fixes
17579         * Theme.cs: new themable paramaters
17580                 
17581 2005-05-26  Peter Bartok  <pbartok@novell.com>
17582
17583         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
17584
17585 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17586         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
17587
17588 2005-05-24  Peter Bartok  <pbartok@novell.com>
17589
17590         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
17591           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
17592           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
17593           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
17594           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
17595           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
17596           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
17597           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
17598           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
17599           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
17600           missing attributes, etc
17601         * DataGridPreferredColumnWidthTypeConverter.cs: Added
17602
17603 2005-05-24  Peter Bartok  <pbartok@novell.com>
17604
17605         * Help.cs: Added, implemented trivial functions, throws up MessageBox
17606           when user tries to get help
17607         * DataObject.cs, DataFormats.cs, LinkArea.cs,
17608           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
17609           to suppress warnings
17610         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
17611           avoid unreachable code warning
17612
17613 2005-05-20  Peter Bartok  <pbartok@novell.com>
17614
17615         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
17616
17617 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17618
17619         * DataGridTextBoxColumn.cs: Basic painting methods
17620         * DataGridTableStyle.cs: Set table style in the column
17621         * ThemeWin32Classic.cs: Use Theme for colors
17622         * DataGridDrawingLogic.cs: Implement more drawing
17623         * DataGrid.cs: drawing, theming, enhacements, fixes
17624         * DataGridColumnStyle.cs: fixes, drawing
17625         * Theme.cs: theming for Datagrid
17626
17627 2005-05-20  Peter Bartok  <pbartok@novell.com>
17628
17629         * Cursor.cs: Implemented GetObjectData() method
17630
17631 2005-05-20  Peter Bartok  <pbartok@novell.com>
17632
17633         * Cursors.cs: Added setting of cursor name
17634         * Cursor.cs:
17635           - Implemented constructors
17636           - Implemented Draw and DrawStretched
17637           - Implemented Current property
17638           - Implemented == and != operators
17639           - Implemented Dispose()
17640           - Implemented ToString
17641           - Added missing attributes
17642         * XplatUIX11.cs:
17643           - Added missing reset for OverrideCursor when DoEvents is called
17644           - Fixed creation of cursor, logic was wrong
17645         * XplatUIWin32.cs:
17646           - Added missing reset for OverrideCursor when DoEvents is called
17647           - Fixed creation of cursor, bit arrays were swapped
17648         * Clipboard.cs: Removed obsolete MonoTODO attribute
17649
17650 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17651
17652         * ComboBox.cs: fixes OnSelectedItemChanged
17653         * ControlBindingsCollection.cs: fixes item range check
17654
17655 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
17656
17657         * UpDownBase.cs:
17658                 - Calc preferred height properly
17659                 - Implement missing properties
17660                 
17661         * NumericUpDown.cs: Implement missing events
17662
17663 2005-05-19  Jackson Harper  <jackson@ximian.com>
17664
17665         * TabControl.cs: New method that resizes the tab pages before
17666         redrawing them. This as needed as the control is double buffered
17667         and sizing will not be recalculated unless ResizeTabPages is
17668         called.
17669         * TabPage.cs: Set base.Text instead of Text in the constructor so
17670         that UpdateOwner does not get called. Use the new Redraw method of
17671         TabControl instead of Refresh so the sizing is recalculated.
17672         * ThemeWin32Classic.cs: Draw the text for button tabs.
17673
17674 2005-05-19  Jackson Harper  <jackson@ximian.com>
17675
17676         * Control.cs: Paint control background images. Fix typo where
17677         PaintControlBackground was not getting called correctly.
17678
17679 2005-05-19  Peter Bartok  <pbartok@novell.com>
17680
17681         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
17682           I can investigate, apparently I broke FileDialog
17683
17684 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
17685
17686         * AxHost.cs: Some simple properties.
17687         * Control.cs: window must be accessible after ctor.
17688         * Form.cs: Added TransparencyKey property.
17689         * TextBoxBase.cs: Implemented Clear. Text property can be null.
17690         * XplatUIWin32.cs: SetBorderStyle implemented.
17691
17692 2005-05-18  Peter Bartok  <pbartok@novell.com>
17693
17694         * DataObject.cs: Entries are not global but particular to the
17695           DataObject, now it behaves that way
17696         * XplatUIWin32.cs: Implemented Clipboard methods
17697         * Clipboard.cs: Implemented
17698         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
17699         * XplatUIOSX.cs: Updated to final clipboard prototypes
17700         * XplatUIX11.cs: Implemented Clipboard methods
17701         * XplatUIDriver.cs: Updated to final clipboard prototypes
17702         * XplatUIStructs.cs:
17703           - Added BITMAPINFOHEADER struct
17704           - Added ClipboardFormats enum
17705         * X11Structs.cs:
17706           - Added ClipboardStruct
17707           - Added Atom enum items for clipboard types
17708           - Fixed atom types for Selection event structures
17709         * DataFormats.cs:
17710           - Added internal properties and methods for drivers to enumerate
17711             all known formats
17712           - Switched initialization method to allow drivers to assign their
17713             own IDs even for the MS predefined clipboard IDs
17714         * XplatUI.cs: Updated to final clipboard interface
17715
17716 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17717         * PropertyGridView.cs: Fixed compiler warnings.
17718
17719 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
17720         * PropertyGrid.cs: Added some event calls
17721         * PropertyGridView.cs: Change drawing code to use double buffering
17722         * PropertyGridTextBox.cs: Changed Text property name
17723         * GridItem.cs: Added Bounds property.
17724         * GridEntry.cs: Added Bounds property.
17725
17726 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
17727
17728         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
17729         since GetType() may not return the correct type if the object is
17730         a remoting proxy.
17731
17732 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
17733
17734         * TreeNodeCollection.cs: fixes get/set item ranges
17735         
17736 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17737
17738         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
17739                 
17740 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
17741
17742         * ComboBox.cs: Fix item range comparation
17743         * ListView.cs: Fix item range comparation
17744
17745 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
17746
17747         * FontDialog.cs:
17748           - Clear example panel when OnPaint is called
17749           - Better solution for displaying the example panel text
17750           - Select default indexes in the ListBoxes
17751
17752 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17753
17754         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
17755
17756 2005-05-11  Peter Bartok  <pbartok@novell.com>
17757
17758         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
17759         * SelectionRangeConverter.cs: Implemented
17760         * PropertyGrid.cs: Fixed attribute value
17761         * Control.cs:
17762           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
17763           - Added Sebastien Pouliot's CAS Stack Propagation fixes
17764         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
17765           that's common to all drivers. First methods to go there are
17766           Sebastien Pouliot's CAS Stack Propagation helper methods
17767         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
17768           Sebastien Pouliot for CAS Stack Propagation
17769
17770 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
17771
17772         * OSXStructs.cs:
17773           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
17774
17775 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
17776
17777         * DataGridTextBoxColumn.cs: fixed some members
17778         * GridColumnStylesCollection.cs: indexed column is case insensitive
17779         * DataGridTableStyle.cs: fixes
17780         * ThemeWin32Classic.cs: add new theme parameter
17781         * Theme.cs: add new theme parameter
17782         * DataGridDrawingLogic.cs: Datagrid's drawing logic
17783         * DataGrid.cs: fixes, new internal properties, etc.
17784         * DataGridColumnStyle.cs: allows to set grid value
17785         *
17786
17787 2005-05-10  Peter Bartok  <pbartok@novell.com>
17788
17789         * AccessibleObject.cs:
17790           - Removed MonoTODO attribute on help, method is correct
17791           - Fixed Bounds property
17792         * AxHost.cs: Moved MonoTODO
17793         * ButtonBase.cs: Now setting AccessibleObject properties
17794         * RadioButton.cs: Setting proper AccessibleObject role
17795         * CheckBox.cs: Setting proper AccessibleObject role
17796         * ControlBindingsCollection.cs: Added properties, methods and attributes
17797         * DataFormats.cs: Fixed awkward internal API, and changed to enable
17798           userdefined DataFormats.Format items as well
17799         * ListControl.cs: Removed data_member from the public eye
17800         * OpenFileDialog.cs:
17801           - Made class sealed
17802           - Added missing attributes
17803         * SaveFileDialog.cs: Added missing attributes
17804         * ImageListStreamer.cs: Fixed code that caused warnings
17805         * LinkLabel.cs: Removed unreachable code
17806         * TreeView.cs: Fixed code that caused warnings
17807         * PropertyGridView.cs: Fixed code that caused warnings
17808         * GridColumnStylesCollection.cs: Added missing attributes
17809         * GridTableStylesCollection: Added missing attribute
17810         * PropertyManager: Added .ctor
17811         * SecurityIDType: Added
17812         * DataObject.cs: Implemented class
17813         * LinkArea.cs: Added missing attribute
17814
17815 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
17816
17817         * RadioButton.cs: call base method to allow to fire OnClick event
17818         * UpDownBase.cs: OnMouseUp call base method
17819         * CheckedListBox.cs: call base method before returning
17820         * TrackBar.cs: call base method before returning
17821         
17822
17823 2005-05-10  Peter Bartok  <pbartok@novell.com>
17824
17825         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
17826           for messages
17827
17828 2005-05-10  Peter Bartok  <pbartok@novell.com>
17829
17830         * DataFormats.cs: Implemented
17831         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
17832           XplatUIX11.cs: Added Clipboard APIs
17833         * XplatUIWin32.cs: Implemented Clipboard APIs
17834         * FolderBrowserDialog.cs: Added missing event, attributes
17835
17836 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
17837
17838         * CheckBox.cs: call base method to allow to fire OnClick event
17839
17840 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
17841
17842         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
17843
17844 2005-05-06  Peter Bartok  <pbartok@novell.com>
17845
17846         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
17847         * Screen.cs: Implemented
17848         * HelpNavigator.cs: Added
17849         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
17850           property
17851         * HelpProvider.cs: Implemented all we can do until we have a CHM
17852           help library (which means that "What's This" does work now)
17853
17854 2005-05-06  Jackson Harper  <jackson@ximian.com>
17855
17856         * XplatUIX11.cs: Fix waking up the main loop.
17857                 
17858 2005-05-05  Peter Bartok  <pbartok@novell.com>
17859
17860         * XplatUI.cs: Updated revision
17861         * Form.cs: Removed enless loop
17862         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
17863         * Label.cs (OnPaint): Added call to base.OnPaint()
17864         * ToolTip.cs: Made ToolTipWindow reusable for other controls
17865         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
17866         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
17867         * AxHost.cs: Added
17868         * ButtonBase.cs: Moved base.OnPaint() call to end of method
17869         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
17870           to ToolTip.ToolTipWindow for drawing and size methods; this allows
17871           reuse of ToolTipWindow by other controls
17872         * SizeGrip.cs: Moved base.OnPaint() call to end of method
17873         * XplatUIX11.cs: Now clipping drawing area (experimental)
17874         * PictureBox.cs: Moved base.OnPaint() call to end of method
17875         * Theme.cs: Fixed ToolTip abstracts to match new format
17876         * ErrorProvider.cs: Implemented
17877
17878 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
17879
17880         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
17881         * LinkLabel.cs:
17882                 - Adds cursors
17883                 - Handles focus
17884                 - Implements LinkBehavior
17885                 - Fixes many issues
17886
17887 2005-05-03  Jackson Harper  <jackson@ximian.com>
17888
17889         * ListView.cs: Calculate the scrollbar positioning on resize and
17890         paint, so they get put in the correct place.
17891
17892 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
17893
17894         * ColorDialogs.cs: The small color panels are now handled by
17895           SmallColorControl. This fixes drawing of the focus rectangle
17896           and adds a 3D border.
17897
17898 2005-05-03  Peter Bartok  <pbartok@novell.com>
17899
17900         * Control.cs: Modified version of Jonathan Chamber's fix for
17901           double-buffering
17902
17903 2005-05-03  Jackson Harper  <jackson@ximian.com>
17904
17905         * ListView.cs: Remove redraw variable. Control now handles whether
17906         or not a redraw needs to be done, and will only raise the paint
17907         event if redrawing is needed.
17908
17909 2005-05-03  Jackson Harper  <jackson@ximian.com>
17910
17911         * Splitter.cs: No decorations for the splitter form. Cache the
17912         hatch brush.
17913
17914 2005-05-03  Jackson Harper  <jackson@ximian.com>
17915
17916         * TreeView.cs: Use dashed lines to connect nodes. Use the
17917         ControlPaint method for drawing the focus rect instead of doing
17918         that in treeview.
17919
17920 2005-05-02  Peter Bartok  <pbartok@novell.com>
17921
17922         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
17923
17924 2005-04-29  Jackson Harper  <jackson@ximian.com>
17925
17926         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
17927         entire image buffer. Just clear the clipping rectangle.
17928
17929 2005-04-29  Jackson Harper  <jackson@ximian.com>
17930
17931         * ThemeWin32Classic.cs: Don't draw list view items that are
17932         outside the clipping rectangle.
17933
17934 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
17935
17936         * ListBox.cs: added horizontal item scroll
17937
17938 2005-04-29  Jackson Harper  <jackson@ximian.com>
17939
17940         * ThemeWin32Classic.cs: Remove some old debug code that was
17941         causing flicker with the new double buffering code.
17942
17943 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
17944
17945         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
17946         behave like combobox and comboboxlist (still not sure if this is
17947         correct though).
17948
17949 2005-04-28  Jackson Harper  <jackson@ximian.com>
17950
17951         * ThemeWin32Classic.cs: Don't fill the middle of progress
17952         bars. This fills areas outside of the clip bounds that don't need
17953         to be filled.
17954
17955 2005-04-28  Jackson Harper  <jackson@ximian.com>
17956
17957         * Control.cs: Don't expose functionality to touch the image buffers.
17958         * ProgressBar.cs:
17959         * ListView.cs: We do not need to (and no longer can) manipulate
17960         the image buffers directly. All of this is handled by Control.
17961
17962 2005-04-28  Peter Bartok  <pbartok@novell.com>
17963
17964         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
17965           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
17966           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
17967
17968 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
17969
17970         * Combobox:
17971                 - Adjust control's height for non-simple comboboxes (bug fix)
17972                 - Remove dead code
17973         * MenuAPI.cs: remove unused var
17974         * ScrollBar.cs: remove unsed var
17975                  
17976         * ListBox.cs: unselect items when clearing
17977
17978 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
17979
17980         * ListControl.cs: honors OnPositionChanged and default Selected Item
17981         * ListBox.cs: unselect items when clearing
17982
17983 2005-04-27  Jackson Harper  <jackson@ximian.com>
17984
17985         * X11Keyboard.cs: Initialize a default keyboard and give a warning
17986         if a "correct" keyboard is not found. This will make us not crash,
17987         but might give some users bad keyboard layouts...seems to be the
17988         same thing rewind does.
17989
17990 2005-04-27  Jackson Harper  <jackson@ximian.com>
17991
17992         * BindingManagerBase.cs: Attach the current/position changed
17993         handlers to their respective events.
17994
17995 2005-04-27  Jackson Harper  <jackson@ximian.com>
17996
17997         * Control.cs: Make sure that the first WM_PAINT does a full draw,
17998         not just a blit.
17999         * ThemeWin32Classic.cs: Don't fill the background for picture
18000         boxes. This could overright user drawing.
18001         * ComboBox.cs: Just fill the clipping rect not the entire client
18002         rect when drawing the background. This prevents pieces of the
18003         image buffer from getting overwritten and is theoretically faster.
18004
18005 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
18006
18007         * ComboBox.cs: Databinding support fixes, fire missing events
18008         * ListControl.cs: implement missing methods and properties, fixes
18009         * ThemeWin32Classic.cs: Databiding support on Drawing
18010         * CheckedListBox.cs: Databinding support fixes, fire missing events
18011         * ListBox.cs: Databinding support fixes, fire missing events
18012         
18013 2005-04-25  Peter Bartok  <pbartok@novell.com>
18014
18015         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
18016
18017 2005-04-25  Jackson Harper  <jackson@ximian.com>
18018
18019         * TreeView.cs: Use the horizontal scrollbars height not width when
18020         determining how much of the client area is available.
18021
18022 2005-04-25  Jackson Harper  <jackson@ximian.com>
18023
18024         * Control.cs: Double buffering is handled differently now. As per
18025         the spec, the extra buffer is created in the WM_PAINT message and
18026         passed down to the control's drawing code.
18027         * GroupBox.cs:
18028         * Label.cs:
18029         * CheckBox.cs:
18030         * ProgressBar.cs:
18031         * RadioButton.cs:
18032         * ColorDialog.cs:
18033         * ComboBox.cs:
18034         * PropertyGridView.cs:
18035         * UpDownBase.cs:
18036         * MessageBox.cs:
18037         * MenuAPI.cs:
18038         * ListView.cs:
18039         * ButtonBase.cs:
18040         * SizeGrip.cs:
18041         * ScrollBar.cs:
18042         * ListBox.cs:
18043         * TrackBar.cs:
18044         * ToolBar.cs:
18045         * PictureBox.cs:
18046         * DateTimePicker.cs:
18047         * StatusBar.cs:
18048         * TreeView.cs: Update to new double buffering system.
18049         * MonthCalendar.cs: Uncomment block, as Capture is now
18050         working. Update to new double buffering
18051         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
18052         * PaintEventArgs.cs: New internal method allows us to set the
18053         graphics object. This is used for double buffering.
18054         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
18055         rectangle. The internal paint_area var has been removed from
18056         StatusBar. The clipping rect should be used instead.
18057         * Theme.cs: Give the PictureBox drawing method a clipping rect.
18058         * TabPage.cs: The RefreshTabs method was removed, so just call the
18059         tab controls Refresh method now.
18060         * TabControl.cs: Update to new double buffering. Make sure the
18061         handle is created before sizing the tab pages, otherwise we will
18062         get stuck in a loop.
18063
18064 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
18065
18066         * LinkLabel.cs: Fix typo, bug #74719; patch
18067           from Borja Sanchez Zamorano
18068
18069 2005-04-22  Jackson Harper  <jackson@ximian.com>
18070
18071         * TreeNode.cs: Implement Handle stuff.
18072         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
18073
18074 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
18075
18076         * DataGridTextBoxColumn.cs: call base constructors, fixes
18077         * GridColumnStylesCollection.cs: missing events, methods, and functionality
18078         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
18079         * DataGridTableStyle.cs: implements create default column styles
18080         * DataGridBoolColumn.cs: which types can handle
18081         * DataGrid.cs: missing methods, fixes, new functionality
18082         * DataGridColumnStyle.cs: fixes
18083
18084 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
18085         * FolderBrowserDialog.cs:
18086         - Use a thread to fill the TreeView
18087         - Adjusted some sizes
18088
18089 2005-04-19  Peter Bartok  <pbartok@novell.com>
18090
18091         * LinkLabel.cs: (Re-)create the pieces when setting the Text
18092           property. Fixes #74360.
18093
18094 2005-04-19  Jackson Harper  <jackson@ximian.com>
18095
18096         * XEventQueue.cs: Lock when getting the lockqueue size.
18097         * PictureBox.cs: Call base OnPaint
18098         
18099 2005-04-19  Peter Bartok  <pbartok@novell.com>
18100
18101         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
18102           messages were no longer being processed (this broke BeginInvoke)
18103
18104           
18105 2005-04-18  Jackson Harper  <jackson@ximian.com>
18106
18107         * TreeView.cs: buglet that caused node images to get drawn
18108         regardless of whether or not they were in the clipping rectangle.
18109
18110 2005-04-18  Jackson Harper  <jackson@ximian.com>
18111
18112         * CurrencyManager.cs: There are four rules for GetItemProperties:
18113         - If the type is an array use the element type of the array
18114         - If the type is a typed list, use the type
18115         - If the list contains an Item property that is not an object, use
18116         that property
18117         - use the first element of the list if there are any elements in
18118         the list.
18119         
18120 2005-04-17  Jackson Harper  <jackson@ximian.oom>
18121
18122         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
18123         click. This handles offsets for scrolling properly and reduces
18124         memory. Also fixed GetNode to not offset now that TopNode works
18125         properly.
18126         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
18127         
18128 2005-04-17  Jackson Harper  <jackson@ximian.com>
18129
18130         * CursorConverter.cs: Initial implementation.
18131
18132 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18133
18134         * ListControl.cs: work towards complex data binding support on ListControl
18135         * CurrencyManager.cs: work towards complex data binding support on ListControl
18136         * ListBox.cs: work towards complex data binding support on ListControl
18137
18138
18139 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
18140
18141         * GridTableStylesCollection.cs: fixes name and constructor
18142         * DataGridTableStyle.cs: fixes
18143         * DataGridBoolColumn.cs: fixes names and constructors
18144         * DataGrid.cs: define methods and properties. Some init implementations
18145         * DataGridCell.cs: define methods and properties. Some init implementations
18146         * GridTablesFactory.cs: Define methods and properties
18147
18148 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
18149
18150         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
18151         graphics port changes.  We still want the coordinates in global screen
18152         coordinates.
18153
18154 2005-04-14  Jackson Harper  <jackson@ximian.com>
18155
18156         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
18157         check plus minus or checkbox clicks unless those features are enabled.
18158
18159 2005-04-14  Jackson Harper  <jackson@ximian.com>
18160
18161         * TreeView.cs: Add methods for setting the top and bottom visible
18162         nodes. TreeNode::EnsureVisible uses these methods.
18163         * TreeNode.cs: Implement EnsureVisible
18164
18165 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
18166
18167         * Form.cs: Pospone menu assignation if the window has not been created yet
18168         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
18169         size and position
18170
18171 2005-04-12  Jackson Harper  <jackson@ximian.com>
18172
18173         * TreeView.cs: Set the TopNode properly when scrolling
18174         occurs. This has the added benifit of reducing the amount of
18175         walking that needs to be done when drawing. Also removed an old
18176         misleading TODO.
18177         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
18178         
18179 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
18180
18181         * Timer.cs: fixes interval setting when the timer is already enabled
18182         
18183 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
18184
18185         * FolderBrowserDialog.cs: First approach
18186
18187 2005-04-09  Peter Bartok  <pbartok@novell.com>
18188
18189         * FolderBrowserDialog: Added
18190
18191 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
18192
18193         * LinkLabel.cs: move drawing code into the theme
18194         * ThemeWin32Classic.cs: drawing code and painting background bugfix
18195         * Theme.cs: define DrawLinkLabel method
18196
18197 2005-04-05  Jackson Harper  <jackson@ximian.com>
18198
18199         * BindingContext.cs: Use weak references so these bad actors don't
18200         stay alive longer then they need to.
18201
18202 2005-04-05  Jackson Harper  <jackson@ximian.com>
18203
18204         * ListControl.cs: Basic implementation of complex databinding.
18205         * ComboBox.cs:
18206         * ListBox.cs: Add calls to ListControl databinding methods.
18207
18208 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
18209
18210         * FileDialog.cs:
18211           - Don't change PopupButtonState to Normal when the
18212             PopupButton gets pressed several times.
18213           - Renamed ButtonPanel to PopupButtonPanel
18214
18215 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
18216
18217         * ColorDialog.cs: Use cached objects instead of creating them
18218         * LinkLabel.cs: Use cached objects instead of creating them
18219         * Splitter.cs: Use cached objects instead of creating them
18220         * FontDialog.cs: Use cached objects instead of creating them
18221         * PropertyGridView.cs: Use cached objects instead of creating them
18222         * MessageBox.cs: Use cached objects instead of creating them
18223         * FileDialog.cs: Use cached objects instead of creating them
18224         * ThemeWin32Classic.cs: Use cached objects instead of creating them
18225         * TreeView.cs: Use cached objects instead of creating them
18226         
18227 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
18228
18229         * Control.cs: use Equals to compare the font since no == op
18230         * ScrollBar.cs: use Equals to compare the font since no == op
18231
18232 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
18233
18234         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
18235
18236 2005-04-01  Jackson Harper  <jackson@ximian.com>
18237
18238         * Binding.cs: Implement IsBinding.
18239         * BindingManagerBase.cs:
18240         * PropertyManager.cs:
18241         * CurrencyManager.cs: Add IsSuspended property.
18242
18243 2005-04-01  Jackson Harper  <jackson@ximian.com>
18244
18245         * Binding.cs: Had some IsAssignableFrom calls backwards.
18246
18247 2005-04-01  Jackson Harper  <jackson@ximian.com>
18248
18249         * Binding.cs: Handle null data members when pulling data.
18250         * PropertyManager.cs: Handle the data member being a property that
18251         does not exist.
18252
18253 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
18254
18255         * DataGridTextBoxColumn.cs: fixes signature
18256         * DataGrid.cs: calls right constructor
18257
18258 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
18259
18260         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
18261         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
18262         * GridTableStylesCollection.cs: implements GridTableStylesCollection
18263         * DataGridTableStyle.cs: implements DataGridTableStyle
18264         * DataGridBoolColumn.cs: implements DataGridBoolColumn
18265         * DataGridTextBox.cs: implements DataGridTextBox
18266         * DataGridColumnStyle.cs: implements DataGridColumnStyle
18267
18268 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
18269
18270         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
18271
18272 2005-03-29  Peter Bartok  <pbartok@novell.com>
18273
18274         * Application.cs:
18275           - Properly implemented CompanyName property
18276           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
18277             returns a path that includes CompanyName, ProductName and
18278             Version (fixes bug #70330)
18279
18280 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
18281
18282         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
18283           fixes bug #72588.
18284
18285 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
18286
18287         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
18288         
18289           - Added ReadOnly CheckBox
18290           - Further refactoring: moved some code from Open-/SaveFileDialog
18291             to FileDialog
18292
18293 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
18294
18295         * OpenFileDialog.cs: Fixed CheckFileExists
18296         * FileDialog.cs:
18297           Moved FileView and DirComboBox outside FileDialog class.
18298           They can now be used outside FileDialog
18299
18300 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
18301
18302         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
18303         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
18304
18305 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
18306
18307         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18308           - Added missing CreatePrompt property in SaveDialog
18309           - Overall SaveDialog handling should be better now
18310           - Added non standard ShowHiddenFiles property
18311           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
18312           - Added InitialDirectory and RestoreDirectory support
18313
18314 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
18315
18316         * FileDialog.cs: Made dirComboBox usable
18317
18318 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
18319
18320         * FileDialog.cs: Added Filter support (case sensitiv)
18321
18322 2005-03-24  Jackson Harper  <jackson@ximian.com>
18323
18324         * TabControl.cs: Need a couple more pixels for the lines.
18325
18326 2005-03-23  Jackson Harper  <jackson@ximian.com>
18327
18328         * TabControl.cs: Give the tab page focus when it is selected.
18329
18330 2005-03-23  Jackson Harper  <jackson@ximian.com>
18331
18332         * TabControl.cs: Account for the drawing of tabs borders when
18333         invalidating. If the slider was clicked dont do click detection on
18334         the tabs.
18335
18336 2005-03-23  Jackson Harper  <jackson@ximian.com>
18337
18338         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
18339
18340 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
18341
18342         * CategoryGridEntry.cs: Added
18343         * GridItem.cs: Added helper properties
18344         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
18345         * GridEntry.cs: Updated code for collection
18346         * PropertyGrid.cs: Cleaned up some formatting
18347         * PropertyGridView.cs: Added drop down functionality for enums.
18348         * GridItemCollection.cs: Added enumerator logic
18349         * PropertyGridEntry.cs: Added
18350
18351 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
18352
18353         * FileDialog.cs:
18354           - Removed unnecessary commented code
18355           - Fixed handling for entering the filename manually in the combobox
18356
18357 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
18358
18359         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
18360
18361 2005-03-18  Peter Bartok  <pbartok@novell.com>
18362
18363         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
18364           them being touching the border
18365
18366 2005-03-18  Peter Bartok  <pbartok@novell.com>
18367
18368         * TextControl.cs: Quick hack to center text better
18369
18370 2005-03-18  Peter Bartok  <pbartok@novell.com>
18371
18372         * ControlPaint.cs:
18373           - Don't throw NotImplemented exceptions, just print a notice once
18374             instead (requested by Miguel). This makes running existing SWF
18375             apps a bit easier
18376         * Control.cs:
18377           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
18378           - Added context menu trigger on right click
18379         * Panel.cs: Trigger invalidate on resize
18380         * StatusBar.cs:
18381           - Removed old double-buffer drawing
18382           - Added ResizeRedraw style to force proper update of statusbar
18383         * ListView.cs:
18384           - Removed debug output
18385         * ThemeWin32Classic.cs:
18386           - Fixed drawing of status bar, now draws Text property if there
18387             are no defined panels
18388
18389 2005-03-18  Jackson Harper  <jackson@ximian.com>
18390
18391         * ImageList.cs: When the image stream is set pull all the images
18392         from it.
18393         * ImageListStreamer.cs: Implement reading image list streams.
18394
18395 2005-03-18  Peter Bartok  <pbartok@novell.com>
18396
18397         * ThemeWin32Classic.cs (DrawPictureBox):
18398           - Fixed calculations for centered drawing
18399           - Fixed drawing for normal mode, not scaling the image on normal
18400
18401 2005-03-18  Peter Bartok  <pbartok@novell.com>
18402
18403         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
18404           textbox
18405         * FileDialog.cs:
18406           - Made Open/Save button the accept button for FileDialog
18407           - Tied the cancel button to the IButtonControl cancel button
18408           - Save/Open now properly builds the pathname
18409           - Now handles user-entered text
18410           - Preventing crash on right-click if no item is selected
18411           - Fixed Text property, now uses contents of textbox
18412           - Fixed SelectedText property, now just returns the text part that
18413             is selected in the text box
18414
18415 2005-03-18  Jackson Harper  <jackson@ximian.com>
18416
18417         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
18418         rect, make sure to de-adjust the interior rect after drawing the
18419         tab text.
18420
18421 2005-03-18  Peter Bartok  <pbartok@novell.com>
18422
18423         * MenuAPI.cs: Remove menu *before* executing selected action to
18424           prevent the menu from 'hanging around'
18425           
18426 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
18427
18428         * XplatUIOSX.cs: Implemented WorkingArea property
18429
18430 2005-03-17  Peter Bartok  <pbartok@novell.com>
18431
18432         * XplatUIX11.cs: Fixed menu coord calculations
18433         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
18434           for calculating offsets
18435
18436 2005-03-17  Peter Bartok  <pbartok@novell.com>
18437
18438         * Hwnd.cs: Do not consider menu presence for default client
18439           rectangle location/size
18440         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
18441           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
18442           translation functions
18443         * FileDialog.cs: Fixed (what I presume is a) typo
18444
18445 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
18446
18447         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
18448           X access (avoids X-Async errors)
18449
18450 2005-03-16  Jackson Harper  <jackson@ximian.com>
18451
18452         * TabControl.cs: Raise the SelectedIndexChanged event.
18453
18454 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
18455
18456         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
18457           - Removed vertical ToolBar and replaced it with a custom panel
18458             (desktop and home button already work)
18459           - Added Help button (some controls get resized or relocated then)
18460           - Draw correct text depending on Open or Save.
18461           - Fixed some typos...
18462
18463 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
18464
18465         * ScrollBar.cs:
18466           - Only change Maximum and Minimum when need it (bug fix)
18467
18468 2005-03-15  Peter Bartok  <pbartok@novell.com>
18469
18470         * Form.cs: Use Handle for icon, to trigger creation if
18471           the window does not yet exist
18472         * Control.cs:
18473           - CanSelect: Slight performance improvement
18474           - Focus(): Preventing possible recursion
18475           - Invalidate(): Removed ControlStyle based clear flag setting
18476           - WM_PAINT: fixed logic for calling OnPaintBackground
18477           - WM_ERASEBKGND: Fixed logic, added call to new driver method
18478             EraseWindowBackground if the control doesn't paint background
18479         * XplatUIWin32.cs:
18480           - Moved EraseWindowBackground() method to internal methods
18481           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
18482             is sent via SendMessage on BeginPaint call on Win32
18483         * XplatUIX11.cs:
18484           - Added EraseWindowBackground() method
18485           - No longer sends WM_ERASEBKGND on .Expose, but on call to
18486             PaintEventStart, which more closely matches Win32 behaviour
18487           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
18488           - Fixed SetFocus() to properly deal with client and whole windows
18489         * Hwnd.cs: Added ErasePending property
18490         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
18491         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
18492
18493 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
18494
18495         * XplatUIOSX.cs:
18496           - Fix hard loop when timers exist.
18497           - Fix bugs with middle and right click for 3 button mice.
18498
18499 2005-03-11  Peter Bartok  <pbartok@novell.com>
18500
18501         * XplatUIX11.cs:
18502           - get_WorkingArea: Need to call X directly, GetWindowPos only
18503             returns cached data now
18504           - Added sanity check to GetWindowPos hwnd usage
18505
18506 2005-03-11  Jackson Harper  <jackson@ximian.com>
18507
18508         * BindingManagerBase.cs: This method isn't used anymore as
18509         PullData now updates the data in the control.
18510
18511 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
18512
18513         * Form.cs: fixes menu drawing on X11
18514         * MenuAPI.cs:  fixes menu drawing on X11
18515
18516 2005-03-11  Peter Bartok  <pbartok@novell.com>
18517
18518         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
18519           from Jonathan Gilbert; should fix bug #73606
18520         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
18521           in Screen coordinates. Thanks, Jordi.
18522         * Form.cs: Added missing attribute
18523
18524 2005-03-11  Peter Bartok  <pbartok@novell.com>
18525
18526         * Form.cs:
18527           - Rudimentary Mdi support
18528           - Removed outdated FormParent code
18529           - Implemented lots of missing properties and methods, still missing
18530             transparency support
18531           - Added missing attributes
18532           - Implemented support for MaximumBounds
18533           - Added firing of various events
18534         * XplatUI.cs: Added SetIcon() method
18535         * XplatUIDriver.cs: Added SetIcon() abstract
18536         * XplatUIOSX.cs: Stubbed out SetIcon() method
18537         * XplatUIX11.cs:
18538           - Implemented SetIcon() support
18539           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
18540           - Switched to unix line endings
18541         * XplatUIWin32.cs:
18542           - Made POINT internal so for can access it as part of MINMAX
18543           - Implemented SetIcon() support
18544           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
18545             native Mdi support again, might have to go managed)
18546         * Control.cs: Now fires the StyleChanged event
18547         * MdiClient.cs: Added; still mostly empty
18548
18549 2005-03-10  Peter Bartok  <pbartok@novell.com>
18550
18551         * SaveFileDialog.cs: Added emtpy file
18552
18553 2005-03-08  Peter Bartok  <pbartok@novell.com>
18554
18555         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
18556           in turn triggers OnCreateContro) when creating a handle for the
18557           first time.
18558         * TextControl.cs: Fixed endless loop in certain cases when
18559           replacing the current selection
18560
18561 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
18562
18563         * ScrollBar.cs:
18564           - Honors NewValue changes in Scroll events allowing apps to change it
18565           - Adds First and Last Scroll events
18566           - Fixes Thumb events
18567
18568 2005-03-07  Peter Bartok  <pbartok@novell.com>
18569
18570         * Hwnd.cs: Added DefaultClientRectangle property
18571         * XplatUI.cs: Now using the X11 driver Where() method, which provides
18572           more detailed debug information
18573         * XplatUIX11.cs:
18574           - Fixed size-change feedback loop, where we would pull an old size
18575             off the queue and mistakenly change our window's size to an
18576             earlier value
18577           - Now compressing ConfigureNotify events, to reduce looping and
18578             redraw issues
18579         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
18580           is called
18581
18582 2005-03-07  Jackson Harper  <jackson@ximian.com>
18583
18584         * Binding.cs: Push data pushes from data -> property. Check if the
18585         property is readonly when attempting to set it.
18586
18587 2005-03-07  Jackson Harper  <jackson@ximian.com>
18588
18589         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
18590         instead of IsSubclassOf. Pulling data now sets the value on the
18591         control.
18592         * PropertyManager.cs:
18593         * CurrencyManager.cs: Just need to pull data when updating now,
18594         because PullData will set the value on the control.
18595
18596 2005-03-04  Jackson Harper  <jackson@ximian.com>
18597
18598         * Binding.cs: Implement data type parsing and converting on pulled
18599         data. TODO: Are there more ways the data can be converted?
18600
18601 2005-03-04  Jackson Harper  <jackson@ximian.com>
18602
18603         * Binding.cs: Support <Property>IsNull checks. Also bind to the
18604         controls Validating method so we can repull the data when the
18605         control loses focus.
18606
18607 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
18608
18609         * ColumnHeader.cs:
18610           - Fixes null string format
18611           
18612         * ListView.cs:
18613           - Adds enum type checks
18614           - Fixes redrawing and recalc need after changing some properties
18615           - Fixes on focus_item set after the event
18616           - Fixes adding columns after the control has been created
18617           
18618         * ThemeWin32Classic.cs:
18619           - Fixes CheckBox focus rectangle
18620           - Fixes ColumnHeader drawing
18621
18622
18623 2005-03-03  Jackson Harper  <jackson@ximian.com>
18624
18625         * Binding.cs: Bind to <Property>Changed events so we can detect
18626         when properties are changed and update the data.
18627
18628 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
18629
18630         * ImageList.cs:
18631           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
18632           - Fixes ImageList constructor with ImageList container
18633           - Fixes image scaling (wrong parameters at DrawImage)
18634
18635 2005-02-02  Jackson Harper  <jackson@ximian.com>
18636
18637         * Binding.cs: Make property searches case-insensitive. Eliminate
18638         some duplicated code.
18639
18640 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
18641
18642         * ComboBox.cs:
18643                 - Handle focus event
18644                 - Fix scrollbar events
18645                 - Discard highlighted item if remove it
18646                 - Fixes SelectedItem with strings
18647
18648 2005-03-01  Peter Bartok  <pbartok@novell.com>
18649
18650         * Control.cs:
18651           - Fixed Visible property, now follows (once again) parent chain
18652             to return false if any control in the chain is visible=false
18653           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
18654           - Fixed several places where is_visible instead of Visible was used
18655           - Implemented FIXME related to focus selection when setting focused
18656             control to be invisible
18657
18658         * XplatUIWin32.cs: Now using proper method to find out if window is
18659           visible. Thanks to Jordi for pointing it out
18660
18661 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
18662
18663         * ComboBox.cs: show/hide scrollbar instead of creating it
18664
18665 2005-02-27  Jackson Harper  <jackson@ximian.com>
18666
18667         * CurrencyManager.cs: Add PositionChanged stuff.
18668
18669 2005-02-27  Peter Bartok  <pbartok@novell.com>
18670
18671         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
18672         * XplatUIOSX.cs: Added GetMenuOrigin() stub
18673         * XplatUIWin32.cs: Implemented GetMenuOrigin()
18674         * XplatUIX11.cs:
18675           - Implemented GetMenuDC()
18676           - Implemented GetMenuOrigin()
18677           - Implemented ReleaseMenuDC()
18678           - Implemented generation of WM_NCPAINT message
18679           - Implemented generation and handling of WM_NCCALCSIZE message
18680         * Form.cs: Added debug helper message for Jordi's menu work
18681         * Hwnd.cs:
18682           - Modified ClientRect property; added setter, fixed getter to handle
18683             setting of ClientRect
18684           - Added MenuOrigin property
18685
18686 2005-02-26  Peter Bartok  <pbartok@novell.com>
18687
18688         * XplatUIX11.cs:
18689           - Destroys the caret if a window that's being destroyed contains it
18690           - Ignores expose events coming from the X11 queue for windows that
18691             already are destroyed
18692           - Now uses the proper variable for handling DestroyNotify, before we
18693             marked the wrong window as destroyed
18694           - Improved/added some debug output
18695
18696 2005-02-26  Peter Bartok  <pbartok@novell.com>
18697
18698         * X11Keyboard.cs: Fixes to work on 64bit systems
18699
18700 2005-02-26  Peter Bartok  <pbartok@novell.com>
18701
18702         * Control.cs:
18703           - Now calling OnHandleDestroyed from DestroyHandle()
18704             instead of Dispose()
18705           - Removed bogus call to controls.Remove() from DestroyHandle()
18706
18707 2005-02-26  Peter Bartok  <pbartok@novell.com>
18708
18709         * Control.cs: Properly destroy child windows when our handle is
18710           destroyed
18711
18712 2005-02-25  Peter Bartok  <pbartok@novell.com>
18713
18714         * XplatUI.cs:
18715           - Added 'DriverDebug' define to allow tracing XplatUI API calls
18716           - Alphabetized Static Methods and Subclasses
18717
18718         * XplatUIX11.cs:
18719           - Added XException class to allow custom handling of X11 exceptions
18720           - Created custom X11 error handler, tied into XException class
18721           - Added support for MONO_XEXCEPTIONS env var to allow the user
18722             to either throw an exception on X errors or continue running
18723             after displaying the error
18724           - Added handling of DestroyNotify message
18725           - Added handler for CreateNotify message (still disabled)
18726           - Improved (tried to at least) Where method to provide file and lineno
18727         * X11Structs.cs:
18728           - Added XErrorHandler delegate
18729           - Added XRequest enumeration (to suppor translation of errors)
18730
18731 2005-02-25  Jackson Harper  <jackson@ximian.com>
18732
18733         * PropertyManager.cs: Implement editing features
18734         * CurrencyManager.cs:
18735         * Binding.cs: First attempt at UpdateIsBinding
18736         * BindingManagerBase.cs: Call UpdateIsBinding before
18737         pushing/pulling data.
18738
18739 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
18740
18741         * MenuAPI.cs: Respect disabled items
18742         * ThemeWin32Classic.cs
18743                 - Caches ImageAttributes creation for DrawImageDisabled
18744                 - Fixes vertical menu line drawing
18745                 - Draws disabled arrows in disable menu items
18746
18747 2005-02-24  Peter Bartok  <pbartok@novell.com>
18748
18749         * Hwnd.cs:
18750           - Added UserData property to allow associating arbitrary objects
18751             with the handle
18752           - Fixed leak; now removing Hwnd references from static windows array
18753         * XplatUIWin32.cs:
18754           - Fixed Graphics leak in PaintEventEnd
18755           - Removed usage of HandleData, switched over to Hwnd class
18756         * HandleData.cs: Removed, obsoleted by Hwnd.cs
18757
18758 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18759
18760         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
18761         * ScrollBar.cs: Fixes bug
18762         * TrackBar.cs: removes death code, clipping, mimize refreshes,
18763          keyboard navigation enhancements
18764
18765 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
18766
18767         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
18768         * GroupBox.cs: Add control styles
18769         * Label.cs: Add control styles
18770         * UpDownBase.cs: Add control styles
18771         * ListBox.cs: Add control styles
18772         * XplatUIWin32.cs: Fixes wrong parameter order
18773
18774
18775 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
18776
18777         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
18778
18779 2005-02-23  Jackson Harper  <jackson@ximian.com>
18780
18781         * PropertyManager.cs: Implement property binding. This doesn't
18782         seem to work yet though as (I think) there are some bugs in
18783         System.ComponentModel.PropertyDescriptor.
18784         * BindingContext.cs: Use new PropertyManager constructor.
18785
18786 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
18787
18788         * ProgressBar.cs: use clip region in ProgressBar
18789         * ThemeWin32Classic.cs: use clip region in ProgressBar
18790
18791 2004-02-22  Jackson Harper  <jackson@ximian.com>
18792
18793         * BindingsCollection.cs: Remove some debug code.
18794
18795 2005-02-22  Jackson Harper  <jackson@ximian.com>
18796
18797         * BindingContext.cs:
18798         * ControlBindingsCollection.cs:
18799         * CurrencyManager.cs:
18800         * Binding.cs:
18801         * BindingManagerBase.cs: Initial implementation
18802         * BindingsCollection.cs: Add an internal contains method that the
18803         BindingManagerBase uses to ensure bindings aren't added twice to
18804         the collection.
18805         * PropertyManager.cs: Stubbed out.
18806         * Control.cs:
18807         * ContainerControl.cs: Hook up databinding
18808         
18809 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
18810
18811         * XplatUIOSX.cs:
18812           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
18813           Fixed Invalidate/Update chain.
18814           Fixed tons of other minor bugs (this is almost a complete rewrite).
18815
18816 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
18817
18818         * ComboBox.cs: do subcontrol creation when the control is created
18819
18820 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18821
18822         * Label.cs: fixes image drawing (image and imagelist)
18823         * ThemeWin32Classic.cs: cache brushes
18824         
18825 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18826
18827         * Form.cs: Move menu drawing code to Theme class
18828         * ComboBox.cs: Move ComboBox drawing code to Theme class
18829         * MenuItem.cs: Move menu drawing code to Theme class
18830         * MenuAPI.cs: Move menu drawing code to Theme class
18831         * ThemeWin32Classic.cs: New methods
18832         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
18833         * ListBox.cs: Move Listbox drawing code to Theme class
18834         * Theme.cs: New methods
18835
18836 2005-02-20  Peter Bartok  <pbartok@novell.com>
18837
18838         * Control.cs:
18839           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
18840             only process mnemonics on those)
18841           - Fixed event sequence for key handling; first calling
18842             ProcessKeyEventArgs now
18843         * TextBoxBase.cs:
18844           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
18845             for processing non-character keys
18846           - Fixed WM_CHAR to generate proper event sequence before processing
18847         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
18848           generation
18849
18850 2005-02-19  Peter Bartok  <pbartok@novell.com>
18851
18852         * UserControl.cs: Added TextChanged event; added attributes
18853         * SizeGrip.cs: Implemented resizing and optional display of grip
18854         * Form.cs: Fixed attribute
18855         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18856           Changed meaning of ScrollWindow bool argument; instead of the
18857           clear attribute (which will be true usually anyway), it gives the
18858           option of moving child controls as well.
18859         * XplatUIX11.cs:
18860           - Changed to match new ScrollWindow argument
18861           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
18862             now handles the implicit parent window a WM puts around us
18863         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
18864           to work)
18865         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
18866         * TreeView.cs: Adjusted to new ScrollWindow arguments
18867
18868 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
18869
18870         * Form.cs: Menu integration with non-client area
18871         * MenuItem.cs: Menu integration with non-client area
18872         * MenuAPI.cs: Menu integration with non-client area
18873
18874 2005-02-18  Peter Bartok  <pbartok@novell.com>
18875
18876         * MethodInvoker.cs: Added
18877         * MdiLayout.cs: Added
18878         * SendKeys.cs: Started implementation
18879         * ErrorIconAlignment.cs: Added
18880
18881 2005-02-18  Peter Bartok  <pbartok@novell.com>
18882
18883         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
18884         * Form.cs: Added handling for Menu-related Non-client messages
18885
18886 2005-02-17  Peter Bartok  <pbartok@novell.com>
18887
18888         * UpDownBase.cs: Fixed typo, compilation errors
18889         * DomainUpDown.cs: Fixed attribute value
18890
18891 2005-02-16  Miguel de Icaza  <miguel@novell.com>
18892
18893         * UpDownBase.cs: Attach entry events.
18894         Propagate events.
18895         Add ForeColor property, Focused, InterceptArrowKeys (interception
18896         does not work yet).
18897
18898 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
18899
18900         * Form.cs:
18901                 - Redraw non client are on Setmenu
18902                 - Calc proper menu starting point
18903
18904 2005-02-17  Peter Bartok  <pbartok@novell.com>
18905
18906         * Application.cs: Fixed message_filter check
18907
18908 2005-02-17  Peter Bartok  <pbartok@novell.com>
18909
18910         * Application.cs: Now calls registered message filters
18911         * DockStyle.cs: Fixed attribute
18912         * Form.cs: Fixed attribute
18913         * Menu.cs: Fixed attribute
18914         * ToolTip.cs: Fixed attribute
18915         * TreeNode.cs: Added missing attributes and arranged in regions
18916         * PropertyGrid.cs: Fixed signatures
18917         * TreeNodeCollection.cs: Added attributes
18918         * Splitter.cs: Added missing attributes; arranged into regions
18919         * TabPage.cs: Added missing attributes; arranged into regions
18920         * TextBoxBase.cs: Added missing attributes
18921         * TextBox.cs: Added missing attributes
18922         * ArrangeDirection.cs: Added missing attributes
18923         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
18924         * ToolBarButton.cs: Fixed attributes
18925         * AnchorStyles.cs: Fixed attribute
18926         * TrackBar.cs: Fixed attributes
18927         * TabControl.cs: Added missing attributes and arranged into regions
18928         * ToolBar.cs: Fixed attribute
18929         * StatusBar.cs: Fixed signature, organized into regions and added
18930           attributes
18931         * StatusBarPanel.cs: Fixed attributes
18932         * ContentsResizedEventArgs.cs: Implemented
18933         * ContentsResizedEventHandler.cs: Implemented
18934         * DateBoldEventArgs.cs: Implemented
18935         * DateBoldEventHandler.cs: Implemented
18936         * UpDownEventArgs.cs: Implemented
18937         * UpDownEventHandler.cs: Implemented
18938         
18939 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
18940
18941         * Form.cs: first Menu NC refactoring
18942         * MenuAPI.cs: first Menu NC refactoring
18943         
18944 2005-02-16  Peter Bartok  <pbartok@novell.com>
18945
18946         * ImeMode.cs: Added missing attributes
18947         * Menu.cs: Fixed attribute
18948         * GroupBox.cs: Fixed attribute
18949         * Label.cs: Fixed attribute
18950         * ColorDialog.cs (RunDialog): Removed TODO attribute
18951         * ComboBox.cs: Fixed attributes
18952         * ListControl.cs: Added missing attributes
18953         * PropertyGrid.cs: Fixed attributes
18954         * Control.cs: Fixed attributes
18955         * ListViewItem.cs: Added TypeConverter attribute
18956         * NotifyIcon.cs: Fixed attributes
18957         * ListView.cs: Fixed attributes
18958         * ButtonBase.cs: Fixed attribute
18959         * ImageList.cs: Added missing attributes
18960         * ContainerControl.cs: Fixed signature
18961         * CheckedListBox.cs: Fixed attribute; added missing attributes
18962         * Panel.cs: Fixed attributes
18963         * PropertyTabChangedEventArgs.cs: Added missing attribute
18964         * PropertyValueChangedEventArgs.cs: Added missing attribute
18965         * Binding.cs: Fixed attribute
18966         * ListViewItemConverter: Implemented ListViewSubItemConverter class
18967         * ListBox.cs: Fixed attribute; added missing attributes;
18968         * ScrollableControl.cs: Added missing attributes
18969         * PictureBox.cs: Added missing attributes; implemented missing property
18970         * DateTimePicker.cs: Added missing attributes
18971         * Theme.cs (ToolWindowCaptionHeight): Fixed type
18972         * MonthCalendar.cs: Fixed attributes
18973         * StatusBarPanel.cs: Added missing attributes
18974         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
18975
18976 2005-02-16  Peter Bartok  <pbartok@novell.com>
18977
18978         * TextBoxBase.cs: The previous method to enforce height yet remember
18979           the requested high was less than ideal, this is an attempt to do
18980           it better.
18981         * Control.cs: Added comment about possible problem
18982         * Copyright: Updated format
18983         * GridItemType.cs: Fixed swapped values
18984
18985 2005-02-15  Jackson Harper  <jackson@ximian.com>
18986
18987         * BaseCollection.cs: Use property so we never access an
18988         uninitialized list. Also initialize the list in the property.
18989
18990 2005-02-15  Peter Bartok  <pbartok@novell.com>
18991
18992         * GroupBox.cs (ProcessMnemonic): Implemented
18993         * Label.cs (ProcessMnemonic): Implemented
18994         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
18995           hotkeys
18996
18997 2005-02-15  Peter Bartok  <pbartok@novell.com>
18998
18999         * RadioButton.cs (ProcessMnemonic): Implemented
19000         * CheckBox.cs (ProcessMnemonic): Implemented
19001         * Control.cs:
19002           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
19003             handling
19004           - Added internal method to allow calling ProcessMnemonic from other
19005             controls
19006         * ContainerControl.cs:
19007           - Started support for handling validation chain handling
19008           - Implemented ProcessMnemonic support
19009           - Added Select() call to Active, to make sure the active control
19010             receives focus
19011         * Form.cs: Setting toplevel flag for Forms (this was lost in the
19012           FormParent rewrite)
19013         * ThemeWin32Classic.cs:
19014           - DrawCheckBox(): Fixed stringformat to show hotkeys
19015           - DrawRadioButton(): Fixed stringformat to show hotkeys
19016         * CommonDialog.cs: Removed WndProc override, not needed
19017
19018 2005-02-14  Peter Bartok  <pbartok@novell.com>
19019
19020         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
19021           missed those in the rewrite
19022
19023 2005-02-14  Miguel de Icaza  <miguel@novell.com>
19024
19025         * NumericUpDown.cs (Increment, ToString): Add.
19026         (DecimalPlaces): implement.
19027         
19028         Add attributes.
19029         
19030         * UpDownBase.cs: Add the designer attributes.
19031
19032 2005-02-13  Peter Bartok  <pbartok@novell.com>
19033
19034         * Panel.cs: Removed border_style, now in Control
19035         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
19036           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
19037
19038 2005-02-13  Peter Bartok  <pbartok@novell.com>
19039
19040         * MouseButtons.cs: Added missing attributes
19041         * XplatUIStructs.cs: Added enumeration for title styles
19042         * LeftRightAlignment.cs: Added missing attributes
19043         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
19044           it compatible with Graphics.FromHwnd()
19045         * SelectedGridItemChangedEventArgs.cs: Fixed property type
19046         * Keys.cs: Added missing attributes
19047         * SelectionRange.cs: Added missing attributes
19048         * SelectionRangeConverter.cs: Added
19049         * XplatUI.cs:
19050           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
19051             ReleaseMenuDC methods
19052           - Renamed ReleaseWindow to UngrabWindow
19053           - Added proper startup notice to allow version identification
19054         * Form.cs:
19055           - Added missing attributes
19056           - Removed FormParent concept
19057         * Label.cs: Removed border_style field, now in Control
19058         * RadioButton.cs: Now properly selects RadioButton when focus is
19059           received
19060         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
19061         * Control.cs:
19062           - Added missing attributes
19063           - Added borderstyle handling
19064           - Removed FormParent concept support
19065           - Fixed calls to XplatUI to match changed APIs
19066           - Fixed bug that would case us to use disposed Graphics objects
19067           - Removed unneeded internal methods
19068           - PerformLayout(): Fixed to handle DockStyle.Fill properly
19069           - SelectNextControl(): Fixed to properly check common parents
19070         * TextBoxBase.cs: Removed border_style field (now in Control)
19071         * MessageBox.cs:
19072           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
19073             fixed calculations for form size
19074           - Added support for localized strings and icons
19075           - Improved form size calculations, added border
19076         * ListView.cs: Removed border_style field (now in Control)
19077         * X11Structs.cs: Moved several structs from X11 driver here
19078         * X11Keyboard.cs: Changed debug message
19079         * Application.cs: Removed FormParent concept support
19080         * CommonDialog.cs:
19081           - Resetting end_modal flag
19082           - Removed FormParent concept support
19083         * NativeWindow.cs: Removed FormParent concept support
19084         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
19085           Client area and Non-Client whole window to allow support for WM_NC
19086           messages
19087         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
19088           prevent using it until it supports Hwnd as per Geoff Norton's request
19089         * ToolBar.cs: Fixed drawing, was not doing proper drawing
19090         * PictureBox.cs: Removed border_style field, now in Control
19091         * XplatUIWin32.cs: Added new driver methods
19092
19093 2005-02-12  Peter Bartok  <pbartok@novell.com>
19094
19095         * OpacityConverter.cs: Implemented
19096         * Hwnd.cs: Internal class to support drivers that need to emulate
19097           client area/non-client area window behaviour
19098
19099 2005-02-11  Peter Bartok  <pbartok@novell.com>
19100
19101         * KeysConverter.cs: Implemented
19102
19103 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
19104
19105         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
19106         * LinkLabel: Added missing attributes
19107         * MainMenu.cs: fixes ToString
19108         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
19109         * ListBox.cs: fixes event position
19110         * TrackBar.cs: adds missing attributes and events
19111         
19112 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
19113
19114         * MenuItem.cs: Use SystemInformation and bug fixes
19115         * MenuAPI.cs: Use SystemInformation and bug fixes
19116
19117 2005-02-09  Jackson Harper  <jackson@ximian.com>
19118
19119         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
19120         their keystate otherwise things like VK_MENU get stuck "on".
19121
19122 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
19123
19124         * ListBox.cs: Fixes AddRange bug
19125         
19126 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
19127
19128         * ProgressBar.cs
19129                 - Add missing attributes
19130                 - Add missing method
19131                 
19132         * CheckedListBox.cs: Added missing attributes
19133                 - Add missing attributes
19134                 - Remove extra method
19135         
19136         * ComboBox.cs: Added missing attributes
19137         * VScrollBar.cs: Added missing attributes
19138         * ScrollBar.cs:  Added missing attributes
19139         * ListBox.cs: Fixes signature, add missing consts
19140         * LinkArea.cs:   Added missing attributes
19141         
19142
19143 2005-02-08  Peter Bartok  <pbartok@novell.com>
19144
19145         * Menu.cs: Added missing attributes
19146         * MainMenu.cs: Added missing attributes
19147         * GroupBox.cs: Added missing attributes
19148         * Label.cs: Added missing attributes
19149         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
19150         * ColorDialog.cs:
19151           - Added Instance and Options properties
19152           - Added missing attributes
19153         * Cursor.cs: Made Serializable
19154         * NotifyIcon: Added missing attributes
19155         * MenuItem.cs: Added missing attributes
19156         * TextBoxBase.cs: Implemented AppendText() and Select() methods
19157         * Panel.cs: Added Missing attributes
19158         * MonthCalendar.cs: Fixed CreateParams
19159
19160 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19161         
19162         * LinkLabel.cs:
19163                 - Fixes signature
19164                 - Fixes issues with links
19165                 - Adds the class attributes
19166
19167 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
19168         
19169         * ComboBox.cs:
19170                 - Fixes button when no items available in dropdown
19171                 - Fixes repainting problems
19172                 - Adds the class attributes
19173                 
19174 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19175
19176         * XplatUIOSX.cs: Detect the menu bar and title bar height from
19177         the current theme.  Cache these on startup.
19178
19179 2005-02-07  Jackson Harper  <jackson@ximian.com>
19180
19181         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
19182         the scrollbar buttons when they are depressed.
19183
19184 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19185
19186         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
19187         Get the display size from the main displayid.  We currently dont
19188         support multiple display configurations.
19189
19190 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
19191
19192         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
19193
19194 2005-02-07  Miguel de Icaza  <miguel@novell.com>
19195
19196         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
19197
19198 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
19199
19200         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
19201
19202 2005-02-04  Jackson Harper  <jackson@ximian.com>
19203
19204         * ThemeWin32Classic.cs: Respect the clipping rect when
19205         drawing. Only fill the intersection of clips and rects so there
19206         isn't a lot of large fills.
19207         * ScrollBar.cs: Pass the correct clipping rect to the theme
19208         engine. Remove some debug code.
19209
19210 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
19211         
19212         * DateTimePicker.cs:
19213                 - Fixed crash on DateTime.Parse, use Constructor instead
19214
19215 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
19216         
19217         * MenuItem.cs:
19218         * MenuAPI.cs:
19219                 - Owner draw support (MeasureItem and DrawItem)
19220
19221 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
19222         
19223         *  Menu.cs:
19224                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
19225                 - Fixes MenuItems.Add range
19226         * MenuItem.cs:
19227                 - MergeMenu and Clone and CloneMenu functions
19228
19229 2005-02-03  Jackson Harper  <jackson@ximian.com>
19230
19231         * ScrollBar.cs: Make abstract
19232         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
19233         is abstract.
19234
19235 2005-02-03  Jackson Harper  <jackson@ximian.com>
19236
19237         * ScrollBar.cs: First part of my scrollbar fixups. This removes
19238         all the unneeded refreshes and uses invalidates with properly
19239         computed rects.
19240
19241 2005-02-03  Peter Bartok  <pbartok@novell.com>
19242
19243         * ComponentModel.cs: Added
19244         * IDataGridEditingService.cs: Added
19245         * Timer.cs: Added missing attributes
19246         * ToolTip.cs: Added missing attributes
19247
19248 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
19249
19250         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
19251
19252 2005-02-03  Peter Bartok  <pbartok@novell.com>
19253
19254         * ListBox.cs: Added missing attributes
19255
19256 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
19257         
19258         * ListBox.cs:
19259                 - Fixes font height after font change
19260                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
19261                 
19262 2005-02-02  Peter Bartok  <pbartok@novell.com>
19263
19264         * HandleData.cs: Introduced static methods to allow class
19265           to be more self-contained and track it's own HandleData objects
19266         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
19267           HandleData to use new static methods
19268
19269 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
19270
19271         * Combobox.cs:
19272                 - Fixes default size and PreferredHeight
19273                 - Missing events
19274                 - ObjectCollection.Insert implementation
19275                 
19276         * ListControl.cs
19277                 - Fixes signature
19278         * ListBox.cs:
19279                 - Several fixes
19280                 - ObjectCollection.Insert implementation
19281                 - No selection after clean
19282                 - Small fixes
19283
19284 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
19285
19286         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
19287
19288 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
19289
19290         * Combobox.cs:
19291                 - Caches ItemHeight calculation for OwnerDrawVariable
19292                 - Handles dropdown properly
19293                 - Fixes several minor bugs
19294
19295 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
19296
19297         * ListBox.cs:
19298                 - Fixes 71946 and 71950
19299                 - Fixes changing Multicolumn on the fly
19300                 - Fixes keyboard navigation on Multicolumn listboxes
19301
19302 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19303         
19304         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
19305         crash reporter log.
19306
19307 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19308
19309         * XplatUIOSX.cs: Allow applications to actually exit.
19310
19311 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
19312
19313         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
19314         their parent at creation time rather than lazily later.  Fixes a major
19315         regression we were experiencing.
19316
19317 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
19318
19319         * ThemeWin32Classic.cs: more date time picker painting fixes
19320         * DateTimePicker.cs: more monthcalendar drop down fixes
19321         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
19322
19323 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
19324
19325         * ScrollBar.cs:
19326                 - When moving the thumb going outside the control should stop the moving
19327                 - Adds the firing of missing events
19328                 - Fixes no button show if Size is not specified
19329                 - End / Home keys for keyboard navigation
19330
19331 2005-01-30  Peter Bartok  <pbartok@novell.com>
19332
19333         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
19334           sanity check to prevent theoretical loop
19335         * XplatUIWin32.cs (SetVisible): Removed debug output
19336         * XplatUIX11.cs (SystrayChange): Added sanity check
19337         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
19338         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
19339           behaviour, valid until the X11 client window rewrite is done
19340         * TextBox.cs (ctor): Setting proper default foreground and background
19341           colors
19342
19343 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
19344
19345         * Theme: Added DrawDateTimePicker to interface
19346         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
19347         * DateTimePicker.cs: Created (still needs keys and painting code)
19348         * DateTimePickerFormat.cs: added
19349         * MonthCalendar.cs: fixed CreateParams for popup window mode
19350           
19351 2005-01-29  Peter Bartok  <pbartok@novell.com>
19352
19353         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
19354           this should also the calculations for ligher/darker
19355         * Theme.cs: Fixed defaults for ScrollBar widths/heights
19356
19357 2005-01-29  Peter Bartok  <pbartok@novell.com>
19358
19359         * ArrangeDirection.cs: Added
19360         * ArrangeStartingPositon.cs: Added
19361         * SystemInformation.cs: Implemented
19362         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19363           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
19364           used by SystemInformation class
19365         * X11Strucs.cs: Added XSizeHints structure
19366         * MenuAPI.cs:
19367           - Fixed CreateParams to make sure the menu window is always visible
19368           - TrackPopupMenu: Added check to make sure we don't draw the
19369             menu offscreen
19370
19371 2005-01-29  Peter Bartok  <pbartok@novell.com>
19372
19373         * HandleData.cs: Added method for altering invalid area
19374         * TextBoxBase.cs: Implemented TextLength
19375
19376 2005-01-28  Peter Bartok  <pbartok@novell.com>
19377
19378         * XplatUIX11.cs: Improvement over last patch, not sending
19379           the WM_PAINT directly anymore, instead we scroll any pending
19380           exposed areas and let the system pick out the WM_PAINT later
19381
19382 2005-01-28  Peter Bartok  <pbartok@novell.com>
19383
19384         * SWF.csproj: Deleted, no longer used. Instead,
19385           Managed.Windows.Forms/SWF.csproj should be used
19386         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
19387           directly, to avoid a potential race condition with the next
19388           scroll
19389
19390 2005-01-28  Peter Bartok  <pbartok@novell.com>
19391
19392         * XplatUI.cs: Made class internal
19393
19394 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
19395
19396         * CheckedListBox.cs:
19397                 - Draw focus
19398                 - Fixed Drawing
19399                 - Missing methods and events
19400
19401 2005-01-27  Peter Bartok  <pbartok@novell.com>
19402
19403         * Application.cs (Run): Don't use form if we don't have one
19404
19405 2005-01-27  Peter Bartok  <pbartok@novell.com>
19406
19407         * TextBoxBase.cs (get_Lines): Fixed index off by one error
19408
19409 2005-01-27  Peter Bartok  <pbartok@novell.com>
19410
19411         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
19412         * GridItem.cs: Added; Patch by Jonathan S. Chambers
19413         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
19414         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
19415         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
19416         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
19417         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19418         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19419         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19420         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19421         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
19422         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
19423
19424 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
19425
19426         * Combobox.cs:
19427                 - Draw focus on Simple Combobox
19428                 - Fixes drawing issues
19429                 - fixes 71834
19430
19431 2005-01-27  Peter Bartok  <pbartok@novell.com>
19432
19433         * Form.cs:
19434           - Place window in default location, instead of hardcoded 0/0
19435           - Send initial LocationChanged event
19436         * Control.cs:
19437           - UpdateBounds after creation to find out where the WM placed us
19438           - Make sure that if the ParentForm changes location the Form
19439             is notified
19440         * XplatUIX11.cs: XGetGeometry will not return the coords relative
19441             to the root, but to whatever the WM placed around us.
19442             Translate to root coordinates before returning toplevel
19443             coordinates
19444         * XplatUIWin32.cs: Removed debug output
19445         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
19446           flag to GetWindowPos, to allow translation of coordinates on X11
19447
19448 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
19449
19450         * ListBox.cs: connect LostFocus Event
19451
19452 2005-01-27  Peter Bartok  <pbartok@novell.com>
19453
19454         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
19455           XplatUIX11.cs: Extended the Systray API
19456         * Form.cs: Removed debug output
19457         * Application.cs: Fixed focus assignment, always need to call
19458           XplatUI.Activate() since Form.Activate() has rules that may
19459           prevent activation
19460         * NotifyIcon.cs: Should be complete now
19461         * ToolTip.cs: Worked around possible timer bug
19462
19463 2005-01-27  Jackson Harper  <jackson@ximian.com>
19464
19465         * TabControl.cs:
19466         - Only invalidate the effected tabs when the
19467         selected index changes. This reduces drawing and gets rid of some
19468         flicker.
19469         - Only refresh if the tabs need to be shifted, otherwise only
19470         invalidate the slider button.
19471         - On windows the tabs are not filled to right if the slider is
19472         visible.
19473         
19474 2005-01-27  Jackson Harper  <jackson@ximian.com>
19475
19476         * TabControl.cs: Only refresh on mouseup if we are showing the
19477         slider. Also only invalidate the button whose state has changed.
19478
19479 2005-01-26  Peter Bartok  <pbartok@novell.com>
19480
19481         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
19482         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
19483           and SystrayRemove() methods
19484         * XplatUIOSX.cs: Stubbed Systray methods
19485         * XplatUIX11.cs:
19486           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
19487             methods
19488           - Fixed broken XChangeProperty calls (marshalling messed up things)
19489         * X11Structs.cs: Added enums and structs required for Size hinting
19490         * NotifyIcon.cs: Added & implemented
19491
19492 2005-01-26  Jackson Harper  <jackson@ximian.com>
19493
19494         * TabControl.cs: Space vertically layed out tabs properly.
19495
19496 2005-01-26  Peter Bartok  <pbartok@novell.com>
19497
19498         * Form.cs (CreateClientParams): Always set the location to 0,0
19499           since we're a child window.
19500
19501         * Control.cs (SetVisibleCore): Always explicitly setting the location
19502           of a toplevel window, apparently X11 doesn't like to move windows
19503           while they're not mapped.
19504
19505 2005-01-26  Jackson Harper  <jackson@ximian.com>
19506
19507         * TabControl.cs: Implement FillToRight size mode with vertically
19508         rendered tabs.
19509
19510 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
19511
19512         * ControlPaint.cs, ThemeWin32Classic.cs
19513                 - Fixes DrawFocusRectangle
19514
19515 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
19516
19517         * MenuAPI.cs:
19518                 - MenuBar tracking only starts when item is first clicked
19519                 - Fixes menu hidding for multiple subitems
19520                 - Unselect item in MenuBar when item Executed
19521                 - Fixes bug 71495
19522
19523 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
19524
19525         * ListControl.cs:
19526                 - IsInputKey for ListBox
19527         * ListBox.cs:
19528                 - Focus item
19529                 - Shift and Control item selection
19530                 - Implement SelectionMode.MultiExtended
19531                 - Fixes RightToLeft
19532         * ComboBox.cs:
19533                 - IsInputKey implemented
19534                 - Do not generate OnTextChangedEdit on internal txt changes
19535                 
19536 2005-01-23  Peter Bartok  <pbartok@novell.com>
19537
19538         * AccessibleObject.cs: Partially implemented Select()
19539         * MonthCalendar.cs: Added missing attributes and events
19540         * Form.cs: Fixed CreateParams behaviour, now controls derived from
19541           form can properly override CreateParams.
19542         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
19543           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
19544           Control performs Invalidate & Update
19545         * NativeWindow (CreateHandle): Added special handling for Form
19546           and Form.FormParent classes to allow overriding of From.CreateParams
19547         * Control.cs:
19548           - ControlNativeWindow: Renamed 'control' variable to more intuitive
19549             name 'owner'
19550           - ControlNativeWindow: Added Owner property
19551           - Removed usage of Refresh() on property changes, changed into
19552             Invalidate(), we need to wait until the queue is processed for
19553             updates, direct calls might cause problems if not all vars for
19554             Paint are initialized
19555           - Added call to UpdateStyles() when creating the window, to set any
19556             styles that CreateWindow might have ignored.
19557           - Added support for Form CreateParent overrides to UpdateStyles()
19558         * MessageBox.cs: Removed no longer needed FormParent override stuff,
19559           CreateParams are now properly overridable
19560         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
19561           CreateParams are now properly overridable
19562
19563 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
19564
19565         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
19566         OnTextBoxChanged.
19567
19568         Capture LostFocus and OnTextBoxChanged.  The later introduces a
19569         recursive invocation that I have not figured out yet.
19570
19571         Reset the timer when not using (it was accumulating).
19572
19573
19574         (OnTextBoxChanged): Set UserEdit to true here to track whether the
19575         user has made changes that require validation.
19576
19577         Reset changing to avoid loops.
19578
19579 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
19580
19581         * NumericUpDown.cs: Display value at startup.
19582
19583         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
19584         ValidateEditText.
19585
19586         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
19587         filled in.  Added some basic parsing of text.
19588
19589         Still missing the OnXXX method overrides, and figuring out the
19590         events that must be emitted.
19591
19592         * UpDownBase.cs: Handle UserEdit on the Text property.
19593         
19594 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
19595
19596         * ComboBox.cs:
19597           - Fixes IntegralHeight
19598           - ToString method
19599
19600 2005-01-21  Jackson Harper  <jackson@ximian.com>
19601
19602         * TabControl.cs: Set the SelectedIndex property when SelectedTab
19603         is set so that the page visibility is updated and the tabs are
19604         sized correctly.
19605
19606 2005-01-21  Jackson Harper  <jackson@ximian.com>
19607
19608         * TabControl.cs: Use cliping rectangle for blitting. Give the
19609         theme the clipping rect so we can do clipping while
19610         drawing. Remove some debug code.
19611
19612 2005-01-21  Jackson Harper  <jackson@ximian.com>
19613
19614         * TabPage.cs: Add a new method so tab pages can force the tab
19615         control to recalculate the tab page sizes.
19616         * TabControl.cs: UpdateOwner needs to make the tab control recalc
19617         sizes.
19618
19619 2005-01-20  Jackson Harper  <jackson@ximian.com>
19620
19621         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
19622
19623 2005-01-20  Jackson Harper  <jackson@ximian.com>
19624
19625         * TreeView.cs: Set the bounds for nodes properly. They were
19626         getting screwed up when checkboxes were not enabled, but images
19627         were.
19628
19629 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
19630
19631         * ListBox.cs:
19632                 - Owner draw support
19633                 - Fixes
19634                 
19635 2005-01-20  Jackson Harper  <jackson@ximian.com>
19636
19637         * XplatUIStructs.cs: More misc keys
19638         * X11Keyboard.cs: Ignore some control keys.
19639
19640 2005-01-20  Jackson Harper  <jackson@ximian.com>
19641
19642         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
19643         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
19644
19645 2005-01-19  Peter Bartok  <pbartok@novell.com>
19646
19647         * Control.cs: Un-selecting the control when it is loosing focus
19648
19649 2005-01-19  Jackson Harper  <jackson@ximian.com>
19650
19651         * TreeView.cs: Hook up to the text controls leave event so we can
19652         end editing when the users clicks outside the text box.
19653         
19654 2005-01-19  Jackson Harper  <jackson@ximian.com>
19655
19656         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
19657         get set in the conversion array.
19658
19659 2005-01-19  Peter Bartok  <pbartok@novell.com>
19660
19661         * Application.cs (ModalRun): Added a call to CreateControl to ensure
19662           focus is properly set
19663         * Button.cs:
19664           - Added missing attributes
19665           - removed styles, those are already set in the base class
19666         * ButtonBase.cs:
19667           - Added missing attributes
19668           - Added clip window styles
19669         * CheckBox.cs: Added missing attributes
19670         * CommonDialog.cs:
19671           - FormParentWindow.CreateParams: Added required clip styles
19672         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
19673           also filters modifier keys
19674         * MessageBox.cs:
19675           - Added assignment of Accept and Cancel button to enable Enter
19676             and Esc keys in MessageBox dialogs
19677           - FormParentWindow.CreateParams: Added required clip styles
19678         * RadioButton.cs: Added missing attributes
19679         * TextControl.cs: No longer draws selection if control does not
19680           have focus
19681         * TextBoxBase.cs:
19682           - Now draws simple rectangle around test area to make it obvious
19683             there's a control. This is a hack until we properly support borders
19684           - A few simple fixes to support selections better, now erases selected
19685             text when typing, and resets selection when using movement keys
19686
19687 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
19688
19689         * UpDownBase.cs: Added some new properties.
19690
19691         * DomainUpDown.cs: Implement a lot to get my test working.
19692
19693 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19694
19695         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
19696
19697 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19698
19699         * OSXStructs (WindowAttributes): Fixed csc complaints
19700
19701 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19702
19703         * XplayUIOSX.cs:
19704           OSXStructs.cs: Initial refactor to move enums and consts into
19705           OSXStructs and use them in the driver for greater readability.
19706
19707 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
19708
19709         * XplatUIOSX.cs: Initial support for Standard Cursors.
19710         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
19711
19712 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
19713
19714         * ComboBox.cs: ability to change style when the ctrl is already
19715         created, missing methods and events, bug fixes, signature fixes
19716
19717 2005-01-19  Peter Bartok  <pbartok@novell.com>
19718
19719         * Cursors.cs (ctor): Added ctor to fix signature
19720
19721 2005-01-18  Peter Bartok  <pbartok@novell.com>
19722
19723         * Button.cs: Implemented DoubleClick event
19724         * ButtonBase.cs:
19725           - Fixed keyboard handling to behave like MS, where the press of
19726             Spacebar is equivalent to a mousedown, and the key release is
19727             equivalent to mouseup. Now a spacebar push will give the same
19728             visual feedback like a mouse click.
19729           - Added missing attributes
19730           - Added ImeModeChanged event
19731           - Added support for generating DoubleClick event for derived classes
19732         * CheckBox.cs:
19733           - Implemented DoubleClick event
19734           - Added missing attributes
19735         * CommonDialog.cs: Added missing attribute
19736         * ContextMenu.cs: Added missing attributes
19737         * RadioButton.cs:
19738           - AutoChecked buttons do not allow to be unselected when clicked
19739             (otherwise we might end up with no selected buttons in a group)
19740           - Added missing attributes
19741           - Implemented DoubleClickEvent
19742         * ThreadExceptionDialog.cs: Enabled TextBox code
19743
19744 2005-01-18  Peter Bartok  <pbartok@novell.com>
19745
19746         * Form.cs: Removed debug output
19747         * Button.cs: Added support for DoubleClick method
19748
19749 2005-01-18  Peter Bartok  <pbartok@novell.com>
19750
19751         * Form.cs:
19752           - Added method to parent window that allows triggering size
19753             calculations when a menu is added/removed
19754           - set_Menu: Cleaned up mess from early days of Form and Control,
19755             now properly triggers a recalc when a menu is added/removed
19756           - Added case to select form itself as focused form if no child
19757             controls exist
19758           - Added PerformLayout call when showing dialog, to ensure properly
19759             placed controls
19760         * Control.cs:
19761           - Select(): Made internal so Form can access it
19762           - Focus(): Only call Xplat layer if required (avoids loop), and sets
19763             status
19764         * Application.cs (Run): Removed hack and calls PerformLayout instead
19765           to trigger calculation when Form becomes visible
19766
19767 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
19768
19769         * ComboBox.cs: fixes for ownerdraw
19770
19771 2005-01-18  Peter Bartok  <pbartok@novell.com>
19772
19773         * TextControl.cs:
19774           - Sentinel is no longer static, each Document gets it's own, this
19775             avoids locking or alternatively overwrite problems when more
19776             than one text control is used simultaneously.
19777           - Switched to use Hilight and HilightText brushes for text selection
19778
19779         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
19780
19781 2005-01-18  Peter Bartok  <pbartok@novell.com>
19782
19783         * Control.cs:
19784           - Hooked up the following events:
19785                 o ControlAdded
19786                 o ControlRemoved
19787                 o HandleDestroyed
19788                 o ImeModeChanged
19789                 o ParentChanged
19790                 o TabStopChanged
19791                 o Invalidated
19792                 o SystemColorsChanged
19793                 o ParentFontChanged
19794                 o Move
19795           - Removed debug output
19796           - Added a call to the current theme's ResetDefaults when a color change
19797             is detected
19798         * Form.cs: Now setting the proper ImeMode
19799         * Theme.cs: Defined a method to force recreation of cached resources
19800           and rereading of system defaults (ResetDefaults())
19801         * ThemeWin32Classic.cs: Added ResetDefaults() stub
19802
19803 2005-01-17  Peter Bartok  <pbartok@novell.com>
19804
19805         * Control.cs: Added missing attributes
19806
19807 2005-01-17  Jackson Harper  <jackson@ximian.com>
19808
19809         * TreeNode.cs: Implement editing. Add missing properties selected
19810         and visible.
19811         * TreeView.cs: Implement node editing. Also some fixes to use
19812         Invalidate (invalid area) instead of Refresh when selecting.
19813
19814 2005-01-17  Peter Bartok  <pbartok@novell.com>
19815
19816         * Control.cs:
19817           - Implemented InvokeGotFocus() method
19818           - Implemented InvokeLostFocus() method
19819           - Implemented InvokePaint() method
19820           - Implemented InvokePaintBackground() method
19821           - Implemented InvokeClick() method
19822           - Implemented FindForm() method
19823           - Implemented RectangleToClient() method
19824           - Implemented ClientToRectangle() method
19825           - Implemented ResetBackColor() method
19826           - Implemented ResetCursor() method
19827           - Implemented ResetFont() method
19828           - Implemented ResteForeColor() method
19829           - Implemented ResetImeMode() method
19830           - Implemented ResetLeftToRight() method
19831           - Implemented ResetText() method
19832           - Implemented Scale() methods
19833           - Implemented ScaleCore() method
19834           - Implemented Update() method
19835           - Removed unused variables
19836           - Stubbed AccessibilityNotifyClients and
19837             ControlAccessibleObject.NotifyClients() methods (dunno what to do
19838             with those yet)
19839           - Now setting proper default for RightToLeft property
19840           - Fixed bug in SetClientSizeCore that would cause windows to get
19841             really big
19842           - Now sending Click/DoubleClick events
19843           - Now selecting controls when left mouse button is clicked on
19844             selectable control
19845         * AccessibleEvents.cs: Added
19846         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
19847         * XplatUIOSX.cs: Stubbed UpdateWindow() method
19848         * XplatUIWin32.cs: Implemented UpdateWindow() method
19849         * XplatUIX11.cs: Implemented UpdateWindow() method
19850         * Form.cs: Removed stray semicolon causing CS0162 warning
19851         * ThemeWin32Classic.cs: Fixed unused variable warnings
19852         * ScrollableControl.cs: Now calls base method for ScaleCore
19853         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
19854           style to avoid interference with internal click handler (which is
19855           different than standard Control click handling)
19856         * RadioButton.cs:
19857           - Now unchecks all sibling radio buttons when control is
19858             selected (Fixes #68756)
19859           - Removed internal tabstop variable, using the one inherited from
19860             Control
19861
19862 2005-01-17  Jackson Harper  <jackson@ximian.com>
19863
19864         * NavigateEventArgs.cs: Fix base type.
19865         * LinkLabel.cs: Sig fix
19866         
19867 2005-01-17  Jackson Harper  <jackson@ximian.com>
19868
19869         * TreeView.cs: Only invalidate the effected nodes bounds when
19870         selecting nodes.
19871
19872 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19873
19874         * XplatUIWin32.cs: fixes Win32 marshaling
19875         * XplatUIX11.cs: fixes method signature
19876
19877 2005-01-17  Peter Bartok  <pbartok@novell.com>
19878
19879         * XplatUIX11.cs: Clean up resources when we no longer need them
19880
19881 2005-01-17  Peter Bartok  <pbartok@novell.com>
19882
19883         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
19884           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
19885           and DestroyCursor() methods.
19886         * Cursor.cs: Partially implemented, now supports standard cursors;
19887           still contains some debug code
19888         * Cursors.cs: Implemented class
19889         * Control.cs:
19890           - WndProc(): Added handling of WM_SETCURSOR message, setting the
19891             appropriate cursor
19892           - Implemented Cursor property
19893           - Replaced break; with return; more straightforwar and possibly
19894             faster
19895           - Now properly setting the result for WM_HELP
19896         * X11Structs.cs: Added CursorFontShape enum
19897         * XplatUIStructs.cs:
19898           - Added StdCursor enum (to support DefineStdCursor() method)
19899           - Added HitTest enum (to support sending WM_SETCURSOR message)
19900         * XplatUIX11.cs:
19901           - Now sends the WM_SETCURSOR message
19902           - Implemented new cursor methods
19903         * XplatUIOSX.cs: Stubbed new cursor methods
19904         * XplatUIWin32.cs:
19905           - Implemented new cursor methods
19906           - Added GetSystemMetrics function and associated enumeration
19907
19908 2005-01-15  Peter Bartok  <pbartok@novell.com>
19909
19910         * Control.cs:
19911           - WndProc(): Now handles EnableNotifyMessage
19912           - SelectNextControl(): Fixed bug where if no child or sibling
19913             controls exist we looped endlessly
19914
19915 2005-01-14  Jackson Harper  <jackson@ximian.com>
19916
19917         * TreeView.cs: Recalculate the tab pages when a new one is added
19918         so that the proper bounding rects are created.
19919
19920 2005-01-14  Jackson Harper  <jackson@ximian.com>
19921
19922         * TreeView.cs: Draw a gray box instead of a grip in the lower
19923         right hand corner when there are both horizontal and vertical
19924         scroll bars.
19925
19926 2005-01-14  Jackson Harper  <jackson@ximian.com>
19927
19928         * Control.cs: When erasing backgrounds use FromHwnd instead of
19929         FromHdc when there is a NULL wparam. This occurs on the X driver.
19930         * XplatUIX11.cs: Set the wparam to NULL.
19931
19932 2005-01-13  Jackson Harper  <jackson@ximian.com>
19933
19934         * PictureBox.cs: Implement missing methods (except ToString, need
19935         to test that on windows) and events. When visibility is changed we
19936         need to redraw the image because the buffers are killed. When size
19937         is changed refresh if the sizemode needs it.
19938
19939 2005-01-13  Peter Bartok  <pbartok@novell.com>
19940
19941         * Control.cs (SelectNextControl): Was using wrong method to select
19942           a control
19943
19944 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19945
19946         * ComboBox.cs: fixes dropstyle
19947
19948 2005-01-13  Peter Bartok  <pbartok@novell.com>
19949
19950         * Form.cs:
19951           - Implemented Select() override
19952           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
19953           - Now sets keyboard focus on startup
19954         * Control.cs (SelectNextControl): Now properly handles directed=true
19955         * TextBoxBase.cs:
19956           - WndProc: Now passes tab key on to base if AcceptTabChar=false
19957           - Added (really bad) focus rectangle (mostly for testing)
19958         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
19959           to enforce redraw on focus changes
19960         * ContainerControl.cs:
19961           - Fixed detection of Shift-Tab key presses
19962           - Fixed traversal with arrow keys
19963         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
19964           gonna keep this or if it's complete yet
19965         
19966 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
19967
19968         * ComboBox.cs: missing properties, fixes
19969
19970 2005-01-13  Peter Bartok  <pbartok@novell.com>
19971
19972         * Panel.cs (ctor): Setting Selectable window style to off
19973         * Splitter.cs (ctor): Setting Selectable window style to off
19974         * GroupBox.cs (ctor): Setting Selectable window style to off
19975         * Label.cs (ctor): Setting Selectable window style to off
19976
19977 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
19978
19979         * UpDownBase.cs (InitTimer): If the timer has been already
19980         created, enable it.
19981
19982         Use a TextBox instead of a Label.
19983
19984 2005-01-12  Jackson Harper  <jackson@ximian.com>
19985
19986         * TreeView.cs: Refresh the tree after sorting the nodes. Always
19987         draw the connecting node lines (when ShowLines is true).
19988         * TreeNode.cs: The nodes index can now be updated. This is used
19989         when a node collection is sorted.
19990         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
19991         insert or an existing unsorted node collection can be sorted.
19992         
19993 2005-01-12  Peter Bartok  <pbartok@novell.com>
19994
19995         * ContainerControl.cs: Implemented ProcessDialogKeys()
19996
19997 2005-01-12  Peter Bartok  <pbartok@novell.com>
19998
19999         * Control.cs:
20000           - Implemented SelectNextControl() method
20001           - Several focus related bug fixes
20002           - Fixed Docking calculations to match MS documentation and
20003             behaviour
20004
20005 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
20006
20007         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
20008         bug fixes
20009
20010 2005-01-12  Peter Bartok  <pbartok@novell.com>
20011
20012         * Control.cs:
20013           - Fixed broken Contains() method
20014           - Implemented GetNextControl() method. Finally. This is the pre-
20015             requisite for focus handling.
20016
20017 2005-01-12  Peter Bartok  <pbartok@novell.com>
20018
20019         * OSXStrucs.cs: Added
20020
20021 2005-01-12  Peter Bartok  <pbartok@novell.com>
20022
20023         * XplatUIWin32.cs:
20024           - Removed PeekMessageFlags
20025           - Implemented SetWindowStyle() method
20026         * XplatUIStructs.cs: Added PeekMessageFlags
20027         * X11Structs: Added missing border_width field to XWindowChanges struct
20028         * XplatUIX11.cs:
20029           - PeekMessage: Now throws exception if flags which are not yet
20030             supported are passed
20031           - Implemented SetWindowStyle() method
20032           - Fixed SetZOrder to handle AfterHwnd properly
20033         * XplatUI.cs: Added SetWindowStyle() method
20034         * XplatUIDriver.cs: Added SetWindowStyle() abstract
20035         * Control.cs:
20036           - Implemented UpdateStyles() method
20037           - Implemented UpdateZOrder() method
20038         * XplatUIOSX.cs: Added SetWindowStyle() stub
20039
20040 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
20041
20042         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
20043         button mouse).
20044
20045
20046 2005-01-11  Jackson Harper  <jackson@ximian.com>
20047
20048         * TreeView.cs: Still need to draw lines to siblings even if out of
20049         the current node is out of the clip.
20050
20051 2005-01-11  Jackson Harper  <jackson@ximian.com>
20052
20053         * TreeView.cs: When setting the hbar/vbar/grip position use
20054         SetBounds so that perform layout is only called once. Also suspend
20055         and resume layout so layout is only done once for all controls.
20056         - Removed some debug fluff
20057         * SizeGrip.cs: Call base implmentation in overriding methods.
20058         - When visibility is changed the drawing buffers are killed so we
20059         need to redraw.
20060
20061 2005-01-11  Jackson Harper  <jackson@ximian.com>
20062
20063         * TreeView.cs: Calculate the open node count while drawing. This
20064         saves us an entire tree traversal for every paint operation. Use
20065         a member var for the open node count so less vars are passed around.
20066
20067 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
20068
20069         * MonthCalendar.cs:
20070         - fixed selection to use mousemove, not mouse polling on timer
20071         * ThemeWin32Classic.cs
20072         - removed redundant unused variable "no_more_content"
20073         
20074 2005-01-11  Peter Bartok  <pbartok@novell.com>
20075
20076         * XplatUIX11.cs (DoEvents): Needs to return when no more events
20077           are pending, so it now calls PeekMessage instead of GetMessage;
20078           implemented a incomplete version of PeekMessage
20079         
20080 2005-01-11  Peter Bartok  <pbartok@novell.com>
20081
20082         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
20083           I18n issues
20084         * TextBoxBase.cs: Added sending of TextChanged event
20085
20086 2005-01-10  Jackson Harper  <jackson@ximian.com>
20087
20088         * TreeView.cs: Try not to draw outside the clipping rectangle on
20089         each node element.
20090
20091 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
20092
20093         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
20094
20095 2005-01-10  Jackson Harper  <jackson@ximian.com>
20096
20097         * TreeView.cs:
20098         - Implement fast scrolling. Now only the newly
20099         exposed nodes are drawn and the old image is moved using the
20100         XplatUI::ScrollWindow method.
20101         - Factor in height of nodes when calculating whether or not the
20102         node is in the clipping rect.
20103
20104 2005-01-10  Jackson Harper  <jackson@ximian.com>
20105
20106         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
20107
20108 2005-01-10  Peter Bartok  <pbartok@novell.com>
20109
20110         * Application.cs: Added temporary hack to resolve all our resize
20111           required issues on startup. This will get fixed properly at
20112           some point in the future
20113
20114 2005-01-10  Jackson Harper  <jackson@ximian.com>
20115
20116         * SizeGrip.cs: New internal class that is used as a sizing
20117         grip control...hence the name.
20118
20119 2005-01-10  Peter Bartok  <pbartok@novell.com>
20120
20121         * Control.cs: Implemented proper TabIndex handling, now assigning
20122           a tabindex when a control is added to a container
20123         * GroupBox.cs (ctor): Now sets the Container style bit, required
20124           for Control.GetNextControl()
20125
20126 2005-01-09  Jackson Harper  <jackson@ximian.com>
20127
20128         * TextBoxBase.cs: Clear window when scrolling (fixes build).
20129
20130 2005-01-09  Peter Bartok <pbartok@novell.com>
20131
20132         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
20133           XplatUIX11.cs: Added ability to control ScrollWindow expose and
20134           an overload for ScrollWindow to allow only scrolling a rectangle
20135
20136 2005-01-09  Peter Bartok <pbartok@novell.com>
20137
20138         * Form.cs:
20139           - Implemented SetDesktopBounds method
20140           - Implemented SetDesktopLocation method
20141
20142 2005-01-08  Jackson Harper  <jackson@ximian.com>
20143
20144         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
20145         the node count has changed, this removes to VScroll::Refresh calls
20146         when drawing.
20147
20148 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
20149
20150         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
20151
20152 2005-01-07  Jackson Harper  <jackson@ximian.com>
20153
20154         * TreeNode.cs: Just update the single node when it is
20155         checked. Don't refresh after toggling, the Expand/Collapse already
20156         handles this.
20157         * TreeView.cs: Respect clipping a little more when drawing. Try
20158         not to redraw things that don't need to be redrawn. Just hide the
20159         scrollbars when they are no longer needed instead of removing
20160         them, so they don't have to be created again and again.
20161         
20162 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
20163
20164         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
20165         coordinates to window space to place the caret properly, FIXED.
20166         Implement GetWindowState & SetWindowState
20167
20168 2005-01-06  Peter Bartok <pbartok@novell.com>
20169
20170         * Form.cs:
20171           - Implemented ClientSize property
20172           - Implemented DesktopBounds property
20173           - Implemented DesktopLocation property
20174           - Implemented IsRestrictedWindow property
20175           - Implemented Size property
20176           - Implemented TopLevel property
20177           - Implemented FormWindowState property
20178         * Control.cs:
20179           - Implemented GetTopLevel() method
20180           - Implemented SetTopLevel() method
20181         * X11Structs.cs (Atom):
20182           - Added AnyPropertyType definition
20183           - Added MapState definiton and updated XWindowAttribute struct
20184         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
20185         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
20186         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
20187         * XplatUIWin32.cs:
20188           - Implemented GetWindowState() and SetWindowState() methods
20189           - Fixed Win32GetWindowLong return type
20190         * XplatUIX11.cs:
20191           - Introduced central function for sending NET_WM messages
20192           - Implemented GetWindowState() and SetWindowState() methods
20193         * TextBoxBase.cs (set_Lines):
20194           - Now uses Foreground color for text added via Text property (Duh!)
20195           - Added code to remember programmatically requested size (fixes
20196             behaviour when Multiline is set after Size)
20197           - Added AutoSize logic
20198
20199 2005-01-06  Jackson Harper  <jackson@ximian.com>
20200
20201         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
20202
20203 2005-01-06  Jackson Harper  <jackson@ximian.com>
20204
20205         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
20206         set to less then 0.
20207
20208 2005-01-06  Jackson Harper  <jackson@ximian.com>
20209
20210         * ScrollableControl.cs: Lazy init the scrollbars.
20211         
20212 2005-01-06  Jackson Harper  <jackson@ximian.com>
20213
20214         * Theme.cs: Speed up getting pens and solid brushes, by using
20215         their ARGB as a hash instead of tostring and not calling Contains.
20216
20217 2005-01-06  Peter Bartok <pbartok@novell.com>
20218
20219         * Form.cs:
20220           - Implemented OnActivated and OnDeactivate event trigger
20221           - Implemented Activate() method
20222           - Fixed ShowDialog() to activate the form that was active before
20223             the dialog was shown
20224         * XplatUIX11.cs:
20225           - Added global active_window var that tracks the currently active
20226             X11 window
20227           - Now always grabs Property changes from the root window to always
20228             catch changes on the active window property
20229           - Added code to PropertyNotify handler to send Active/Inactive
20230             messages when state changes. This puts X11 and Win32 en par on
20231             WM_ACTIVATE notifications (except for double notifications when
20232             the user clicks away from our modal window to another one of our
20233             windows)
20234
20235 2005-01-05  Jackson Harper  <jackson@ximian.com>
20236
20237         * ImageList.cs: Implment ctor
20238
20239 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20240
20241         * XplatUIOSX.cs: Implement Activate/SetTopmost
20242
20243 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20244
20245         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
20246
20247 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
20248
20249         * XplatUIOSX.cs: Implement GetActive/SetFocus.
20250
20251 2005-01-05  Peter Bartok <pbartok@novell.com>
20252
20253         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
20254           XplatUIOSX.cs: Added GetActive method to return the currently
20255           active window for the application (or null, if none is active)
20256         * Form.cs:
20257           - Implemented ActiveForm
20258           - Commented out owner assignment for modal dialogs (causes problems
20259             on Win32, since the owner will be disabled)
20260           - Reworked some Active/Focus handling (still incomplete)
20261         * CommonDialog.cs: Commented out owner assignment for modal dialogs
20262           (causes problems on Win32, since the owner will be disabled)
20263         * IWin32Window: Added ComVisible attribute
20264
20265 2005-01-05  Peter Bartok <pbartok@novell.com>
20266
20267         * ToolTip.cs (WndProc): Enable setting focus now that we have the
20268           required XplatUI functions.
20269
20270 2005-01-05  Peter Bartok <pbartok@novell.com>
20271
20272         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
20273           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
20274           to implement focus and activation handling; still incomplete and
20275           with debug output
20276
20277 2005-01-04  Peter Bartok <pbartok@novell.com>
20278
20279         * TextBoxBase.cs: Changed access level for Document property to
20280           match switch to internal for TextControl
20281
20282 2005-01-04  Peter Bartok <pbartok@novell.com>
20283
20284         * AccessibleObject: Added ComVisible attribute
20285
20286 2005-01-04  Jackson Harper  <jackson@ximian.com>
20287
20288         * X11Keyboard.cs: Remove unneeded var.
20289
20290 2005-01-04  Jackson Harper  <jackson@ximian.com>
20291
20292         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
20293         but PAINT.
20294         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
20295         ClientMessage. This makes apps exit cleanly (more often).
20296         
20297 2005-01-04  Jackson Harper  <jackson@ximian.com>
20298
20299         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
20300         handling focus, return correct colors and fonts,
20301         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
20302         handle selection, horizontal scrolling, and mouse interaction.
20303
20304 2005-01-04  Peter Bartok <pbartok@novell.com>
20305
20306         * ICommandExecutor.cs: Added
20307         * IDataGridColumnStyleEditingNotificationService.cs: Added
20308         * IFeatureSupport.cs: Added
20309         * IFileReaderService.cs: Added
20310         * IDataObject.cs: Added ComVisible attribute
20311         * AmbientProperties.cs: Added
20312         * BaseCollection.cs: Added missing attributes
20313         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
20314         * BaseCollection.cs: Added missing attributes
20315         * Binding.cs: Added TypeConverter attribute
20316         * BindingContext.cs: Added DefaultEvent attribute
20317         * BindingsCollection.cs: Added DefaultEvent attribute
20318         * Button.cs: Added DefaultValue attribute
20319         * DragEventArgs.cs: Added ComVisible attribute
20320         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
20321         * KeyEventArgs.cs: Added ComVisible attribute
20322         * KeyPressEventArgs.cs: Added ComVisible attribute
20323         * MouseEventArgs.cs: Added ComVisible attribute
20324         * NavigateEventArgs.cs: Added
20325         * NavigateEventHandler.cs: Added
20326         * FeatureSupport.cs: Added
20327         * OSFeature.cs: Added
20328         * Theme.cs: Added abstract Version property to support OSFeature
20329         * ThemeWin32Classic.cs: Added Version property to
20330           support OSFeature.Themes
20331         * ProgressBar.cs: Removed OnPaintBackground override, not required since
20332           the proper styles to avoid background drawing are set, also doesn't
20333           match MS signature
20334         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
20335         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
20336         * ScrollEventArgs.cs: Added ComVisible attribute
20337         * SplitterEventArgs.cs: Added ComVisible attribute
20338         * AccessibleSelection.cs: Added Flags attribute
20339         * Appearance.cs: Added ComVisible attribute
20340         * Border3DSide.cs: Added ComVisible attribute
20341         * Border3DStyle.cs: Added ComVisible attribute
20342         * BorderStyle.cs: Added ComVisible attribute
20343         * DragAction.cs: Added ComVisible attribute
20344         * ErrorBlinkStyle.cs: Added
20345         * ScrollEventType.cs: Added ComVisible attribute
20346         * AnchorStyles.cs: Added Editor attribute
20347         * DockStyle.cs: Added Editor attribute
20348         * HorizontalAlignment.cs: Added ComVisible attribute
20349         * HelpEventArgs.cs: Added ComVisible attribute
20350         * PaintEventArgs.cs: Added IDisposable
20351
20352 2005-01-04  Peter Bartok <pbartok@novell.com>
20353
20354         * TextControl.cs: Switched Line, LineTag and Document classes to
20355           internal
20356
20357 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
20358
20359         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
20360         Simple mode, fixes, IntegralHeight, etc.
20361
20362 2005-01-04  Peter Bartok <pbartok@novell.com>
20363
20364         * TextBoxBase.cs: Using proper font variable now
20365
20366 2005-01-04  Peter Bartok <pbartok@novell.com>
20367
20368         * Form.cs (ShowDialog): Set parent to owner, if provided
20369         * GroupBox.cs: Removed unused vars
20370         * TextControl.cs:
20371           - Added GetHashCode() for Document and LineTag classes
20372           - Removed unused variables
20373           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
20374             to allow translation between continuous char position and line/pos
20375         * CheckBox.cs: Removed vars that are provided by base class
20376         * RadioButton.cs: Removed vars that are provided by base class, added
20377           new keyword where required
20378         * LinkLabel.cs: Added new keyword where required
20379         * Control.cs (WndProc): Removed unused variable
20380         * TextBoxBase.cs:
20381           - Finished SelectionLength property
20382           - Implemented SelectionStart property
20383           - Implemented Text property
20384           - Removed unused vars
20385         * MessageBox.cs: Added new keyword where required
20386         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
20387           WndProc signature
20388         * MenuAPI.cs: Added new keyword where required
20389         * ButtonBase.cs: Removed vars that are provided by base class, added
20390           new keyword where required
20391         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
20392           argument to double, to allow compiling with csc 2.0 (Atsushi ran
20393           into this)
20394         * Application.cs (Run): Now triggers the ThreadExit event
20395         * CommonDialog.cs: Added new keyword where required; now properly sets
20396           parent (owner) for dialog
20397         * XplatUIX11.cs: Commented out unused vars
20398         * StatusBar.cs: Fixed signature for Text property
20399         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
20400
20401 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
20402
20403         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
20404         TrackBar.cs, MonthCalendar.cs: remove unused vars
20405
20406 2005-01-03  Jackson Harper  <jackson@ximian.com>
20407
20408         * ThemeWin32Classic.cs:
20409         * X11Keyboard.cs: Remove unused vars.
20410
20411 2005-01-03  Peter Bartok  <pbartok@novell.com>
20412
20413         * TextBox.cs:
20414           - set_Text: Tied into TextControl
20415           - set_TextAlignment: Tied into TextControl
20416         * TextControl.cs:
20417           - Added alignment properties and implemented alignment handling
20418             and drawing (still has a bug, not generating proper expose events)
20419           - Added new Line() constructor to allow passing the line alignment
20420           - Fixed selection setting, properly handling end<start now
20421           - Added aligment considerations to RecalculateDocument()
20422         * TextBoxBase.cs:
20423           - Now properly enforces control height for single line controls
20424           - Added support for CharacterCasing
20425           - Added IsInputKey override
20426           - Fixed Keys.Enter logic
20427           - Added SetBoundsCore override
20428           - Fixed mouse selection handling
20429
20430 2005-01-03  Jackson Harper  <jackson@ximian.com>
20431
20432         * TreeView.cs:
20433           - Collapse and uncheck all nodes when CheckBoxes is disabled.
20434           - Checkboxes are always aligned to the bottom of the node,
20435           regardless of item height.
20436           - Use the node bounds to draw the text so we can center it when
20437           the item height is greater then the font height.
20438           - Node::Bounds are only the text part of the node.
20439         * TreeNode.cs: New method to combine collapsing and unchecking all
20440           nodes recursively.
20441
20442 2005-01-02  Jackson Harper  <jackson@ximian.com>
20443
20444         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
20445         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
20446         tree when a check is changed. TODO: Only refresh the checked node.
20447
20448 2004-12-30  Jackson Harper  <jackson@ximian.com>
20449
20450         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
20451         * TreeNode.cs: When collapsing make sure to never collapse the
20452         root node.
20453
20454 2004-12-29  Jackson Harper  <jackson@ximian.com>
20455
20456         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
20457         
20458 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
20459
20460         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
20461
20462 2004-12-28  Peter Bartok  <pbartok@novell.com>
20463
20464         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
20465           not yet assigned
20466
20467 2004-12-28  Peter Bartok  <pbartok@novell.com>
20468
20469         * Control.cs (WndProc): Added WM_HELP handler, now generates
20470           HelpRequested event
20471         * Form.cs: Added HelpButton property and required support code
20472         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
20473
20474 2004-12-28  Peter Bartok  <pbartok@novell.com>
20475
20476         * CommonDialog.cs:
20477           - Made DialogForm.owner variable internal
20478           - Added check to ensure owner form is set before setting
20479             owner properties in CreateParams
20480
20481 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
20482
20483         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
20484           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
20485           GetCursorPos.  Fix major visibility issues.  Rework the windowing
20486           system to support borderless/titleless windows (implements menus).
20487           Fix GetWindowPos.  Implement initial background color support for
20488           views.
20489
20490 2004-12-28  Peter Bartok  <pbartok@novell.com>
20491
20492         * Form.cs (get_CreateParams): Make sure we have an owner before using
20493           the owner variable. Implement proper default if no owner exists
20494
20495 2004-12-28  Peter Bartok  <pbartok@novell.com>
20496
20497         * In preparation for making Managed.Windows.Forms the default build target
20498           for System.Windows.Forms, the following stubbed files were added.
20499           Dialogs are currently being implemented by contributors and are only
20500           short-term place holders.
20501         * ColorDialog.cs: Initial check-in (minmal stub)
20502         * DataGrid.cs: Initial check-in (minimal stub)
20503         * DataGridLineStyle.cs: Initial check-in (minimal stub)
20504         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
20505         * DataGridTableStyle.cs: Initial check-in (minimal stub)
20506         * FontDialog.cs: Initial check-in (minimal stub)
20507         * FileDialog.cs: Initial check-in (minimal stub)
20508         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
20509         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
20510         * OpenFileDialog: Initial check-in (minimal stub)
20511         * IComponentEditorPageSite.cs: Initial check-in
20512         * Splitter.cs: Initial check-in (for Jackson)
20513         * SplitterEventArgs.cs: Initial check-in (for Jackson)
20514         * SplitterEventHandler.cs: Initial check-in (for Jackson)
20515         * TextBox.cs: Initial check-in; still needs some wiring to
20516           TextControl backend
20517         * Form.cs: Implemented ControlBox property
20518         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
20519         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
20520         * TextControl.cs: Added selection functionality; added todo header
20521         * TextBoxBase.cs:
20522           - Implemented Lines property
20523           - Implemented TextHeight property
20524           - Implemented SelectedText property
20525           - Implemented SelectionLength property
20526           - Implemented SelectAll method
20527           - Implemented ToString method
20528           - Removed and cleaned up some debug code
20529           - Implemented (still buggy) mouse text selection
20530
20531 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
20532
20533         * ComboBox.cs: Complete DropDownList implementation, fixes.
20534
20535 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
20536
20537         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
20538         * ComboBoxStyle.cs: ComboBoxStyle enum
20539         * ComboBox.cs: Initial work on ComboBox control
20540
20541 2004-12-21  Peter Bartok  <pbartok@novell.com>
20542
20543         * Control.cs (ctor, CreateParams): Moved setting of is_visible
20544           forward so that anything that creates a window gets the default,
20545           also no longer uses Visible property in CreateParams to avoid
20546           walking up the parent chain and possibly get the wrong visible
20547           status. Fixed IsVisible to no longer walk up to the parent.
20548
20549 2004-12-21  Peter Bartok  <pbartok@novell.com>
20550
20551         * Form.cs (ShowDialog): Unset modality for the proper window
20552  
20553 2004-12-20  Peter Bartok  <pbartok@novell.com>
20554
20555         * CommonDialog.cs: Initial check-in
20556
20557 2004-12-20  Peter Bartok  <pbartok@novell.com>
20558
20559         * Control.cs (Visible): Now uses the parent window instead of the
20560           client area window for the property
20561
20562         * Form.cs
20563           - ShowDialog(): Now uses the proper window for modality
20564           - The default visibility state for the form parent is now false. This
20565             will prevent the user from seeing all the changes to the form and
20566             its controls before the application hits Application.Run()
20567           - Removed some stale commented out code
20568
20569         * NativeWindow.cs:
20570           - Added FindWindow() method to have a method to check for existence
20571             of a window handle
20572           - Added ability to override default exception handling (for example
20573             when debugging with VS.Net; to do this the ExternalExceptionHandler
20574             define must be set
20575           - Removed some useless debug output
20576
20577         * XplatUIX11.cs:
20578           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
20579             not working as expected
20580           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
20581             property to allow switching back to the modal window if focus is
20582             given to another one of our windows (Application Modal)
20583           - Now only sets override_redirect if we create a window
20584             without WS_CAPTION
20585           - Moved EventMask selection before mapping of newly created window
20586             so we can catch the map event as well
20587           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
20588           - Added various Atom related DllImports
20589           - Implemented Exit() method
20590           - .ctor() : No longer shows window if WS_VISIBLE is not defined
20591             in the CreateParams
20592
20593         * MessageBox.cs: Now properly deals with the FormParent window by
20594           providing an override the FormParent CreateParams property to
20595           set as POPUP instead of OVERLAPPED window.
20596
20597 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
20598
20599         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
20600         Minor code cleanup.
20601
20602 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
20603         
20604         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
20605
20606 2004-12-18  Peter Bartok  <pbartok@novell.com>
20607
20608         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
20609           implementing SetModal() method
20610
20611 2004-12-18  Peter Bartok  <pbartok@novell.com>
20612
20613         * X11Structs.cs (XGCValues): Fixed type of function element
20614         * XplatUI.cs: Added ScrollWindow() method
20615         * XplatUIDriver.cs: Added ScrollWindow() abstract
20616         * XplatUIWin32.cs: Implemented ScrollWindow() method
20617         * XplatUIX11.cs: Implemented ScrollWindow() method
20618         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
20619
20620 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20621
20622         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
20623         Some more keyboard support (INCOMPLETE)
20624
20625 2004-12-17  Peter Bartok  <pbartok@novell.com>
20626
20627         * TextControl.cs:
20628         - Added color attribute to line tags.
20629         - Added color argument to all functions dealing with tags
20630         - Added color argument support to various functions
20631         - Fixed miss-calculation of baseline/shift in certain circumstances
20632
20633         * TextBoxBase.cs: Added new color option to test code
20634
20635 2004-12-17  Jackson Harper  <jackson@ximian.com>
20636
20637         * TreeNode.cs:
20638         * MonthCalendar.cs: Signature fixes
20639
20640 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20641
20642         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
20643         keyboard event moved it.  Create a new graphics context for each paint resolves this
20644
20645 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
20646
20647         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
20648         Make caret exist and go blink blink.  Initial keyboard support.
20649         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
20650         works.
20651
20652 2004-12-17  Jackson Harper  <jackson@ximian.com>
20653
20654         * XplatUIStructs.cs: Updated set of virtual keycodes.
20655         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
20656
20657 2004-12-17  Jackson Harper  <jackson@ximian.com>
20658
20659         * XplatUIX11.cs: Prune old keyboard code.
20660
20661 2004-12-17  Jackson Harper  <jackson@ximian.com>
20662
20663         * XplatUIX11.cs: When generating mouse wparams get the modifier
20664         keys from the ModifierKeys property.
20665
20666 2004-12-17  Jackson Harper  <jackson@ximian.com>
20667
20668         * X11Keyboard.cs: Send up/down input when generating
20669         messages. Remove some unused vars.
20670
20671 2004-12-17  Jackson Harper  <jackson@ximian.com>
20672
20673         * TabControl.cs:
20674         * TreeView.cs: get rid of warnings.
20675
20676 2004-12-17  Jackson Harper  <jackson@ximian.com>
20677
20678         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
20679
20680 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
20681
20682         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
20683           CheckedListBox.cs: Implementation
20684
20685 2004-12-17  Peter Bartok  <pbartok@novell.com>
20686
20687         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
20688
20689 2004-12-16  Peter Bartok  <pbartok@novell.com>
20690
20691         * TextControl.cs:
20692           - InsertCharAtCaret(): Fixed start pos fixup
20693           - CaretLine_get: No longer derives the line from the tag, the tag
20694             could be stale if lines in the document have been added or deleted
20695           - RebalanceAfterDelete(): Fixed bug in balancing code
20696           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
20697           - Line.Streamline(): Now can also elminate leading empty tags
20698           - DumpTree(): Added a few more tests and prevented exception on
20699             uninitialized data
20700           - Added Debug section for Combining lines
20701           - Delete(): Now copies all remaining properties of a line
20702           
20703         * TextBoxBase.cs:
20704           - Left mousebutton now sets the caret (and middle button still acts
20705             as formatting tester, which must go away soon)
20706           - Added Debug section for Deleting/Combining lines
20707           - Fixed calculations for UpdateView after Combining lines
20708
20709 2004-12-16  Peter Bartok  <pbartok@novell.com>
20710
20711         * TextControl.cs: Now properly aligns text on a baseline, using the
20712           new XplatUI.GetFontMetrics() method. Simplified several calculations
20713         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
20714           defined
20715
20716 2004-12-16  Peter Bartok  <pbartok@novell.com>
20717
20718         * XplatUI.cs: Added GetFontMetrics() method
20719         * XplatUIDriver.cs: Added GetFontMetrics() abstract
20720         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
20721           into libgdiplus, our private GetFontMetrics function
20722         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
20723         * XplatUIWin32.cs: Implemented GetFontMetrics() method
20724
20725 2004-12-16  Jackson Harper  <jackson@ximain.com>
20726
20727         * XplatUIStruct.cs: Add enum for dead keys
20728         * X11Keyboard.cs: Map and unmap dead keys.
20729
20730 2004-12-16  Jackson Harper  <jackson@ximian.com>
20731
20732         * X11Keyboard.cs: Detect and use the num lock mask.
20733
20734 2004-12-16  Peter Bartok  <pbartok@novell.com>
20735
20736         * Control.cs (CreateGraphics): Added check to make sure the
20737           handle of the window exists before calling Graphics.FromHwnd()
20738
20739 2004-12-16  Peter Bartok  <pbartok@novell.com>
20740
20741         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
20742           contains a lot of code that's not supposed to be there for the
20743           real thing, but required for developing/testing the textbox
20744           backend.
20745
20746 2004-12-16  Peter Bartok  <pbartok@novell.com>
20747
20748         * TextControl.cs:
20749         - Fixed Streamline method
20750         - Added FindTag method to Line
20751         - Added DumpTree method for debugging
20752         - Added DecrementLines() method for deleting lines
20753         - Fixed UpdateView to update the cursor to end-of-line on single-line
20754           updates
20755         - Added PositionCaret() method
20756         - Fixed MoveCaret(LineDown) to move into the last line, too
20757         - Added InsertChar overload
20758         - Fixed InsertChar tag offset calculations
20759         - Added DeleteChar() method
20760         - Added Combine() method for folding lines
20761         - Fixed Delete() method, no longer allocates wasted Line object and
20762           now copies all properties when swapping nodes
20763         - Delete() method now updates document line counter
20764
20765 2004-12-15  Jackson Harper  <jackson@ximian.com>
20766
20767         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
20768         * X11Keyboard.cs: Expose the currently selected modifier keys
20769         through a property.
20770
20771 2004-12-15  Peter Bartok  <pbartok@novell.com>
20772
20773         * TextControl.cs: Initial check-in. Still incomplete
20774
20775 2004-12-15  Jackson Harper  <jackson@ximian.com>
20776
20777         * TreeNode.cs:
20778         * TreeView.cs: Fix build on csc (second time today ;-))
20779
20780 2004-12-15  Jackson Harper  <jackson@ximian.com>
20781
20782         * TreeView.cs: Store the treenodes plus/minus box bounds when it
20783         is calculated and use this for click testing.
20784         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
20785
20786 2004-12-15  Jackson Harper  <jackson@ximian.com>
20787
20788         * TreeView.cs: Pass the nodes image index to the image list when
20789         drawing that image.
20790
20791 2004-12-15  Jackson Harper  <jackson@ximian.com>
20792
20793         * X11Keyboard.cs: Set messages hwnd.
20794         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
20795         post_message calls.
20796
20797 2004-12-15  Jackson Harper  <jackson@ximian.com>
20798
20799         * X11Keyboard.cs: Fix to compile with csc.
20800         
20801 2004-12-15  Jackson Harper  <jackson@ximian.com>
20802
20803         * X11Structs.cs: Add key mask values
20804         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
20805         * X11Keyboard.cs: New file - Extrapolates and interpolates key
20806         down/up foo into WM_CHAR foo
20807         * KeyboardLayouts.cs: Common keyboard layouts
20808         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
20809         post messages into the main queue.
20810
20811 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
20812
20813         * Button.cs: implement ProcessMnemonic
20814         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
20815           brushes everytime
20816         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
20817         * ButtonBase.cs: Show HotkeyPrefix (not the &)
20818
20819 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
20820         
20821         * MonthCalendar.cs: Implemented click-hold for next/previous month
20822           and date selection
20823           
20824 2004-12-11  Peter Bartok  <pbartok@novell.com>
20825
20826         * X11Structs.cs:
20827           - Added XKeyboardState (moved from XplatUIX11.cs)
20828           - Added XCreateGC related enums and structures
20829           - Added GXFunction for XSetFunction
20830
20831         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
20832
20833         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
20834           CaretVisible() calls
20835
20836         * ToolTip.cs: Added code to prevent stealing focus from app windows
20837
20838         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
20839           DestroyCaret, SetCaretPos and CaretVisible)
20840
20841         * XplatUIX11.cs:
20842           - Added implementation for caret functions
20843           - Moved hover variables into a struct, to make it a bit easier
20844             on the eyes and to debug
20845           - Removed XKeyboardState (moved to XplatUIX11.cs)
20846           - Moved Keyboard properties into the properties region
20847
20848         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
20849           call to get a graphics context for our control
20850
20851         * XplatUIOSX.cs: Added empty overrides for the new caret functions
20852
20853         * TreeView.cs: Fixed bug. No matter what color was set it would always
20854           return SystemColors.Window
20855
20856         * XplatUIWin32.cs: Implemented caret overrides
20857
20858 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
20859
20860         * ListBox.cs: fire events, implement missing methods and properties,
20861         sorting.
20862
20863 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
20864
20865         * MonthCalendar.cs: invalidation bug fixing
20866         * ThemeWin32Classic.cs: paint fixing
20867
20868 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
20869
20870         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
20871         prepare the CGContextRef there now.
20872
20873 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
20874
20875         * MonthCalendar.cs:
20876           - optimisationL only invalidate areas that have changed
20877         * ThemeWin32Classic.cs:
20878           - only paint parts that intersect with clip_area
20879
20880 2004-12-09  Peter Bartok  <pbartok@novell.com>
20881
20882         * Application.cs: Undid changes from r37004 which cause problems
20883         on X11
20884
20885 2004-12-09  Ravindra  <rkumar@novell.com>
20886
20887         * ToolBar.cs: Added support for displaying ContextMenu
20888         attached to a button on ToolBar.
20889         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
20890         property.
20891
20892 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
20893
20894         * Label.cs: autosize works in text change and removes unnecessary
20895         invalidate
20896
20897 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
20898
20899         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
20900         remove warnings
20901
20902 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
20903
20904         * XplatUIOSX.cs: Added mouse move/click/grab support
20905         Remove some debugging WriteLines not needed anymore.
20906         Add window resizing/positioning.
20907         Fix visibility on reparenting.
20908
20909 2004-12-08  Peter Bartok  <pbartok@novell.com>
20910
20911         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
20912
20913 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
20914
20915         * XplatUIOSX.cs: Initial checkin
20916         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
20917
20918 2004-12-03  Ravindra <rkumar@novell.com>
20919
20920         * ListView.cs: Added some keybindings and fixed scrolling.
20921         ScrollBars listen to ValueChanged event instead of Scroll
20922         Event. This would let us take care of all changes being
20923         done in the scrollbars' values programmatically or manually.
20924         * ListView.cs (CanMultiselect): Added a check for shift key.
20925         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
20926         * ListViewItem.cs (Clone): Fixed. We need to make a copy
20927         of ListViewSubItemCollection as well.
20928
20929 2004-12-06  Peter Bartok <pbartok@novell.com>
20930
20931         * Control.cs (Parent): Added check and exception to prevent
20932         circular parenting
20933
20934 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
20935
20936         * ListBox.cs: implemented clipping, selection single and multiple,
20937         bug fixing
20938
20939 2004-12-03  Ravindra <rkumar@novell.com>
20940
20941         * ListView.cs (ListView_KeyDown):
20942         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
20943         when CTRL key is pressed.
20944         * ListViewItem.cs (Selected): Fixed setting the property.
20945
20946 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
20947
20948         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
20949
20950         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
20951         MinimizeBox, ShowInTaskbar, TopMost properties.
20952
20953         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
20954         will be implemented).
20955
20956 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
20957
20958         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
20959
20960         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
20961         tests.
20962         
20963         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
20964         
20965         * TreeView.cs: BackColor is Colors.Window.
20966
20967 2004-12-01  Jackson Harper  <jackson@ximian.com>
20968
20969         * TreeView.cs: When resizing the tree if the user is making it
20970         smaller we don't get expose events, so we need to handle adding
20971         the horizontal scrollbar in the size changed handler as well as
20972         the expose handler.
20973
20974 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
20975
20976         * DrawItemState.cs: fixes wrong enum values
20977
20978 2004-12-01  Jackson Harper  <jackson@ximian.com>
20979
20980         * TreeView.cs: Resize the hbar as well as the vbar on resize.
20981
20982 2004-12-01  Jackson Harper  <jackson@ximian.com>
20983
20984         * NodeLabelEditEventArgs.cs:
20985         * NodeLabelEditEventHandler.cs:
20986         * OpenTreeNodeEnumerator.cs:
20987         * TreeNode.cs:
20988         * TreeNodeCollection.cs:
20989         * TreeView.cs:
20990         * TreeViewAction.cs:
20991         * TreeViewCancelEventArgs.cs:
20992         * TreeViewCancelEventHandler.cs:
20993         * TreeViewEventArgs.cs:
20994         * TreeViewEventHandler.cs: Initial implementation.
20995
20996 2004-12-01  Ravindra <rkumar@novell.com>
20997
20998         * ListView.cs (CalculateListView): Fixed scrolling related
20999         calculations. Also, removed some debug statements from other
21000         places.
21001         * ListViewItem.cs: Changed access to 'selected' instance variable
21002         from private to internal.
21003         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
21004
21005 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
21006
21007         * ThemeWin32Classic.cs: remove cache of brush and pens for
21008         specific controls and use the global system, fixes scrollbutton
21009         bugs (for small sizes, disabled, etc)
21010         
21011         * ScrollBar.cs: does not show the thumb for very small controls
21012         (as MS) and allow smaller buttons that the regular size
21013
21014 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
21015
21016         * UpDownBase.cs: Add abstract methods for the interface.
21017         Add new virtual methods (need to be hooked up to TextEntry when it
21018         exists).
21019         Add override methods for most features.
21020         Computes the size, forces the height of the text entry.
21021
21022         * NumericUpDown.cs: Put here the current testing code.
21023
21024         * Set eol-style property on all files that do not have mixed line
21025         endings, to minimize the future problems.  There are still a few
21026         files with mixed endings, and someone should choose whether they
21027         want to move it or not.
21028
21029 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
21030
21031         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
21032         System.Colors
21033         
21034 2004-11-30  Ravindra <rkumar@novell.com>
21035
21036         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
21037         drawing and replaced use of SystemColors by theme colors.
21038         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
21039         * ListView.cs (ListViewItemCollection.Add): Throw exception when
21040         same ListViewItem is being added more than once.
21041
21042 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
21043
21044         * MonthCalendar.cs:
21045           - ControlStyles love to make the control not flicker
21046           
21047 2004-11-30  Peter Bartok  <pbartok@novell.com>
21048
21049         * CharacterCasing.cs: Added
21050
21051 2004-11-29  Peter Bartok  <pbartok@novell.com>
21052
21053         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21054           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
21055           I am removing these files as they conflict with already completed
21056           work. While it is fantastic to get contributions to MWF, I
21057           respectfully ask that everyone please coordinate their contributions
21058           through mono-winforms-list or #mono-winforms at this time. We're
21059           explicitly avoiding stubbing and don't want controls that don't have
21060           their basic functionality implemented in svn. Please also see
21061           http://www.mono-project.com/contributing/winforms.html
21062
21063
21064 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
21065
21066         * Application.cs (ModalRun): Don't hang after exit.
21067
21068         * Theme.cs: New TreeViewDefaultSize property.
21069
21070         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
21071         with less hardcoded SystemColors constant.
21072         Implemented TreeViewDefaultSize.
21073
21074         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
21075         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
21076
21077
21078 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
21079
21080         * MonthCalendar.cs:
21081           - Fix NextMonthDate and PrevMonthDate click moving calendar
21082
21083 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21084
21085         * MonthCalendar.cs:
21086           - Fix usage of ScrollChange Property when scrolling months
21087
21088 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
21089
21090         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
21091          - Fixes menu destroying
21092          - Support adding and removing items on already created menus
21093
21094 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
21095
21096         * MonthCalendar.cs:
21097           - Re-worked all bolded dates handling to match win32
21098         * ThemeWin32Classic.cs:
21099           - Fixed rendering with bolded dates
21100
21101 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
21102
21103         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
21104         - Horizontal scroolbar
21105         - Multicolumn
21106         - Fixes
21107
21108
21109 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
21110
21111         * MonthCalendar.cs:
21112           - Fix Usage of MaxSelectionCount from SelectionRange
21113           - Fixed Shift + Cursor Selection
21114           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
21115           - Fixed normal cursor selection to be compat with win32
21116           - Fixed Shift + Mouse Click selection
21117
21118 2004-11-24  Peter Bartok <pbartok@novell.com>
21119
21120         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
21121         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
21122         * XplatUIX11.cs:
21123           - CreatedKeyBoardMsg now updates keystate with Alt key
21124           - Added workaround for timer crash to CheckTimers, Jackson will
21125             develop a proper fix and check in later
21126           - Implemented DispatchMessage
21127           - Removed calling the native window proc from GetMessage (call
21128             now moved to DispatchMessage)
21129
21130         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
21131           the keydata (Fixes bug #69831)
21132
21133         * XplatUIWin32.cs:
21134           - (DispatchMessage): Switched to return IntPtr
21135           - Added DllImport for SetFocus
21136
21137 2004-11-24  Ravindra <rkumar@novell.com>
21138
21139         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
21140         background drawing.
21141         * ListViewItem.cs: Fixed various properties, calculations
21142         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
21143         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
21144         and some internal properties. Fixed MouseDown handler and Paint
21145         method.
21146
21147 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21148
21149         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
21150
21151 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21152
21153         * ContainerControl.cs: correct accidental check in of local changes
21154
21155 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
21156
21157         * ThemeWin32Classic.cs:
21158                 - Fixed Drawing Last month in grid (sometimes not showing)
21159         * MonthCalendar.cs:
21160                 - Fixed title width calculation bug (makeing title small)
21161
21162 2004-11-23  Peter Bartok <pbartok@novell.com>
21163
21164         * XplatUIX11.cs:
21165           - Added generation of WM_MOUSEHOVER event
21166           - Added missing assignment of async_method atom
21167           - Fixed WM_ERASEBKGND; now only redraws the exposed area
21168
21169 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
21170
21171         * ThemeWin32Classic.cs:
21172                 - Fixed Drawing of today circle when showtodaycircle not set
21173                 - fixed drawing of first and last month in the grid (gay dates)
21174         * MonthCalendar.cs:
21175                 - Fixed Drawing of today circle
21176                 - Fixed drawing of grady dates
21177                 - Fixed HitTest for today link when ShowToday set to false
21178                 - Fixed DefaultSize to obey ShowToday
21179
21180 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
21181
21182         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
21183         * System.Windows.Forms/Theme.cs
21184         * MonthCalendar.cs: added for MonthCalendar
21185         * SelectionRange.cs: added for MonthCalendar
21186         * Day.cs: added for MonthCalendar: added for MonthCalendar
21187         * DateRangeEventArgs.cs: added for MonthCalendar
21188         * DateRangeEventHandler.cs: added for MonthCalendar
21189
21190 2004-11-22  Ravindra <rkumar@novell.com>
21191
21192         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
21193         property.
21194
21195 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
21196
21197         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
21198         event handler.
21199         
21200         * NumericUpDown.cs: Added new implementation.
21201         * UpDownBase.cs: Added new implementation.
21202
21203         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
21204         implementations.
21205         
21206         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
21207         implementations.
21208
21209         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
21210         methods.
21211
21212 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
21213
21214         * Timer.cs  (Dispose): Should call the base dispose when
21215         overriding.
21216
21217 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
21218
21219         * ScrollBar.cs: updates thumb position when max, min or increment
21220         is changed
21221
21222 2004-11-21  Ravindra <rkumar@novell.com>
21223
21224         * ListView.cs: Implemented item selection, activation and
21225         column header style. Fixed properties to do a redraw, if
21226         required. Added support for MouseHover, DoubleClick, KeyDown
21227         and KeyUp event handling and some minor fixes.
21228         * ListViewItem.cs: Fixed constructor.
21229         * ThemeWin32Classic.cs: Improved drawing for ListView.
21230
21231 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
21232
21233         * ThemeWin32Classic.cs: initial listbox drawing code
21234         * DrawMode.cs: new enumerator
21235         * ListControl.cs: stubbed class
21236         * ListBox.cs: initial implementation
21237         * Theme.cs: new methods definitions
21238         * SelectionMode.cs: new enumerator
21239
21240 2004-11-17  Peter Bartok  <pbartok@novell.com>
21241
21242         * XplatUIWin32.cs: Added double-click events to the class style
21243         * Control.cs (WndProc):
21244           - Added handling of click-count to MouseDown/ MouseUp events.
21245           - Added handling of middle and right mouse buttons
21246           - Removed old debug code
21247
21248 2004-11-17  Jackson Harper  <jackson@ximian.com>
21249
21250         * XplatUIX11.cs: Use the new Mono.Unix namespace.
21251
21252 2004-11-17  Ravindra <rkumar@novell.com>
21253
21254         * ListView.cs: Added event handling for MouseMove/Up/Down.
21255         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
21256         * ThemeWin32Classic.cs: We need to clear the graphics context and
21257         draw column header in a proper state.
21258
21259
21260 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
21261
21262         *  Menu.cs: fixes signature
21263
21264 2004-11-16  Peter Bartok  <pbartok@novell.com>
21265
21266         * XplatUIX11.cs (GetMessage): Implemented generation of
21267           double click mouse messages
21268
21269 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
21270
21271         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
21272         not by menu
21273
21274 2004-11-11  Peter Bartok  <pbartok@novell.com>
21275
21276         * HandleData.cs: Added Visible property
21277         * XplatUIX11.cs (IsVisible): Now uses Visible property from
21278           HandleData
21279         * XplatUIX11.cs: Removed old debug leftovers
21280         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
21281         * Control.cs (WndProc): Removed old debug leftovers,
21282           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
21283           needed WM_SIZE handling
21284
21285 2004-11-11  Jackson Harper  <jackson@ximian.com>
21286
21287         * OwnerDrawPropertyBag.cs:
21288         * TreeViewImageIndexConverter.cs: Initial implementation
21289
21290 2004-11-10  Jackson Harper  <jackson@ximian.com>
21291
21292         * ThemeWin32Classic.cs:
21293         * TabControl.cs: instead of moving tabs by the slider pos just
21294         start drawing at the tab that is offset by the slider. This way
21295         scrolling always moves by exactly one tab.
21296
21297 2004-11-10  Jackson Harper  <jackson@ximian.com>
21298
21299         * TabControl.cs: You can only scroll left when the slider has
21300         already ben moved right.
21301         
21302 2004-11-10  Jackson Harper  <jackson@ximian.com>
21303
21304         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
21305         the clip area.
21306         
21307 2004-11-10  Jackson Harper  <jackson@ximian.com>
21308
21309         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
21310         clip area.
21311         
21312 2004-11-09  Jackson Harper  <jackson@ximian.com>
21313
21314         * TabControl.cs (CalcXPos): New helper method so we can determine
21315         the proper place to start drawing vertical tabs.
21316         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
21317         
21318 2004-11-09  Jackson Harper  <jackson@ximian.com>
21319
21320         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
21321         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
21322         and Bottom, left and right are illegal values for this and
21323         multiline is enabled when the alignment is set to left or right.
21324         (DrawTab): Each alignment block should draw the text itself now
21325         because Left requires special love. Also add rendering for Left
21326         aligned tabs.
21327         
21328 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
21329
21330         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
21331         does not destroy the windows, removes debugging messages
21332
21333 2004-11-09  jba  <jba-mono@optusnet.com.au>
21334
21335         * ThemeWin32Classic.cs
21336         (DrawButtonBase): Fix verticle text rect clipping in windows
21337         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21338         rendering and incorrect text rect clipping
21339         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
21340         rendering and incorrect text rect clipping
21341         
21342 2004-11-08  Jackson Harper  <jackson@ximian.com>
21343
21344         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
21345         bottom when they are bottom aligned so the bottoms of the tabs get
21346         displayed.
21347         * TabControl.cs (DropRow): Move rows up instead of down when the
21348         tab control is bottom aligned.
21349
21350 2004-11-08 13:59  pbartok
21351
21352         * XplatUIX11.cs:
21353           - Added handling for various window styles
21354           - Added handling for popup windows
21355           - Added SetTopmost handling
21356
21357 2004-11-08 13:55  pbartok
21358
21359         * XplatUIWin32.cs:
21360           - Added argument to SetTopmost method
21361           - Fixed broken ClientToScreen function
21362
21363 2004-11-08 13:53  pbartok
21364
21365         * XplatUIStructs.cs:
21366           - Added missing WS_EX styles
21367
21368 2004-11-08 13:53  pbartok
21369
21370         * XplatUI.cs, XplatUIDriver.cs:
21371           - Added argument to SetTopmost
21372
21373 2004-11-08 13:52  pbartok
21374
21375         * X11Structs.cs:
21376           - Added XSetWindowAttributes structure
21377           - Improved XWindowAttributes structure
21378           - Added SetWindowValuemask enum
21379           - Added window creation arguments enum
21380           - Added gravity enum
21381           - Added Motif hints structure
21382           - Added various Motif flags and enums
21383           - Added PropertyMode enum for property functions
21384
21385 2004-11-08 13:50  pbartok
21386
21387         * Form.cs:
21388           - Fixed arguments for updated SetTopmost method
21389
21390 2004-11-08 13:49  pbartok
21391
21392         * ToolTip.cs:
21393           - Fixed arguments for updated SetTopmost function
21394           - Fixed usage of PointToClient
21395
21396 2004-11-08 13:44  pbartok
21397
21398         * MenuAPI.cs:
21399           - Added Clipping of children and siblings
21400
21401 2004-11-08 13:41  pbartok
21402
21403         * MainMenu.cs:
21404           - Removed SetMenuBarWindow call. We do this in Form.cs
21405
21406 2004-11-08 13:40  jackson
21407
21408         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
21409           scrolling jimmi in the correct location with bottom aligned tabs
21410
21411 2004-11-08 13:36  pbartok
21412
21413         * ContainerControl.cs:
21414           - Implemented BindingContext
21415           - Implemented ParentForm
21416
21417 2004-11-08 12:46  jackson
21418
21419         * TabControl.cs: Put bottom rendered tabs in the right location
21420
21421 2004-11-08 07:15  jordi
21422
21423         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
21424           removes dead code
21425
21426 2004-11-05 17:30  jackson
21427
21428         * TabControl.cs: When selected tabs are expanded make sure they
21429           don't go beyond the edges of the tab control
21430
21431 2004-11-05 14:57  jackson
21432
21433         * TabControl.cs: Reset show_slider so if the control is resized to
21434           a size where it is no longer needed it's not displayed anymore
21435
21436 2004-11-05 13:16  jackson
21437
21438         * TabControl.cs: Make tab pages non visible when added to the
21439           control
21440
21441 2004-11-05 12:42  jackson
21442
21443         * TabControl.cs: Implement SizeMode.FillToRight
21444
21445 2004-11-05 12:16  jackson
21446
21447         * Control.cs: Do not call CreateHandle if the handle is already
21448           created
21449
21450 2004-11-05 11:46  jackson
21451
21452         * TabControl.cs: Remove superflous call to CalcTabRows
21453
21454 2004-11-05 09:07  jackson
21455
21456         * XplatUIX11.cs: Update for Mono.Posix changes
21457
21458 2004-11-05 07:00  ravindra
21459
21460         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
21461           scrolling.
21462
21463 2004-11-04 22:47  jba
21464
21465         * ThemeWin32Classic.cs:
21466           - Fix Button rendering for FlatStyle = Flat or Popup
21467           - Fix RadioButton and CheckBox rendering when Appearance = Button
21468             (normal and flatstyle).
21469           - Correct outer rectangle color when drawing focus rectangle
21470           - Adjust button bounds to be 1 px smaller when focused
21471           - Make button not draw sunken 3d border when pushed (windows compat)
21472           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
21473           - Offset the text in RadioButton and Checkbox when being rendered as
21474           a button.
21475           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
21476           radiobuttons
21477           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
21478           - Fixed disabled text rendering for normally rendered radiobuttons
21479
21480 2004-11-04 10:26  jackson
21481
21482         * TabControl.cs: Recalculate tab rows when resizing
21483
21484 2004-11-04 07:47  jordi
21485
21486         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
21487           collection completion, drawing issues, missing features
21488
21489 2004-11-04 05:03  ravindra
21490
21491         * ScrollBar.cs:
21492                 - We need to recalculate the Thumb area when
21493                 LargeChange/maximum/minimum values are changed.
21494           - We set the 'pos' in UpdatePos() method to minimum, if it's less
21495                 than minimum. This is required to handle the case if large_change is
21496                 more than max, and use LargeChange property instead of large_change
21497                 variable.
21498           - We return max+1 when large_change is more than max, like MS does.
21499
21500 2004-11-04 04:29  ravindra
21501
21502         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
21503                 - Changed default value signatures (prefixed all with ListView).
21504                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
21505                 ListView.
21506           - Fixed calculations for ListViewItem and implemented Clone()
21507           method.
21508
21509 2004-11-04 04:26  ravindra
21510
21511         * Theme.cs, ThemeWin32Classic.cs:
21512                 - Changed default ListView values signatures (prefixed all with
21513                 ListView).
21514           - Fixed default size values for VScrollBar and HScrollBar.
21515                 - Fixed DrawListViewItem method.
21516
21517 2004-11-04 04:05  ravindra
21518
21519         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
21520
21521 2004-11-04 04:04  ravindra
21522
21523         * ImageList.cs: Implemented the missing overload for Draw method.
21524
21525 2004-11-03 19:29  jackson
21526
21527         * TabControl.cs: Handle dropping rows on selection properly
21528
21529 2004-11-03 11:59  jackson
21530
21531         * TabControl.cs: remove debug code
21532
21533 2004-11-03 11:52  jackson
21534
21535         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
21536           the scrolly widgerywoo
21537
21538 2004-11-02 13:52  jackson
21539
21540         * TabControl.cs: Resize the tab pages and tabs when the tab control
21541           is resized
21542
21543 2004-11-02 13:40  jackson
21544
21545         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
21546           selected tab to the bottom
21547
21548 2004-11-02 13:39  jackson
21549
21550         * TabPage.cs: Store the tab pages row
21551
21552 2004-11-02 12:33  jordi
21553
21554         * MenuItem.cs: fixes handle creation
21555
21556 2004-11-02 11:42  jackson
21557
21558         * TabControl.cs: signature fix
21559
21560 2004-11-02 08:56  jackson
21561
21562         * TabControl.cs: Calculate whether the tab is on an edge properly.
21563           Remove top secret debugging code
21564
21565 2004-11-01 19:57  jackson
21566
21567         * TabControl.cs: Add click handling, and proper sizing
21568
21569 2004-11-01 19:47  jackson
21570
21571         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
21572           tab controls
21573
21574 2004-11-01 19:39  jackson
21575
21576         * TabPage.cs: add internal property to store the bounds of a tab
21577           page
21578
21579 2004-10-30 04:23  ravindra
21580
21581         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
21582           values.
21583
21584 2004-10-30 04:21  ravindra
21585
21586         * ListView.cs, ListViewItem.cs: Added support for scrolling and
21587           fixed calculations.
21588
21589 2004-10-30 03:06  pbartok
21590
21591         * XplatUIX11.cs:
21592           - Removed extension of DllImported libs
21593
21594 2004-10-29 09:55  jordi
21595
21596         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
21597           navigation, itemcollection completion, menu fixes
21598
21599 2004-10-27 22:58  pbartok
21600
21601         * XplatUIX11.cs:
21602           - Now throws a nice error message when no X display could be opened
21603
21604 2004-10-26 13:51  jordi
21605
21606         * ListView.cs: removes warning
21607
21608 2004-10-26 03:55  ravindra
21609
21610         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
21611           ThemeWin32Classic.cs: Some formatting for my last checkins.
21612
21613 2004-10-26 03:36  ravindra
21614
21615         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
21616           control and default values.
21617
21618 2004-10-26 03:35  ravindra
21619
21620         * Theme.cs: Added some default values for ListView control.
21621
21622 2004-10-26 03:33  ravindra
21623
21624         * ToolBar.cs: ToolBar should use the user specified button size, if
21625           there is any. Added a size_specified flag for the same.
21626
21627 2004-10-26 03:33  ravindra
21628
21629         * ColumnHeader.cs: Added some internal members and calculations for
21630           ColumnHeader.
21631
21632 2004-10-26 03:32  ravindra
21633
21634         * ListViewItem.cs: Calculations for ListViewItem.
21635
21636 2004-10-26 03:31  ravindra
21637
21638         * ListView.cs: Added some internal members and calculations for
21639           ListView.
21640
21641 2004-10-22 13:31  jordi
21642
21643         * MenuAPI.cs: speedup menus drawing
21644
21645 2004-10-22 13:16  jackson
21646
21647         * XplatUIX11.cs: Make sure to update exposed regions when adding an
21648           expose event
21649
21650 2004-10-22 11:49  jackson
21651
21652         * Control.cs: oops
21653
21654 2004-10-22 11:41  jackson
21655
21656         * Control.cs: Check to see if the window should have its background
21657           repainted by X when drawing.
21658
21659 2004-10-22 11:31  jackson
21660
21661         * XplatUIX11.cs: When invalidating areas only use XClearArea if
21662           clear is true, this way we do not get flicker from X repainting the
21663           background
21664
21665 2004-10-22 11:28  jackson
21666
21667         * XEventQueue.cs: Queue properly
21668
21669 2004-10-21 09:38  jackson
21670
21671         * XEventQueue.cs: Fix access modifier
21672
21673 2004-10-21 09:36  jackson
21674
21675         * XEventQueue.cs: Don't loose messages
21676
21677 2004-10-21 09:22  jackson
21678
21679         * XEventQueue.cs: Don't loose messages
21680
21681 2004-10-20 04:15  jordi
21682
21683         * BootMode.cs: enum need it by SystemInfo
21684
21685 2004-10-19 21:58  pbartok
21686
21687         * XplatUIWin32.cs:
21688           - Small sanity check
21689
21690 2004-10-19 21:56  pbartok
21691
21692         * Form.cs:
21693           - Added private FormParentWindow class which acts as the container
21694             for our form and as the non-client area where menus are drawn
21695           - Added/Moved required tie-ins to Jordi's menus
21696           - Fixed/Implemented the FormStartPosition functionality
21697
21698 2004-10-19 21:52  pbartok
21699
21700         * Control.cs:
21701           - Removed unneeded locals
21702           - Added code to all size and location properties to understand and
21703             deal with the parent container of Form
21704
21705 2004-10-19 21:33  pbartok
21706
21707         * Application.cs:
21708           - Fixed to deal with new Form subclasses for menus
21709
21710 2004-10-19 17:48  jackson
21711
21712         * XEventQueue.cs: commit correct version of file
21713
21714 2004-10-19 16:50  jackson
21715
21716         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
21717
21718 2004-10-19 16:15  jordi
21719
21720         * MenuAPI.cs: MenuBarCalcSize returns the height
21721
21722 2004-10-19 08:31  pbartok
21723
21724         * Control.cs:
21725           - Added missing call to PreProcessMessage before calling OnXXXKey
21726           methods
21727
21728 2004-10-19 00:04  ravindra
21729
21730         * ToolTip.cs: Fixed constructor.
21731
21732 2004-10-18 09:31  jordi
21733
21734         * MenuAPI.cs: menuitems in menubars do not have shortcuts
21735
21736 2004-10-18 09:26  jordi
21737
21738         * MenuItem.cs: fixes MenuItem class signature
21739
21740 2004-10-18 08:56  jordi
21741
21742         * MenuAPI.cs: prevents windows from showing in the taskbar
21743
21744 2004-10-18 00:28  ravindra
21745
21746         * ToolTip.cs: Suppressed a warning message.
21747
21748 2004-10-18 00:27  ravindra
21749
21750         * Control.cs: Default value of visible property must be true.
21751
21752 2004-10-17 23:19  pbartok
21753
21754         * ToolTip.cs:
21755           - Complete implementation
21756
21757 2004-10-17 23:19  pbartok
21758
21759         * XplatUIX11.cs:
21760           - Added EnableWindow method
21761           - Added SetModal stub
21762           - Added generation of WM_ACTIVATE message (still needs testing)
21763           - Added SetTopMost stub
21764           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
21765
21766 2004-10-17 23:17  pbartok
21767
21768         * XplatUIWin32.cs:
21769           - Removed VirtualKeys to XplatUIStructs
21770           - Implemented SetTopMost method
21771           - Implemented EnableWindow method
21772           - Bugfix in ScreenToClient()
21773           - Bugfixes in ClientToScreen()
21774
21775 2004-10-17 22:51  pbartok
21776
21777         * XplatUIStructs.cs:
21778           - Added WS_EX styles to WindowStyles enumeration
21779
21780 2004-10-17 22:50  pbartok
21781
21782         * XplatUI.cs, XplatUIDriver.cs:
21783           - Added method for enabling/disabling windows
21784           - Added method for setting window modality
21785           - Added method for setting topmost window
21786
21787 2004-10-17 22:49  pbartok
21788
21789         * ThemeWin32Classic.cs:
21790           - Added ToolTip drawing code
21791
21792 2004-10-17 22:49  pbartok
21793
21794         * Theme.cs:
21795           - Added ToolTip abstracts
21796
21797 2004-10-17 22:47  pbartok
21798
21799         * Form.cs:
21800           - Fixed Form.ControlCollection to handle owner relations
21801           - Added Owner/OwnedForms handling
21802           - Implemented Z-Ordering for owned forms
21803           - Removed unneeded private overload of ShowDialog
21804           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
21805             so I hope)
21806           - Fixed Close(), had wrong default
21807           - Added firing of OnLoad event
21808           - Added some commented out debug code for Ownership handling
21809
21810 2004-10-17 22:16  pbartok
21811
21812         * Control.cs:
21813           - Fixed/implemented flat list of controls
21814
21815 2004-10-17 22:14  pbartok
21816
21817         * Application.cs:
21818           - Added code to simulate modal dialogs on Win32
21819
21820 2004-10-17 16:11  jordi
21821
21822         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
21823           mouse event
21824
21825 2004-10-17 13:39  jordi
21826
21827         * MenuAPI.cs: menu drawing fixes
21828
21829 2004-10-15 09:10  ravindra
21830
21831         * StructFormat.cs: General Enum.
21832
21833 2004-10-15 09:09  ravindra
21834
21835         * SizeGripStyle.cs: Enum for Form.
21836
21837 2004-10-15 09:08  ravindra
21838
21839         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
21840           in Theme for ListView.
21841
21842 2004-10-15 09:06  ravindra
21843
21844         * ColumnHeader.cs: Flushing some formatting changes.
21845
21846 2004-10-15 09:05  ravindra
21847
21848         * ListViewItem.cs: Implemented GetBounds method and fixed coding
21849           style.
21850
21851 2004-10-15 09:03  ravindra
21852
21853         * ListView.cs: Implemented Paint method and fixed coding style.
21854
21855 2004-10-15 07:34  jordi
21856
21857         * MenuAPI.cs: fix for X11
21858
21859 2004-10-15 07:32  ravindra
21860
21861         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
21862                 - Renamed Paint() method to Draw() for clarity. Also, moved
21863                 DrawImage() to OnPaint().
21864
21865 2004-10-15 07:25  ravindra
21866
21867         * CheckBox.cs, RadioButton.cs:
21868                 - Removed Redraw (), we get it from ButtonBase.
21869                 - Implemented Paint (), to do class specific painting.
21870
21871 2004-10-15 07:16  ravindra
21872
21873         * ButtonBase.cs:
21874                 - Redraw () is not virtual now.
21875                 - Added an internal virtual method Paint (), so that
21876                 derived classes can do their painting on their own.
21877                 - Modified OnPaint () to call Paint ().
21878
21879 2004-10-15 06:43  jordi
21880
21881         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
21882           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
21883
21884 2004-10-15 00:30  ravindra
21885
21886         * MessageBox.cs:
21887                 - MessageBox on windows does not have min/max buttons.
21888                 This change in CreateParams fixes this on Windows. We
21889                 still need to implement this windowstyle behavior in
21890                 our X11 driver.
21891
21892 2004-10-14 05:14  ravindra
21893
21894         * ToolBar.cs:
21895                 - Changed Redraw () to do a Refresh () always.
21896                 - Fixed the MouseMove event handling when mouse is pressed,
21897                 ie drag event handling.
21898                 - Replaced the usage of ToolBarButton.Pressed property to
21899                 ToolBarButton.pressed internal variable.
21900
21901 2004-10-14 05:10  ravindra
21902
21903         * ToolBarButton.cs:
21904                 - Added an internal member 'inside' to handle mouse move
21905                 with mouse pressed ie mouse drag event.
21906                 - Changed 'Pressed' property to return true only when
21907                 'inside' and 'pressed' are both true.
21908                 - Some coding style love.
21909
21910 2004-10-14 00:17  ravindra
21911
21912         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
21913           public method.
21914
21915 2004-10-14 00:15  ravindra
21916
21917         * ButtonBase.cs: Redraw () related improvements.
21918
21919 2004-10-14 00:14  ravindra
21920
21921         * MessageBox.cs: Moved InitFormSize () out of Paint method and
21922           removed unnecessary calls to Button.Show () method.
21923
21924 2004-10-13 17:50  pbartok
21925
21926         * XplatUIX11.cs:
21927           - Formatting fix
21928           - Removed destroying of window until we solve the problem of X
21929             destroying the window before us on shutdown
21930
21931 2004-10-13 16:32  pbartok
21932
21933         * ButtonBase.cs:
21934           - Now Redraws on MouseUp for FlatStyle Flat and Popup
21935
21936 2004-10-13 14:18  pbartok
21937
21938         * XplatUIX11.cs:
21939           - Added code to destroy the X window
21940
21941 2004-10-13 14:18  pbartok
21942
21943         * XplatUIWin32.cs:
21944           - Added code to destroy a window
21945
21946 2004-10-13 14:12  pbartok
21947
21948         * ButtonBase.cs:
21949           - Added the Redraw on Resize that got dropped in the last rev
21950
21951 2004-10-13 09:06  pbartok
21952
21953         * ThemeWin32Classic.cs:
21954           - Path from John BouAntoun:
21955             * Fix check rendering (centre correctly for normal style, offset
21956               correctly for FlatStyle).
21957             * Fix border color usage (use backcolor) for FlatStyle.Popup
21958             * Use checkbox.Capture instead of checkbox.is_pressed when
21959               rendering flatstyle states.
21960
21961 2004-10-12 21:48  pbartok
21962
21963         * ThemeWin32Classic.cs:
21964           - Removed all occurences of SystemColors and replaced them with the
21965             matching theme color
21966
21967 2004-10-12 21:41  pbartok
21968
21969         * ThemeWin32Classic.cs:
21970           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
21971             him using the function for flatstyle drawing
21972           - Changed functions to use the new version of CPDrawBorder3D
21973
21974 2004-10-12 21:15  pbartok
21975
21976         * ControlPaint.cs:
21977           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
21978             match MS documentation. They need to return defined colors if the
21979             passed color matches the configured control color. Thanks to John
21980             BouAntoun for pointing this out.
21981
21982 2004-10-12 20:57  pbartok
21983
21984         * Control.cs:
21985           - Fix from John BouAntoun: Raise ForeColorChanged event when text
21986             color is changed
21987
21988 2004-10-12 20:46  pbartok
21989
21990         * CheckBox.cs:
21991           - Fix from John BouAntoun: Now properly sets the Appearance property
21992
21993 2004-10-12 20:45  pbartok
21994
21995         * ThemeWin32Classic.cs:
21996           - Fixes from John BouAntoun: now handles forecolors and backcolors
21997             for flatstyle rendered controls much better; It also fixes normal
21998             checkbox rendering when pushed or disabled.
21999
22000 2004-10-08 02:50  jordi
22001
22002         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
22003           work
22004
22005 2004-10-07 08:56  jordi
22006
22007         * ThemeWin32Classic.cs: Removes deletion of cached brushes
22008
22009 2004-10-06 03:59  jordi
22010
22011         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
22012           XplatUIWin32.cs: removes warnings from compilation
22013
22014 2004-10-05 12:23  jackson
22015
22016         * RadioButton.cs: Fix ctor
22017
22018 2004-10-05 11:10  pbartok
22019
22020         * MessageBox.cs:
22021           - Partial implementation by Benjamin Dasnois
22022
22023 2004-10-05 10:15  jackson
22024
22025         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
22026           by John BouAntoun
22027
22028 2004-10-05 03:07  ravindra
22029
22030         * ToolBar.cs:
22031                 - Removed a private method, Draw ().
22032                 - Fixed the ButtonDropDown event handling.
22033                 - Fixed MouseMove event handling.
22034
22035 2004-10-05 03:04  ravindra
22036
22037         * ThemeWin32Classic.cs:
22038                 - Added DrawListView method and ListViewDefaultSize property.
22039                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
22040                 - Changed DOS style CRLF to Unix format (dos2unix).
22041
22042 2004-10-05 03:03  ravindra
22043
22044         * Theme.cs:
22045                 - Added DrawListView method and ListViewDefaultSize property.
22046
22047 2004-10-05 02:42  ravindra
22048
22049         * ToolBarButton.cs: Added an internal member dd_pressed to handle
22050           clicks on DropDown arrow.
22051
22052 2004-10-04 22:56  jackson
22053
22054         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
22055           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
22056           Control handle the buffers, derived classes should not have to
22057           CreateBuffers themselves.
22058
22059 2004-10-04 21:20  jackson
22060
22061         * StatusBar.cs: The control handles resizing the buffers now.
22062
22063 2004-10-04 21:18  jackson
22064
22065         * Control.cs: When resizing the buffers should be invalidated. This
22066           should be handled in Control not in derived classes.
22067
22068 2004-10-04 14:45  jackson
22069
22070         * TabPage.cs: oops
22071
22072 2004-10-04 02:14  pbartok
22073
22074         * LeftRightAlignment.cs:
22075           - Initial check-in
22076
22077 2004-10-04 01:09  jordi
22078
22079         * ThemeWin32Classic.cs: fixes right button position causing right
22080           button not showing on horizontal scrollbars
22081
22082 2004-10-02 13:12  pbartok
22083
22084         * XplatUIX11.cs:
22085           - Simplified the Invalidate method by using an X call instead of
22086             generating the expose ourselves
22087           - Added an expose when the window background is changed
22088           - Implemented ClientToScreen method
22089
22090 2004-10-02 13:08  pbartok
22091
22092         * XplatUIWin32.cs:
22093           - Added Win32EnableWindow method (test for implementing modal
22094           dialogs)
22095           - Added ClientToScreen method and imports
22096
22097 2004-10-02 13:07  pbartok
22098
22099         * XplatUI.cs, XplatUIDriver.cs:
22100           - Added ClientToScreen coordinate translation method
22101
22102 2004-10-02 13:06  pbartok
22103
22104         * KeyPressEventArgs.cs:
22105           - Fixed access level for constructor
22106
22107 2004-10-02 13:06  pbartok
22108
22109         * NativeWindow.cs:
22110           - Changed access level for the window_collection hash table
22111
22112 2004-10-02 13:05  pbartok
22113
22114         * Form.cs:
22115           - Added KeyPreview property
22116           - Added Menu property (still incomplete, pending Jordi's menu work)
22117           - Implemented ProcessCmdKey
22118           - Implemented ProcessDialogKey
22119           - Implemented ProcessKeyPreview
22120
22121 2004-10-02 13:02  pbartok
22122
22123         * Control.cs:
22124           - Added private method to get the Control object from the window
22125           handle
22126           - Implemented ContextMenu property
22127           - Implemented PointToScreen
22128           - Implemented PreProcessMessage
22129           - Implemented IsInputChar
22130           - Implemented IsInputKey
22131           - Implemented ProcessCmdKey
22132           - Completed ProcessKeyEventArgs
22133           - Fixed message loop to call the proper chain of functions on key
22134           events
22135           - Implemented ProcessDialogChar
22136           - Implemented ProcessDialogKey
22137           - Implemented ProcessKeyMessage
22138           - Implemented ProcessKeyPreview
22139           - Added RaiseDragEvent stub (MS internal method)
22140           - Added RaiseKeyEvent stub (MS internal method)
22141           - Added RaiseMouseEvent stub (MS Internal method)
22142           - Added RaisePaintEvent stub (MS Internal method)
22143           - Added ResetMouseEventArgs stub (MS Internal method)
22144           - Implemented RtlTranslateAlignment
22145           - Implemented RtlTranslateContent
22146           - Implemented RtlTranslateHorizontal
22147           - Implemented RtlTranslateLeftRight
22148           - Added generation of KeyPress event
22149
22150 2004-10-02 05:57  ravindra
22151
22152         * ListViewItem.cs: Added attributes.
22153
22154 2004-10-02 05:32  ravindra
22155
22156         * ListView.cs: Added attributes.
22157
22158 2004-10-01 11:53  jackson
22159
22160         * Form.cs: Implement the Close method so work on MessageBox can
22161           continue.
22162
22163 2004-09-30 14:06  pbartok
22164
22165         * XplatUIX11.cs:
22166           - Bug fixes
22167
22168 2004-09-30 11:34  jackson
22169
22170         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
22171
22172 2004-09-30 07:26  ravindra
22173
22174         * ListViewItemConverter.cs: Converter for ListViewItem.
22175
22176 2004-09-30 07:26  ravindra
22177
22178         * SortOrder.cs: Enum for ListView control.
22179
22180 2004-09-30 07:25  ravindra
22181
22182         * ColumnHeader.cs: Supporting class for ListView control.
22183
22184 2004-09-30 07:24  ravindra
22185
22186         * ListView.cs, ListViewItem.cs: Initial implementation.
22187
22188 2004-09-30 07:20  ravindra
22189
22190         * ItemActivation.cs: Enum for ListView Control.
22191
22192 2004-09-29 20:29  pbartok
22193
22194         * XplatUIX11.cs:
22195           - Added lookup of pixel value for background color; tries to get a
22196             color 'close' to the requested color, it avoids having to create a
22197             colormap.  Depending on the display this could mean the used color
22198             is slightly off the desired color. Might have to change it to a more
22199             resource intensive colormap approach, but it will work as a
22200           workaround to avoid red screens.
22201
22202 2004-09-29 14:27  jackson
22203
22204         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
22205
22206 2004-09-28 12:44  pbartok
22207
22208         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
22209           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
22210           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
22211           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
22212           TrackBar.cs, VScrollBar.cs:
22213           - Streamlined Theme interfaces:
22214             * Each DrawXXX method for a control now is passed the object for
22215               the control to be drawn in order to allow accessing any state the
22216               theme might require
22217
22218             * ControlPaint methods for the theme now have a CP prefix to avoid
22219               name clashes with the Draw methods for controls
22220
22221             * Every control now retrieves it's DefaultSize from the current
22222             theme
22223
22224 2004-09-28 12:17  jackson
22225
22226         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
22227           drawing
22228
22229 2004-09-24 14:57  jackson
22230
22231         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
22232           Gives us a nice little performance boost.
22233
22234 2004-09-24 12:02  jackson
22235
22236         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
22237           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
22238           Control and supporting classes. Initial checkin
22239
22240 2004-09-23 13:08  jackson
22241
22242         * Form.cs: Temp build fixage
22243
22244 2004-09-23 01:39  ravindra
22245
22246         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
22247           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
22248           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
22249           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
22250           EventHandlers needed by ListView Control.
22251
22252 2004-09-22 14:12  pbartok
22253
22254         * ScrollableControl.cs:
22255           - Implemented DockPadding property
22256           - Implemented AutoScroll property
22257           - Implemented AutoScrollMargin property
22258           - Implemented AutoScrollMinSize property
22259           - Implemented AutoScrollPosition property
22260           - Implemented DisplayRectangle property (still incomplete)
22261           - Implemented CreateParams property
22262           - Implemented HScroll property
22263           - Implemented VScroll property
22264           - Implemented OnVisibleChanged property
22265
22266 2004-09-22 14:09  pbartok
22267
22268         * Form.cs:
22269           - Added Form.ControllCollection class
22270           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
22271             RemoveOwnedForm (still incomplete, missing on-top and common
22272             minimize/maximize behaviour)
22273           - Added StartPosition property (still incomplete, does not use when
22274             creating the form)
22275           - Added ShowDialog() methods (still incomplete, missing forcing the
22276             dialog modal)
22277
22278 2004-09-22 14:05  pbartok
22279
22280         * Application.cs:
22281           - Added message loop for modal dialogs
22282
22283 2004-09-22 14:02  pbartok
22284
22285         * GroupBox.cs:
22286           - Fixed wrong types for events
22287
22288 2004-09-22 14:00  pbartok
22289
22290         * Shortcut.cs, FormWindowState.cs:
22291           - Fixed wrong values
22292
22293 2004-09-22 12:01  jackson
22294
22295         * Control.cs: Text is never null
22296
22297 2004-09-20 22:14  pbartok
22298
22299         * XplatUIWin32.cs:
22300           - Fixed accessibility level for Idle handler
22301
22302 2004-09-20 18:54  jackson
22303
22304         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22305           XplatUIX11.cs: New message loop that uses poll so we don't get a
22306           busy loop
22307
22308 2004-09-17 10:43  pbartok
22309
22310         * ScrollBar.cs:
22311           - Fixed behaviour of arrow buttons. Now properly behaves like
22312             Buttons (and like Microsoft's scrollbar arrow buttons)
22313
22314 2004-09-17 10:14  pbartok
22315
22316         * ScrollBar.cs:
22317           - Added missing release of keyboard/mouse capture
22318
22319 2004-09-17 06:18  jordi
22320
22321         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
22322           Theme.cs: Very early menu support
22323
22324 2004-09-16 17:45  pbartok
22325
22326         * XplatUIWin32.cs:
22327           - Fixed sending a window to the front
22328           - Added overload for SetWindowPos to avoid casting
22329
22330 2004-09-16 17:44  pbartok
22331
22332         * Control.cs:
22333           - Added SendToBack and BringToFront methods
22334
22335 2004-09-16 07:00  ravindra
22336
22337         * Copyright: Added Novell URL.
22338
22339 2004-09-16 07:00  ravindra
22340
22341         * ToolBar.cs: Invalidate should be done before redrawing.
22342
22343 2004-09-15 21:19  ravindra
22344
22345         * ColumnHeaderStyle.cs: Enum for ListView Control.
22346
22347 2004-09-15 21:18  ravindra
22348
22349         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
22350           ListView Control.
22351
22352 2004-09-13 18:26  jackson
22353
22354         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
22355           properly
22356
22357 2004-09-13 18:13  jackson
22358
22359         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
22360           a second thread and post messages into the main threads message
22361           queue. This makes timing much more consistent. Both win2K and XP
22362           have a minimum timer value of 15 milliseconds, so we now do this
22363           too.
22364
22365 2004-09-13 15:18  pbartok
22366
22367         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22368           XplatUIX11.cs:
22369           - Added Z-Ordering methods
22370
22371 2004-09-13 10:56  pbartok
22372
22373         * Form.cs:
22374           - Fixed #region names
22375           - Moved properties and methods into their proper #regions
22376
22377 2004-09-13 10:51  pbartok
22378
22379         * Form.cs:
22380           - Added Accept and CancelButton properties
22381           - Added ProcessDialogKey() method
22382
22383 2004-09-13 08:18  pbartok
22384
22385         * IWindowTarget.cs:
22386           - Initial check-in
22387
22388 2004-09-10 21:50  pbartok
22389
22390         * Control.cs:
22391           - Added DoDragDrop() [incomplete]
22392           - Properly implemented 'Visible' handling
22393           - Added SetVisibleCore()
22394           - Implemented FindChildAtPoint()
22395           - Implemented GetContainerControl()
22396           - Implemented Hide()
22397
22398 2004-09-10 19:28  pbartok
22399
22400         * Control.cs:
22401           - Moved methods into their appropriate #regions
22402           - Reordered methods within regions alphabetically
22403
22404 2004-09-10 18:57  pbartok
22405
22406         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22407           - Added method to retrieve text from window
22408
22409 2004-09-10 18:56  pbartok
22410
22411         * Control.cs:
22412           - Moved some internal functions into the internal region
22413           - Implemented FontHeight
22414           - Implemented RenderRightToLeft
22415           - Implemented ResizeRedraw
22416           - Implemented ShowFocusCues
22417           - Implemented ShowKeyboardCues
22418           - Implemented FromChildHandle
22419           - Implemented FromHandle
22420           - Implemented IsMnemonic
22421           - Implemented ReflectMessage
22422           - All public and protected Static Methods are now complete
22423
22424 2004-09-10 16:54  pbartok
22425
22426         * Control.cs:
22427           - Implemented remaining missing public instance properties
22428           - Alphabetized some out of order properties
22429
22430 2004-09-10 05:51  ravindra
22431
22432         * PictureBox.cs: Added a check for null image.
22433
22434 2004-09-10 00:59  jordi
22435
22436         * GroupBox.cs: remove cvs tag
22437
22438 2004-09-09 05:25  ravindra
22439
22440         * ToolBar.cs: Make redraw accessible from ToolBarButton.
22441
22442 2004-09-09 05:23  ravindra
22443
22444         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
22445           parent redraw.
22446
22447 2004-09-09 02:28  pbartok
22448
22449         * ThemeWin32Classic.cs:
22450           - Improve disabled string look
22451
22452 2004-09-09 01:15  jordi
22453
22454         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
22455           args and handler
22456
22457 2004-09-08 23:56  ravindra
22458
22459         * ItemBoundsPortion.cs: It's enum, not a class!
22460
22461 2004-09-08 23:47  ravindra
22462
22463         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
22464           Enums for Form.
22465
22466 2004-09-08 21:13  ravindra
22467
22468         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
22469           ListView control.
22470
22471 2004-09-08 21:03  ravindra
22472
22473         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
22474           avoid crash.
22475
22476 2004-09-08 21:01  ravindra
22477
22478         * ScrollableControl.cs: Removed unreachable code.
22479
22480 2004-09-08 06:45  jordi
22481
22482         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
22483
22484 2004-09-08 01:00  jackson
22485
22486         * XplatUIX11.cs: Only run the timers when updating the message
22487           queue. This effectively gives X messages a higher priority then
22488           timer messages. Timers still need love though
22489
22490 2004-09-07 14:01  jackson
22491
22492         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
22493           this for us and the handle is no longer valid.
22494
22495 2004-09-07 13:59  jackson
22496
22497         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
22498           loop that manages to not crash. TODO: Add poll and cleanup timers
22499
22500 2004-09-07 11:12  jordi
22501
22502         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
22503
22504 2004-09-07 03:40  jordi
22505
22506         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
22507           fixes, methods, multiple links
22508
22509 2004-09-06 06:55  jordi
22510
22511         * Control.cs: Caches ClientRectangle rectangle value
22512
22513 2004-09-05 02:03  jordi
22514
22515         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
22516           certain situations
22517
22518 2004-09-04 11:10  jordi
22519
22520         * Label.cs: Refresh when font changed
22521
22522 2004-09-02 16:24  pbartok
22523
22524         * Control.cs:
22525           - Added sanity check to creation of double buffer bitmap
22526
22527 2004-09-02 16:24  pbartok
22528
22529         * ButtonBase.cs:
22530           - Fixed selection of text color
22531           - Fixed handling of resize event; now properly recreates double
22532             buffering bitmap
22533           - Added missing assignment of TextAlignment
22534           - Added proper default for TextAlignment
22535
22536 2004-09-02 14:26  pbartok
22537
22538         * RadioButton.cs:
22539           - Added missing RadioButton.RadioButtonAccessibleObject class
22540
22541 2004-09-02 14:26  pbartok
22542
22543         * Control.cs:
22544           - Added missing Control.ControlAccessibleObject class
22545           - Started to implement Select()ion mechanisms, still very incomplete
22546
22547 2004-09-02 14:25  pbartok
22548
22549         * AccessibleObject.cs:
22550           - Added missing methods
22551
22552 2004-09-02 14:23  pbartok
22553
22554         * AccessibleNavigation.cs, AccessibleSelection.cs:
22555           - Initial check-in
22556
22557 2004-09-02 10:32  jordi
22558
22559         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
22560           pool for pens, brushes, and hatchbruses
22561
22562 2004-09-01 15:30  jackson
22563
22564         * StatusBar.cs: Fix typo
22565
22566 2004-09-01 14:44  pbartok
22567
22568         * RadioButton.cs:
22569           - Fixed state
22570
22571 2004-09-01 14:39  pbartok
22572
22573         * Button.cs, RadioButton.cs:
22574           - Functional initial check-in
22575
22576 2004-09-01 14:01  pbartok
22577
22578         * CheckBox.cs:
22579           - Added missing default
22580           - Added missing region mark
22581
22582 2004-09-01 09:10  jordi
22583
22584         * Label.cs: fixes method signatures, new methods, events, fixes
22585           autosize
22586
22587 2004-09-01 07:19  jordi
22588
22589         * Control.cs: Init string variables with an empty object
22590
22591 2004-09-01 04:20  jordi
22592
22593         * Control.cs: fires OnFontChanged event
22594
22595 2004-08-31 20:07  pbartok
22596
22597         * ButtonBase.cs:
22598           - Enabled display of strings
22599
22600 2004-08-31 20:05  pbartok
22601
22602         * Form.cs:
22603           - Added (partial) implementation of DialogResult; rest needs to be
22604             implemented when the modal loop code is done
22605
22606 2004-08-31 19:55  pbartok
22607
22608         * CheckBox.cs:
22609           - Fixed to match the removal of the needs_redraw concept
22610
22611 2004-08-31 19:55  pbartok
22612
22613         * ButtonBase.cs:
22614           - Removed the rather odd split between 'needs redraw' and redrawing
22615           - Now handles the events that require regeneration (ambient
22616             properties and size)
22617
22618 2004-08-31 19:41  pbartok
22619
22620         * Control.cs:
22621           - Added firing of BackColorChanged event
22622           - Added TopLevelControl property
22623           - Fixed handling of WM_ERASEBKGRND message
22624
22625 2004-08-31 12:49  pbartok
22626
22627         * ButtonBase.cs:
22628           - Removed debug
22629           - Minor fixes
22630
22631 2004-08-31 12:48  pbartok
22632
22633         * CheckBox.cs:
22634           - Finished (famous last words)
22635
22636 2004-08-31 04:35  jordi
22637
22638         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
22639           scrolling bugs, adds new methods
22640
22641 2004-08-30 14:42  pbartok
22642
22643         * CheckBox.cs:
22644           - Implemented CheckBox drawing code
22645
22646 2004-08-30 14:42  pbartok
22647
22648         * ButtonBase.cs:
22649           - Made Redraw() and CheckRedraw() virtual
22650           - Improved mouse up/down/move logic to properly track buttons
22651
22652 2004-08-30 09:44  pbartok
22653
22654         * CheckBox.cs:
22655           - Updated to fix broken build. Not complete yet.
22656
22657 2004-08-30 09:28  pbartok
22658
22659         * CheckState.cs:
22660           - Initial checkin
22661
22662 2004-08-30 09:17  pbartok
22663
22664         * Appearance.cs:
22665           - Initial check-in
22666
22667 2004-08-27 16:12  ravindra
22668
22669         * ToolBarButton.cs: Added TypeConverter attribute.
22670
22671 2004-08-27 16:07  ravindra
22672
22673         * ImageIndexConverter.cs: Implemented.
22674
22675 2004-08-27 14:17  pbartok
22676
22677         * Control.cs:
22678           - Removed unneeded stack vars
22679           - First attempt to fix sizing issues when layout is suspended
22680
22681 2004-08-25 15:35  jordi
22682
22683         * ScrollBar.cs: more fixes to scrollbar
22684
22685 2004-08-25 14:04  ravindra
22686
22687         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
22688           Added the missing divider code and grip for ToolBar Control.
22689
22690 2004-08-25 13:20  pbartok
22691
22692         * Control.cs:
22693           - Control now properly passes the ambient background color to child
22694             controls
22695
22696 2004-08-25 13:20  jordi
22697
22698         * ScrollBar.cs: small bug fix regarding bar position
22699
22700 2004-08-25 12:33  pbartok
22701
22702         * Timer.cs:
22703           - Now only calls SetTimer or KillTimer if the enabled state has
22704           changed
22705
22706 2004-08-25 12:33  pbartok
22707
22708         * XplatUIWin32.cs:
22709           - Fixed timer handling, now seems to work
22710           - Improved error message for window creation
22711
22712 2004-08-25 12:32  pbartok
22713
22714         * Control.cs:
22715           - Fixed generation of MouseUp message
22716
22717 2004-08-25 12:29  jordi
22718
22719         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
22720           and fixes for progressbar
22721
22722 2004-08-24 18:43  ravindra
22723
22724         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
22725           in ToolBar control.
22726
22727 2004-08-24 17:15  pbartok
22728
22729         * Panel.cs:
22730           - Added #region
22731           - Added missing events
22732           - Alphabetized
22733
22734 2004-08-24 17:14  pbartok
22735
22736         * StatusBar.cs, PictureBox.cs:
22737           - Now uses Control's CreateParams
22738
22739 2004-08-24 16:36  pbartok
22740
22741         * XplatUIX11.cs:
22742           - Fixed background color handling
22743           - Fixed sending of enter/leave events on a grab
22744
22745 2004-08-24 16:35  pbartok
22746
22747         * X11Structs.cs:
22748           - Refined definitions for CrossingEvent
22749
22750 2004-08-24 12:37  jordi
22751
22752         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
22753           formmating, methods signature, and adds missing events
22754
22755 2004-08-24 12:24  jordi
22756
22757         * Control.cs: fire OnEnabledChanged event
22758
22759 2004-08-24 11:17  pbartok
22760
22761         * XplatUIWin32.cs:
22762           - Implemented SetTimer() and KillTimer()
22763
22764 2004-08-24 11:16  pbartok
22765
22766         * XplatUIX11.cs:
22767           - Now uses Remove instead of Add to kill the timer
22768
22769 2004-08-24 10:16  jackson
22770
22771         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
22772           picture boxes in the theme now. Draw picture box borders and obey
22773           sizing modes
22774
22775 2004-08-24 05:49  jackson
22776
22777         * Timer.cs: Remove top secret debugging code
22778
22779 2004-08-24 05:34  jackson
22780
22781         * PictureBox.cs: Temp hack to make picture boxes draw their full
22782           image
22783
22784 2004-08-24 05:29  jackson
22785
22786         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22787           XplatUIX11.cs: Move timers to the driver level. On X they are
22788           queued by the driver and checked on idle.
22789
22790 2004-08-24 01:07  jackson
22791
22792         * XplatUIX11.cs: Use a queue for async messages instead of passing
22793           them as ClientMessages since that was totally broken. Also simply
22794           check for events and return an idle message if none are found. This
22795           gives us an idle handler, and prevents deadlocking when no messages
22796           are in the queue.
22797
22798 2004-08-23 18:19  ravindra
22799
22800         * XplatUIWin32.cs: Removed the unwanted destructor.
22801
22802 2004-08-23 17:27  pbartok
22803
22804         * ButtonBase.cs:
22805           - Finishing touches. Works now, just needs some optimizations.
22806
22807 2004-08-23 16:53  jordi
22808
22809         * ScrollBar.cs: small fix
22810
22811 2004-08-23 16:45  pbartok
22812
22813         * Application.cs:
22814           - Removed debug output
22815           - Simplifications
22816
22817 2004-08-23 16:43  jordi
22818
22819         * ScrollBar.cs: [no log message]
22820
22821 2004-08-23 16:10  pbartok
22822
22823         * Form.cs:
22824           - Fixed handling of WM_CLOSE message
22825           - Removed debug output
22826
22827 2004-08-23 16:09  pbartok
22828
22829         * Application.cs:
22830           - Added handling of Idle event
22831           - Added handling of form closing
22832           - Fixed reporting of MessageLoop property
22833           - Removed some unneeded code, should provide a bit of a speedup
22834
22835 2004-08-23 15:22  pbartok
22836
22837         * Control.cs:
22838           - Added InitLayout() method
22839           - Added code to properly perform layout when Anchor or Dock property
22840             is changed
22841           - Changed 'interpretation' of ResumeLayout. MS seems to have a
22842             LAMESPEC, tried to do it in a way that makes sense
22843
22844 2004-08-23 14:10  jordi
22845
22846         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
22847           properties and methods
22848
22849 2004-08-23 13:55  pbartok
22850
22851         * Control.cs:
22852           - Properly fixed Jordi's last fix
22853           - Now uses Cursor's Position property instead of calling XplatUI
22854           directly
22855
22856 2004-08-23 13:44  jordi
22857
22858         * PaintEventHandler.cs: Adding missing attribute
22859
22860 2004-08-23 13:39  pbartok
22861
22862         * Cursor.cs:
22863           - Implemented Position property
22864
22865 2004-08-23 13:39  pbartok
22866
22867         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
22868           - Added method to move mouse cursor
22869
22870 2004-08-23 13:39  pbartok
22871
22872         * XplatUIX11.cs:
22873           - Fixed setting of background color
22874           - Added method to move mouse cursor
22875
22876 2004-08-23 13:16  jordi
22877
22878         * Control.cs: avoids null exception
22879
22880 2004-08-22 17:46  jackson
22881
22882         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
22883           PictureBox
22884
22885 2004-08-22 17:40  jackson
22886
22887         * XplatUIX11.cs: Add some missing locks
22888
22889 2004-08-22 15:10  pbartok
22890
22891         * Control.cs, Form.cs:
22892           - Removed OverlappedWindow style from Control, instead it's default
22893             now is child
22894           - Made form windows OverlappedWindow by default
22895
22896 2004-08-22 13:34  jackson
22897
22898         * ScrollBar.cs: Update the position through the Value property so
22899           the OnValueChanged event is raised.
22900
22901 2004-08-22 12:04  pbartok
22902
22903         * SWF.csproj:
22904           - Added Cursor.cs and UserControl.cs
22905
22906 2004-08-22 12:03  pbartok
22907
22908         * Cursor.cs:
22909           - Started implementation, not usable yet
22910
22911 2004-08-22 12:00  pbartok
22912
22913         * UserControl.cs:
22914           - Implemented UserControl (complete)
22915
22916 2004-08-21 19:20  ravindra
22917
22918         * ToolBar.cs: Correcting the formatting mess of VS.NET.
22919
22920 2004-08-21 18:49  ravindra
22921
22922         * ToolBar.cs: Probably this completes the missing attributes in
22923           toolbar control.
22924
22925 2004-08-21 18:03  ravindra
22926
22927         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
22928           Fixed toolbar control signatures.
22929
22930 2004-08-21 16:32  pbartok
22931
22932         * LinkLabel.cs:
22933           - Signature Fixes
22934
22935 2004-08-21 16:30  pbartok
22936
22937         * Label.cs:
22938           - Signature fixes
22939
22940 2004-08-21 16:19  pbartok
22941
22942         * Control.cs, Label.cs:
22943           - Signature fixes
22944
22945 2004-08-21 15:57  pbartok
22946
22947         * ButtonBase.cs:
22948           - Added loads of debug output for development
22949           - Fixed typo in method name
22950
22951 2004-08-21 15:52  pbartok
22952
22953         * ToolBarButtonClickEventArgs.cs:
22954           - Added missing base class
22955
22956 2004-08-21 14:53  pbartok
22957
22958         * Control.cs:
22959           - Updated to match new GrabWindow signature
22960
22961 2004-08-21 14:51  pbartok
22962
22963         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22964           - Added method to get default display size
22965
22966 2004-08-21 14:23  pbartok
22967
22968         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
22969           - Added method to query current grab state
22970           - Added argument to allow confining a grab to a window
22971
22972 2004-08-21 14:22  pbartok
22973
22974         * Keys.cs:
22975           - Added [Flags] attribute so that modifiers can be used in bitwise
22976           ops
22977
22978 2004-08-21 14:21  pbartok
22979
22980         * TrackBar.cs, ScrollBar.cs:
22981           - Replaced direct XplatUI calls with their Control counterpart
22982
22983 2004-08-21 13:32  pbartok
22984
22985         * Control.cs:
22986           - Implemented Created property
22987
22988 2004-08-21 13:28  pbartok
22989
22990         * Control.cs:
22991           - Implemented ContainsFocus
22992
22993 2004-08-21 13:26  pbartok
22994
22995         * Control.cs:
22996           - Implemented CausesValidation
22997
22998 2004-08-21 13:21  pbartok
22999
23000         * Control.cs:
23001           - Implemented CanFocus
23002           - Implemented CanSelect
23003           - Implemented Capture
23004
23005 2004-08-21 12:35  pbartok
23006
23007         * XplatUIWin32.cs:
23008           - Fixed bug with Async message handling
23009           - Implemented getting the ModifierKeys
23010
23011 2004-08-21 12:32  jackson
23012
23013         * AsyncMethodResult.cs: Make sure we have the mutex before we
23014           release it. Fixes BeginInvoke on windows
23015
23016 2004-08-21 11:31  pbartok
23017
23018         * XplatUIWin32.cs, XplatUIX11.cs:
23019           - Drivers now return proper mouse state
23020
23021 2004-08-21 10:54  jackson
23022
23023         * Control.cs: Implement EndInvoke
23024
23025 2004-08-21 10:48  jackson
23026
23027         * Timer.cs: Remove unneeded finalizer
23028
23029 2004-08-20 19:52  ravindra
23030
23031         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
23032           in mouse event handling in the ToolBar control.
23033
23034 2004-08-20 19:50  ravindra
23035
23036         * ImageList.cs: Changed draw method to use the arguments passed in
23037           to draw the image.
23038
23039 2004-08-20 18:58  pbartok
23040
23041         * XplatUIStructs.cs:
23042           - Added private message for async communication
23043
23044 2004-08-20 17:38  ravindra
23045
23046         * Control.cs: Made RightToLeft property virtual and removed a
23047           Console.WriteLine.
23048
23049 2004-08-20 14:39  jordi
23050
23051         * ThemeGtk.cs: use style_attach
23052
23053 2004-08-20 14:39  pbartok
23054
23055         * XplatUIWin32.cs:
23056           - Added jackson's Async code from X11 to Win32
23057
23058 2004-08-20 14:09  pbartok
23059
23060         * SWF.csproj:
23061           - Added all new files
23062
23063 2004-08-20 14:09  pbartok
23064
23065         * Control.cs:
23066           - Added call to set window background color
23067
23068 2004-08-20 14:03  pbartok
23069
23070         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23071           - Added method for setting the window background
23072
23073 2004-08-20 14:02  pbartok
23074
23075         * XplatUIWin32.cs:
23076           - Added method for setting the background color
23077           - Added handling for erasing the window background
23078
23079 2004-08-20 13:45  jordi
23080
23081         * TrackBar.cs: fixes timer, new properties and methods
23082
23083 2004-08-20 13:34  jackson
23084
23085         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
23086           correct thread
23087
23088 2004-08-20 13:22  jackson
23089
23090         * Timer.cs: Timer Tick events are now handed through Controls Async
23091           mechanism so the callbacks are executed in the same thread as X
23092
23093 2004-08-20 13:19  jackson
23094
23095         * XplatUIDriver.cs: Expose functionality to send async messages
23096           through the driver
23097
23098 2004-08-20 13:18  jackson
23099
23100         * Control.cs: Implement Begininvoke
23101
23102 2004-08-20 13:14  jackson
23103
23104         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
23105           messages through the driver
23106
23107 2004-08-20 13:12  jackson
23108
23109         * XplatUIX11.cs: Lock before all X operations. Also added Async
23110           method functionality through XSendEvent
23111
23112 2004-08-20 13:11  jackson
23113
23114         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
23115           This will screw up on 64 bit systems)
23116
23117 2004-08-20 13:10  jackson
23118
23119         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
23120           Async messages through X/Win32
23121
23122 2004-08-19 19:39  pbartok
23123
23124         * XplatUIX11.cs:
23125           - Updated code to match new HandleData.DeviceContext type
23126
23127 2004-08-19 19:38  pbartok
23128
23129         * HandleData.cs:
23130           - Made DeviceContext a generic object to allow usage from various
23131           drivers
23132           - Added support for queueing Windows messages
23133
23134 2004-08-19 19:37  pbartok
23135
23136         * XplatUIWin32.cs:
23137           - Added generation of MouseEnter, MouseLeave and MouseHover events
23138           - Added cleanup on EndPaint
23139
23140 2004-08-19 19:17  pbartok
23141
23142         * Control.cs:
23143           - Added handling of WM_MOUSEHOVER
23144           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
23145           code
23146
23147 2004-08-19 18:55  jordi
23148
23149         * ThemeGtk.cs: fixes button order
23150
23151 2004-08-19 18:12  jordi
23152
23153         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
23154
23155 2004-08-19 17:09  pbartok
23156
23157         * Control.cs:
23158           - Added Right property
23159           - Added RightToLeft property
23160
23161 2004-08-19 16:27  jordi
23162
23163         * ThemeGtk.cs: experimental GTK theme support
23164
23165 2004-08-19 16:26  jordi
23166
23167         * ITheme.cs, Theme.cs: move themes from an interface to a class
23168
23169 2004-08-19 16:25  jordi
23170
23171         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
23172           theme enhancaments
23173
23174 2004-08-19 16:04  pbartok
23175
23176         * XplatUIX11.cs:
23177           - Added colormap basics
23178           - Added a way to re-initialize with a different display handle
23179           - Fixed setting of the window background color
23180           - Added various X11 imports related to colors and colormaps
23181
23182 2004-08-19 15:51  pbartok
23183
23184         * X11Structs.cs:
23185           - Removed packing hints (Paolo suggested this a while back)
23186           - fixed colormap type
23187           - Added default Atom types
23188           - Added Screen and color structs and enums
23189
23190 2004-08-19 15:39  pbartok
23191
23192         * ImageList.cs:
23193           - Added missing Draw() method
23194           - Added missing RecreateHandle event
23195
23196 2004-08-19 15:30  pbartok
23197
23198         * Form.cs:
23199           - Added handling of WM_CLOSE
23200
23201 2004-08-18 13:16  jordi
23202
23203         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
23204           a table
23205
23206 2004-08-18 09:56  jordi
23207
23208         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
23209
23210 2004-08-17 15:31  ravindra
23211
23212         * SWF.csproj: Updated project.
23213
23214 2004-08-17 15:25  pbartok
23215
23216         * Control.cs:
23217           - Drawing improvement; don't call UpdateBounds if we are not visible
23218             (or have been minimized)
23219
23220 2004-08-17 15:24  pbartok
23221
23222         * XplatUIWin32.cs:
23223           - Finished IsVisible
23224           - Added Win32GetWindowPlacement
23225
23226 2004-08-17 15:08  jackson
23227
23228         * Panel.cs: Initial checkin of the Panel
23229
23230 2004-08-17 14:25  pbartok
23231
23232         * Control.cs:
23233           - Fixed broken handling of default window sizes
23234
23235 2004-08-17 13:29  jackson
23236
23237         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
23238           has a large startup time.
23239
23240 2004-08-17 10:25  jackson
23241
23242         * HandleData.cs: union areas properly
23243
23244 2004-08-17 10:12  jackson
23245
23246         * HandleData.cs: union areas properly
23247
23248 2004-08-16 20:00  ravindra
23249
23250         * ToolBar.cs, ToolBarButton.cs: Added attributes.
23251
23252 2004-08-16 18:48  ravindra
23253
23254         * ToolBar.cs: Added attributes.
23255
23256 2004-08-16 17:17  ravindra
23257
23258         * SWF.csproj: Updated project.
23259
23260 2004-08-16 17:16  jackson
23261
23262         * XplatUIX11.cs: Check for more expose events before sending a
23263           WM_PAINT so they can all be grouped together. This makes dragging a
23264           window across another window redraw in a sane way.
23265
23266 2004-08-16 15:47  pbartok
23267
23268         * Control.cs:
23269           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
23270             support OnMouseEnter/Leave()
23271           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
23272             exposure handling
23273
23274 2004-08-16 15:46  pbartok
23275
23276         * XplatUIStructs.cs, XplatUIX11.cs:
23277           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
23278           OnMouseEnter/Leave()
23279
23280 2004-08-16 15:34  jackson
23281
23282         * XplatUIX11.cs: Group multiple expose events in HandleData, make
23283           sure messages get the message field set to WM_NULL if they are not
23284           handled.
23285
23286 2004-08-16 15:24  jackson
23287
23288         * HandleData.cs: HandleData is used for storing message information
23289           for window handles
23290
23291 2004-08-15 17:23  ravindra
23292
23293         * ColorDepth.cs: Added attribute.
23294
23295 2004-08-15 17:23  ravindra
23296
23297         * SWF.csproj: Updated project for ToolBar Control.
23298
23299 2004-08-15 17:20  ravindra
23300
23301         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
23302           control and also dos2unix format.
23303
23304 2004-08-15 17:13  ravindra
23305
23306         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
23307           ToolBarButtonClickEventArgs.cs,
23308           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
23309           ToolBarTextAlign.cs: First Implementation of ToolBar control.
23310
23311 2004-08-15 15:31  pbartok
23312
23313         * ButtonBase.cs:
23314           - First (mostly) working version
23315
23316 2004-08-13 16:15  pbartok
23317
23318         * Control.cs:
23319           - Fixed Anchor default
23320
23321 2004-08-13 15:43  pbartok
23322
23323         * Control.cs:
23324           - Changed GetCursorPos signature
23325
23326 2004-08-13 15:42  pbartok
23327
23328         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
23329           - Changed signature for GetCursorPos
23330
23331 2004-08-13 15:25  pbartok
23332
23333         * XplatUIX11.cs:
23334           - Cleanup
23335           - Fixed resizing/exposure handling
23336
23337 2004-08-13 15:22  jordi
23338
23339         * ThemeWin32Classic.cs: removes redundant code and fixes issues
23340           with tickposition
23341
23342 2004-08-13 14:55  jordi
23343
23344         * TrackBar.cs: change from wndproc to events
23345
23346 2004-08-13 13:00  jordi
23347
23348         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23349           XplatUIX11.cs: implements PointToClient (ScreenToClient)
23350
23351 2004-08-13 12:53  pbartok
23352
23353         * XplatUIWin32.cs:
23354           - Changed GetWindowPos to also provide client area size
23355           - Fixed broken prototypes for several win32 functions
23356
23357 2004-08-13 12:53  pbartok
23358
23359         * XplatUI.cs, XplatUIDriver.cs:
23360           - Changed GetWindowPos to also provide client area size
23361
23362 2004-08-13 12:52  pbartok
23363
23364         * XplatUIX11.cs:
23365           - Added generation of WM_POSCHANGED
23366           - Changed GetWindowPos to also provide client area size
23367
23368 2004-08-13 12:52  pbartok
23369
23370         * Control.cs:
23371           - Added Dispose() and destructor
23372           - Fixed resizing and bounds calculation
23373           - Fixed Layout
23374           - Added memory savings for invisible windows
23375
23376 2004-08-13 12:46  jordi
23377
23378         * TrackBar.cs: adds timer and grap window
23379
23380 2004-08-13 10:25  jackson
23381
23382         * Timer.cs: SWF Timer
23383
23384 2004-08-12 16:59  pbartok
23385
23386         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23387           - Implemented method to get current mouse position
23388
23389 2004-08-12 14:29  jordi
23390
23391         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
23392           enhancement, fix mouse problems, highli thumb, etc
23393
23394 2004-08-12 13:31  pbartok
23395
23396         * Control.cs:
23397           - Fixed Anchoring bugs
23398
23399 2004-08-12 13:01  jackson
23400
23401         * StatusBar.cs: Don't forget things
23402
23403 2004-08-12 12:54  jackson
23404
23405         * ThemeWin32Classic.cs: Handle owner draw status bars
23406
23407 2004-08-12 12:54  jackson
23408
23409         * StatusBar.cs: Implement missing properties, events, and methods.
23410           Handle mouse clicking
23411
23412 2004-08-12 10:19  jackson
23413
23414         * StatusBarPanelClickEventArgs.cs,
23415           StatusBarPanelClickEventHandler.cs: Classes for handling status
23416           bar panel click events
23417
23418 2004-08-12 10:10  jackson
23419
23420         * Control.cs: Add missing properties
23421
23422 2004-08-12 09:46  pbartok
23423
23424         * BindingsManagerBase.cs:
23425           - Name changed to BindingManagerBase.cs
23426
23427 2004-08-12 09:25  jordi
23428
23429         * ScrollableControl.cs: calls ctrlbase instead of exeception
23430
23431 2004-08-11 16:28  pbartok
23432
23433         * InputLanguageChangingEventArgs.cs:
23434           - Never check in before compiling. Fixes the last check-in
23435
23436 2004-08-11 16:26  pbartok
23437
23438         * InputLanguageChangingEventArgs.cs:
23439           - More signature fixes
23440
23441 2004-08-11 16:20  pbartok
23442
23443         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
23444           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
23445           ImageListStreamer.cs, InputLanguage.cs,
23446           InputLanguageChangedEventArgs.cs,
23447           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
23448           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
23449           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
23450           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23451           - Signature fixes
23452
23453 2004-08-11 16:16  pbartok
23454
23455         * Application.cs:
23456           - Fixed Signature
23457           - Added .Net 1.1 method
23458
23459 2004-08-11 15:25  pbartok
23460
23461         * SWF.csproj:
23462           - Fixed BindingManagerBase.cs filename
23463
23464 2004-08-11 15:22  pbartok
23465
23466         * BindingManagerBase.cs:
23467           - Was checked in with wrong filename
23468
23469 2004-08-11 14:50  pbartok
23470
23471         * SWF.csproj:
23472           - Updated
23473
23474 2004-08-11 13:41  jordi
23475
23476         * XplatUIWin32.cs: Fixes ClientRect
23477
23478 2004-08-11 13:19  pbartok
23479
23480         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23481           XplatUIX11.cs:
23482           - We had SetWindowPos and MoveWindow to set window positions and
23483             size, removed MoveWindow. We have GetWindowPos, so it made sense to
23484             keep SetWindowPos as matching counterpart
23485           - Added some X11 sanity checking
23486
23487 2004-08-11 12:59  pbartok
23488
23489         * Control.cs:
23490           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
23491             (It seems that SetBounds is just a front for SetBoundsCore and
23492              SetBoundsCore updates the underlying window system and
23493              UpdateBounds is responsible for updating the variables associated
23494              with the Control and sending the events)
23495           - Major cleanup of Size handling; we now have two sizes, client_size
23496             and bounds. Bounds defines the window with decorations, client_size
23497             without them.
23498
23499 2004-08-11 12:55  pbartok
23500
23501         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23502           - Added method to calculate difference between decorated window and
23503             raw client area
23504
23505 2004-08-11 12:54  pbartok
23506
23507         * Label.cs:
23508           - Forcing redraw on resize
23509
23510 2004-08-11 11:43  pbartok
23511
23512         * ImageList.cs:
23513           - Removed disposing of the actual images when the list is disposed
23514
23515 2004-08-11 09:13  pbartok
23516
23517         * Control.cs:
23518           - Now properly reparents windows
23519
23520 2004-08-11 08:37  pbartok
23521
23522         * Control.cs:
23523           - Duh!
23524
23525 2004-08-11 07:47  pbartok
23526
23527         * Control.cs:
23528           - Rewrote the collection stuff. Might not be as fast now, not
23529             keeping the number of children around and accessible directly, but
23530             it's more straightforward
23531
23532 2004-08-11 07:44  pbartok
23533
23534         * AccessibleObject.cs:
23535           - Fixed to match ControlCollection rewrite
23536
23537 2004-08-11 07:43  pbartok
23538
23539         * ImageList.cs:
23540           - Added missing creation of the collection list
23541
23542 2004-08-10 20:08  jackson
23543
23544         * StatusBar.cs: Get the paint message from WndProc
23545
23546 2004-08-10 19:31  jackson
23547
23548         * ThemeWin32Classic.cs: Create Brushes as little as possible
23549
23550 2004-08-10 19:20  jackson
23551
23552         * UICues.cs: Add Flags attribute
23553
23554 2004-08-10 19:19  jackson
23555
23556         * StatusBarPanel.cs: Signature cleanup
23557
23558 2004-08-10 19:10  jackson
23559
23560         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
23561           Initial implementation of status bar item drawing
23562
23563 2004-08-10 17:27  jordi
23564
23565         * TrackBar.cs: add missing methods, properties, and restructure to
23566           hide extra ones
23567
23568 2004-08-10 16:24  jackson
23569
23570         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
23571           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
23572           attribute
23573
23574 2004-08-10 13:21  jordi
23575
23576         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
23577           enhancements and standarize on win colors defaults
23578
23579 2004-08-10 12:52  jackson
23580
23581         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
23582           ThemeWin32Classic.cs: Implement DrawItem functionality
23583
23584 2004-08-10 12:47  jordi
23585
23586         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
23587
23588 2004-08-10 12:32  jordi
23589
23590         * Control.cs: throw ontextchange event
23591
23592 2004-08-10 11:43  pbartok
23593
23594         * Control.cs:
23595           - Added more to the still unfinished Dock/Anchor layout code
23596
23597 2004-08-10 11:39  pbartok
23598
23599         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
23600           - Added GetWindowPos method
23601
23602 2004-08-10 11:36  pbartok
23603
23604         * XplatUIWin32.cs:
23605           - Implemented several methods
23606
23607 2004-08-10 09:47  jackson
23608
23609         * TrackBar.cs: Allow control to handle buffering
23610
23611 2004-08-10 09:41  jackson
23612
23613         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
23614
23615 2004-08-10 09:24  jackson
23616
23617         * Label.cs, LinkLabel.cs: Let Control handle buffering.
23618
23619 2004-08-10 09:09  jackson
23620
23621         * StatusBar.cs: Let Control handle all the buffering.
23622
23623 2004-08-10 09:08  jackson
23624
23625         * Control.cs: Control will now handle the buffering code, so each
23626           control does not have to implement this.
23627
23628 2004-08-10 08:34  jackson
23629
23630         * XplatUIDriver.cs: Use default colors from the theme
23631
23632 2004-08-09 17:12  pbartok
23633
23634         * ImageList.cs:
23635           - Fixed several bugs Ravindra pointed out
23636
23637 2004-08-09 16:11  pbartok
23638
23639         * Control.cs:
23640           - Added incomplete dock layout code
23641           - Added support for mouse wheel
23642
23643 2004-08-09 16:09  pbartok
23644
23645         * XplatUIX11.cs:
23646           - Added handling for middle and right mousebutton
23647           - Added handling for mouse wheel
23648           - Added handling for key state and mouse state and position
23649           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
23650           messages
23651
23652 2004-08-09 15:40  jackson
23653
23654         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
23655           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
23656           checkin
23657
23658 2004-08-09 15:37  jackson
23659
23660         * StatusBar.cs: Initial implementation of StatusBar
23661
23662 2004-08-09 15:36  jackson
23663
23664         * ITheme.cs: Add support for drawing status bar and getting status
23665           bar item sizes
23666
23667 2004-08-09 15:35  pbartok
23668
23669         * MouseButtons.cs:
23670           - Fixed values
23671
23672 2004-08-09 15:34  jackson
23673
23674         * ThemeWin32Classic.cs: Add support for drawing status bar and get
23675           status bar item sizes
23676
23677 2004-08-09 15:21  jackson
23678
23679         * ThemeWin32Classic.cs: Use known colors for default control
23680           colours
23681
23682 2004-08-09 15:12  jackson
23683
23684         * ThemeWin32Classic.cs: Make the default font static, it is static
23685           in control so this doesn't change functionality and creating fonts
23686           is sloooooow.
23687
23688 2004-08-09 14:56  pbartok
23689
23690         * X11Structs.cs:
23691           - Added GrabMode enum
23692
23693 2004-08-09 14:55  pbartok
23694
23695         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23696           - Removed Run method, was only required for initial development
23697
23698 2004-08-09 14:51  pbartok
23699
23700         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
23701           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
23702           capture
23703
23704 2004-08-09 13:48  pbartok
23705
23706         * XplatUIX11.cs:
23707           - Fixed default sizing for child windows
23708
23709 2004-08-09 12:56  pbartok
23710
23711         * XplatUIX11.cs:
23712           - Added generation of WM_DESTROY message
23713           - Added handling of window manager induced shutdown
23714
23715 2004-08-09 11:31  jackson
23716
23717         * ThemeWin32Classic.cs: New names for control properties
23718
23719 2004-08-09 11:25  jackson
23720
23721         * Control.cs: Use new color names
23722
23723 2004-08-09 11:02  jackson
23724
23725         * XplatUI.cs: Get default window properties from the theme
23726
23727 2004-08-09 11:01  jackson
23728
23729         * ITheme.cs: The theme engine now controls default window
23730           properties
23731
23732 2004-08-09 11:00  jackson
23733
23734         * ThemeWin32Classic.cs: Add default window color properties
23735
23736 2004-08-09 10:17  jackson
23737
23738         * ThemeWin32Classic.cs: Use correct default back color
23739
23740 2004-08-09 10:05  jackson
23741
23742         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
23743           the theme now.
23744
23745 2004-08-09 09:56  jackson
23746
23747         * XplatUI.cs: Remove defaults, these are handled by the theme now.
23748
23749 2004-08-09 09:54  jackson
23750
23751         * Control.cs: Get default properties from the theme.
23752
23753 2004-08-09 09:53  jackson
23754
23755         * ITheme.cs: Themes now handle default control properties
23756
23757 2004-08-09 09:53  jackson
23758
23759         * ThemeWin32Classic.cs: Themes now handle default control
23760           properties so coloring will be consistent
23761
23762 2004-08-08 16:54  jordi
23763
23764         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
23765
23766 2004-08-08 15:08  jordi
23767
23768         * XplatUIX11.cs: fixes keyboard crash
23769
23770 2004-08-08 13:47  jordi
23771
23772         * Label.cs: add cvs header info
23773
23774 2004-08-08 12:09  jackson
23775
23776         * ThemeWin32Classic.cs: Add pen_buttonface
23777
23778 2004-08-08 11:52  jordi
23779
23780         * Label.cs, LinkLabel.cs: [no log message]
23781
23782 2004-08-08 11:34  jordi
23783
23784         * ThemeWin32Classic.cs: Use Windows Standard Colours
23785
23786 2004-08-07 17:32  jordi
23787
23788         * TrackBar.cs: throw exceptions of invalid enums values
23789
23790 2004-08-07 17:31  jordi
23791
23792         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
23793           draw method name
23794
23795 2004-08-07 16:56  jackson
23796
23797         * HorizontalAlignment.cs: Initial checkin
23798
23799 2004-08-07 13:16  jordi
23800
23801         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
23802           methods
23803
23804 2004-08-07 13:05  jordi
23805
23806         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
23807           GetSysColor defines
23808
23809 2004-08-06 18:01  pbartok
23810
23811         * ThemeWin32Classic.cs:
23812           - Fixed some rounding issues with float/int
23813
23814 2004-08-06 18:00  jackson
23815
23816         * DockStyle.cs, AnchorStyles.cs:
23817
23818                   Add flags and serializable attributes.
23819
23820 2004-08-06 17:46  pbartok
23821
23822         * XplatUIX11.cs:
23823           - Implemented GetParent
23824
23825 2004-08-06 17:18  pbartok
23826
23827         * TrackBar.cs:
23828           - Fixed some rounding issues with float/int
23829
23830 2004-08-06 17:17  pbartok
23831
23832         * X11Structs.cs, XplatUIX11.cs:
23833           - Fixed Refresh and Invalidate
23834
23835 2004-08-06 15:30  pbartok
23836
23837         * Control.cs, X11Structs.cs, XplatUIX11.cs:
23838           - Fixed recursive loop when resizing
23839           - Improved/fixed redrawing on expose messages
23840
23841 2004-08-06 09:53  jordi
23842
23843         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
23844           keyboard navigation
23845
23846 2004-08-06 08:02  pbartok
23847
23848         * X11Structs.cs, XplatUIX11.cs:
23849           - Fixed reparenting
23850           - Fixed window border creation
23851
23852 2004-08-05 15:38  pbartok
23853
23854         * XplatUIX11.cs:
23855           - Attempted fix for reparenting problems
23856
23857 2004-08-04 15:14  pbartok
23858
23859         * Control.cs:
23860           - Fixed Invalidation bug (calculated wrong client area)
23861           - Added ClientSize setter
23862
23863 2004-08-04 15:13  pbartok
23864
23865         * Form.cs:
23866           - Added AutoScale properties
23867
23868 2004-08-04 15:13  pbartok
23869
23870         * SWF.csproj:
23871           - Added latest files
23872
23873 2004-08-04 14:11  pbartok
23874
23875         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
23876           XplatUIX11.cs:
23877           - Added Invalidate handling
23878
23879 2004-08-03 17:09  jordi
23880
23881         * XplatUIDriver.cs: fixes spelling mistake
23882
23883 2004-07-27 09:53  jordi
23884
23885         * TrackBar.cs: fixes trackbar events, def classname, methods
23886           signature
23887
23888 2004-07-27 09:29  jordi
23889
23890         * ScrollBar.cs: fixes scrollbar events
23891
23892 2004-07-27 04:38  jordi
23893
23894         * Control.cs: changes to be able to run winforms samples
23895
23896 2004-07-26 11:42  jordi
23897
23898         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
23899           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
23900
23901 2004-07-26 05:41  jordi
23902
23903         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
23904           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
23905           implementation
23906
23907 2004-07-22 09:22  jordi
23908
23909         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
23910           check link overlapping, implement events, and fixes
23911
23912 2004-07-21 10:28  jordi
23913
23914         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
23915
23916 2004-07-21 10:19  jordi
23917
23918         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
23919           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
23920           LinkLabelLinkClickedEventArgs.cs,
23921           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
23922           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
23923           implementation
23924
23925 2004-07-19 13:09  jordi
23926
23927         * Control.cs, Label.cs: label control re-written: added missing
23928           functionlity, events, and properties
23929
23930 2004-07-19 10:49  jordi
23931
23932         * Control.cs: fixes SetBounds logic
23933
23934 2004-07-19 01:29  jordi
23935
23936         * Control.cs: Call RefreshWindow only if the window has created
23937
23938 2004-07-15 14:05  pbartok
23939
23940         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
23941           - Implemented ImageList and ImageList.ImageCollection classes
23942           - Added ColorDepth enumeration
23943           - Updated SWF VS.Net project
23944
23945 2004-07-15 11:06  jordi
23946
23947         * XplatUIStructs.cs: added MsgButons enum
23948
23949 2004-07-15 11:03  jordi
23950
23951         * Control.cs: added basic mouse handeling events
23952
23953 2004-07-15 03:38  jordi
23954
23955         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
23956           Vertical TrackBar control implementation
23957
23958 2004-07-13 09:33  jordi
23959
23960         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
23961
23962 2004-07-13 09:31  jordi
23963
23964         * Control.cs, Form.cs: commit: new properties and fixes form size
23965           problems
23966
23967 2004-07-09 14:13  miguel
23968
23969         * ProgressBar.cs: Spelling
23970
23971 2004-07-09 11:25  pbartok
23972
23973         * ProgressBar.cs:
23974           - Removed usage of Rectangle for drawing. Miguel pointed out it's
23975           faster
23976
23977 2004-07-09 11:17  miguel
23978
23979         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23980
23981                 * ProgressBar.cs: Fixed spelling for `block'
23982
23983                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
23984                 style guidelines.
23985
23986                 Avoid using the += on rect.X, that exposed a bug in the compiler.
23987
23988 2004-07-08 23:21  pbartok
23989
23990         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
23991           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
23992           BaseCollection.cs, Binding.cs, BindingContext.cs,
23993           BindingMemberInfo.cs, BindingsCollection.cs,
23994           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
23995           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
23996           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
23997           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
23998           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
23999           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
24000           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
24001           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
24002           FrameStyle.cs, GiveFeedbackEventArgs.cs,
24003           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
24004           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
24005           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
24006           InputLanguageChangedEventArgs.cs,
24007           InputLanguageChangedEventHandler.cs,
24008           InputLanguageChangingEventArgs.cs,
24009           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
24010           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
24011           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
24012           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
24013           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
24014           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
24015           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
24016           QueryAccessibilityHelpEventArgs.cs,
24017           QueryAccessibilityHelpEventHandler.cs,
24018           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
24019           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
24020           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
24021           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
24022           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
24023           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
24024           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
24025           XplatUIX11.cs, lang.cs:
24026           - Initial check-in
24027